From 7199e08b2e4364d890429d4df60436be8f70e892 Mon Sep 17 00:00:00 2001 From: Emi Date: Fri, 6 Oct 2023 21:53:42 +0200 Subject: [PATCH 01/31] Generate psk when creating community; add psk connection protector to libp2p --- packages/backend/src/nest/common/utils.ts | 2 ++ .../connections-manager.service.ts | 17 ++++++++++++++++- .../backend/src/nest/libp2p/libp2p.service.ts | 4 ++++ .../backend/src/nest/libp2p/libp2p.types.ts | 1 + 4 files changed, 23 insertions(+), 1 deletion(-) diff --git a/packages/backend/src/nest/common/utils.ts b/packages/backend/src/nest/common/utils.ts index 23d0e875ed..a8abe34f64 100644 --- a/packages/backend/src/nest/common/utils.ts +++ b/packages/backend/src/nest/common/utils.ts @@ -13,6 +13,7 @@ import logger from './logger' import { createCertificatesTestHelper } from './client-server' import { Libp2pNodeParams } from '../libp2p/libp2p.types' import { createLibp2pAddress, createLibp2pListenAddress } from '@quiet/common' + const log = logger('test') export interface Ports { @@ -203,6 +204,7 @@ export const libp2pInstanceParams = async (): Promise => { localAddress: createLibp2pAddress('localhost', peerId.toString()), targetPort: port, peers: [remoteAddress], + psk: new Uint8Array(95), } } diff --git a/packages/backend/src/nest/connections-manager/connections-manager.service.ts b/packages/backend/src/nest/connections-manager/connections-manager.service.ts index 11aaec34df..c64a395469 100644 --- a/packages/backend/src/nest/connections-manager/connections-manager.service.ts +++ b/packages/backend/src/nest/connections-manager/connections-manager.service.ts @@ -59,6 +59,11 @@ import { StorageEvents } from '../storage/storage.types' import { LazyModuleLoader } from '@nestjs/core' import Logger from '../common/logger' import { emitError } from '../socket/socket.errors' +import crypto from 'crypto' +// import { randomBytes } from '@libp2p/crypto' +import { generateKey } from 'libp2p/pnet' +import { toString as uint8ArrayToString } from 'uint8arrays/to-string' +import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string' @Injectable() export class ConnectionsManagerService extends EventEmitter implements OnModuleInit { @@ -278,6 +283,14 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI public async createCommunity(payload: InitCommunityPayload) { console.log('ConnectionsManager.createCommunity peers:', payload.peers) + + if (!(await this.localDbService.get('psk'))) { + const psk = new Uint8Array(95) + generateKey(psk) + console.log('Saving psk', psk) + await this.localDbService.put('psk', psk) + } + await this.launchCommunity(payload) this.logger(`Created and launched community ${payload.id}`) this.serverIoProvider.io.emit(SocketActionTypes.NEW_COMMUNITY, { id: payload.id }) @@ -344,6 +357,8 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI if (!peers || peers.length === 0) { peers = [this.libp2pService.createLibp2pAddress(onionAddress, _peerId.toString())] } + const pskValue = await this.localDbService.get('psk') + const psk = Uint8Array.from(Object.values(pskValue)) const params: Libp2pNodeParams = { peerId: _peerId, @@ -352,10 +367,10 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI localAddress: this.libp2pService.createLibp2pAddress(onionAddress, _peerId.toString()), targetPort: this.ports.libp2pHiddenService, peers, + psk, } await this.libp2pService.createInstance(params) - // KACPER // Libp2p event listeners this.libp2pService.on(Libp2pEvents.PEER_CONNECTED, (payload: { peers: string[] }) => { this.serverIoProvider.io.emit(SocketActionTypes.PEER_CONNECTED, payload) diff --git a/packages/backend/src/nest/libp2p/libp2p.service.ts b/packages/backend/src/nest/libp2p/libp2p.service.ts index 311b8f2b47..be9eb08b0c 100644 --- a/packages/backend/src/nest/libp2p/libp2p.service.ts +++ b/packages/backend/src/nest/libp2p/libp2p.service.ts @@ -19,6 +19,7 @@ import Logger from '../common/logger' import { webSockets } from '../websocketOverTor' import { all } from '../websocketOverTor/filters' import { createLibp2pAddress, createLibp2pListenAddress } from '@quiet/common' +import { preSharedKey } from 'libp2p/pnet' @Injectable() export class Libp2pService extends EventEmitter { @@ -64,6 +65,9 @@ export class Libp2pService extends EventEmitter { addresses: { listen: params.listenAddresses, }, + connectionProtector: preSharedKey({ + psk: params.psk, + }), streamMuxers: [mplex()], connectionEncryption: [noise()], relay: { diff --git a/packages/backend/src/nest/libp2p/libp2p.types.ts b/packages/backend/src/nest/libp2p/libp2p.types.ts index d32cc0230f..8b80845033 100644 --- a/packages/backend/src/nest/libp2p/libp2p.types.ts +++ b/packages/backend/src/nest/libp2p/libp2p.types.ts @@ -14,6 +14,7 @@ export interface Libp2pNodeParams { localAddress: string targetPort: number peers: string[] + psk: Uint8Array } export interface InitLibp2pParams { From bb494377c835499ded5f8c34ee64d46676fb2ad3 Mon Sep 17 00:00:00 2001 From: Emi Date: Thu, 12 Oct 2023 14:02:06 +0200 Subject: [PATCH 02/31] Add psk to invitation link --- packages/backend/package-lock.json | 74173 ++++++++-------- .../connections-manager.service.ts | 5 +- .../backend/src/nest/socket/socket.service.ts | 4 + packages/common/src/invitationCode.test.ts | 70 +- packages/common/src/invitationCode.ts | 101 +- packages/common/src/static.ts | 2 + packages/desktop/src/main/invitation.ts | 8 +- packages/desktop/src/main/main.test.ts | 22 +- packages/desktop/src/main/main.ts | 6 +- .../JoinCommunity/JoinCommunity.tsx | 11 +- .../PerformCommunityActionComponent.tsx | 20 +- .../components/Settings/Settings.stories.tsx | 23 +- .../Tabs/Invite/Invite.component.test.tsx | 54 +- .../Settings/Tabs/Invite/Invite.stories.tsx | 39 +- .../Settings/Tabs/QRCode/QRCode.stories.tsx | 23 +- .../IdentityPanel/IdentityPanel.test.tsx | 3 +- packages/desktop/src/renderer/index.tsx | 8 +- .../handleInvitationCode.saga.test.ts | 67 +- .../invitation/handleInvitationCode.saga.ts | 7 +- .../src/rtl-tests/channel.switch.test.tsx | 2 +- .../src/rtl-tests/community.create.test.tsx | 6 +- .../src/rtl-tests/community.join.test.tsx | 10 +- .../src/rtl-tests/customProtocol.test.tsx | 11 +- .../possibleImpersonationAttack.test.tsx | 3 +- .../src/rtl-tests/searchModal.test.tsx | 2 +- .../src/tests/invitationLink.test.ts | 6 +- .../JoinCommunity/JoinCommunity.component.tsx | 10 +- .../JoinCommunity/JoinCommunity.types.ts | 2 +- .../JoinCommunity/JoinCommunity.screen.tsx | 5 +- .../store/init/deepLink/deepLink.saga.test.ts | 16 +- .../src/store/init/deepLink/deepLink.saga.ts | 5 +- packages/state-manager/src/index.ts | 2 - .../communities/communities.selectors.test.ts | 39 +- .../communities/communities.selectors.ts | 17 +- .../sagas/communities/communities.slice.ts | 33 +- .../createNetwork/createNetwork.saga.test.ts | 2 + .../deleteFilesFromChannel.saga.test.ts | 3 +- .../startConnection/startConnection.saga.ts | 5 + .../invitationCode/invitationCode.ts | 17 +- packages/types/src/community.ts | 2 + packages/types/src/network.ts | 5 + packages/types/src/socket.ts | 1 + 42 files changed, 37509 insertions(+), 37341 deletions(-) diff --git a/packages/backend/package-lock.json b/packages/backend/package-lock.json index 72f441ec71..a2e0996687 100644 --- a/packages/backend/package-lock.json +++ b/packages/backend/package-lock.json @@ -1,37097 +1,37080 @@ { - "name": "@quiet/backend", - "version": "2.0.1-alpha.3", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "@quiet/backend", - "version": "2.0.1-alpha.3", - "license": "MIT", - "dependencies": { - "@chainsafe/libp2p-gossipsub": "6.1.0", - "@chainsafe/libp2p-noise": "11.0.0", - "@nestjs/common": "^10.0.0", - "@nestjs/core": "^10.0.0", - "@nestjs/platform-express": "^10.0.0", - "@peculiar/webcrypto": "1.4.3", - "abortable-iterator": "^3.0.0", - "class-transformer": "^0.5.1", - "class-validator": "^0.13.1", - "cli-table": "^0.3.6", - "commander": "^7.2.0", - "cors": "^2.8.5", - "crypto-js": "^4.1.1", - "debug": "^4.3.1", - "dotenv": "8.2.0", - "events": "^3.2.0", - "express": "^4.17.1", - "get-port": "^5.1.1", - "go-ipfs": "npm:mocked-go-ipfs@0.17.0", - "http-server": "^0.12.3", - "https-proxy-agent": "^5.0.0", - "image-size": "^1.0.1", - "ipfs": "0.66.0", - "ipfs-log": "^5.4.2", - "it-ws": "5.0.6", - "joi": "^17.8.1", - "level": "8.0.0", - "libp2p": "0.42.2", - "luxon": "^1.11.4", - "multiaddr": "^10.0.1", - "orbit-db": "0.29.0", - "orbit-db-access-controllers": "^0.4.0", - "orbit-db-identity-provider": "0.5.0", - "orbit-db-io": "1.0.2", - "orbit-db-pubsub": "0.6.0", - "orbit-db-store": "4.3.4", - "p-queue": "7.3.4", - "peer-id": "^0.16.0", - "pkijs": "3.0.8", - "reflect-metadata": "^0.1.13", - "rimraf": "^3.0.2", - "rxjs": "^7.2.0", - "secp256k1": "4.0.3", - "socket.io": "4.6.0", - "socks-proxy-agent": "^5.0.0", - "string-replace-loader": "3.1.0", - "ts-jest-resolver": "^2.0.0", - "validator": "^13.6.0" - }, - "devDependencies": { - "@nestjs/cli": "^10.0.0", - "@nestjs/schematics": "^10.0.0", - "@nestjs/testing": "^10.0.0", - "@types/crypto-js": "^4.0.2", - "@types/express": "^4.17.9", - "@types/jest": "28.1.8", - "@types/luxon": "^3.3.0", - "@types/mock-fs": "^4.13.1", - "@types/node": "18.11.9", - "@types/node-fetch": "^2.5.11", - "@types/orbit-db": "git+https://github.com/orbitdb/orbit-db-types.git", - "@types/supertest": "^2.0.11", - "@types/tmp": "^0.2.3", - "@types/validator": "^13.1.4", - "@types/ws": "8.5.3", - "babel-jest": "^29.3.1", - "cross-env": "^5.2.0", - "fetch-mock-jest": "^1.5.1", - "jest": "^29.4.2", - "mock-fs": "^5.1.2", - "run-script-os": "1.1.6", - "tmp": "^0.2.1", - "ts-jest": "^29.0.3", - "ts-loader": "9.4.2", - "ts-node": "10.9.1", - "typescript": "^4.9.3", - "wait-for-expect": "^3.0.2", - "webpack": "5.75.0", - "webpack-cli": "5.0.1", - "yargs": "^17.1.0" - } - }, - "../common": { - "name": "@quiet/common", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "@quiet/types": "^1.4.0-alpha.0", - "cross-env": "^5.2.0", - "debug": "^4.3.1" - }, - "devDependencies": { - "@quiet/eslint-config": "^1.0.0", - "@types/jest": "^26.0.23", - "@types/node": "^17.0.21", - "jest": "^26.6.3", - "ts-jest": "^26.5.2", - "typescript": "^4.9.3" - } - }, - "../eslint-config-custom": { - "name": "@quiet/eslint-config", - "version": "1.0.0", - "extraneous": true, - "devDependencies": { - "@typescript-eslint/eslint-plugin": "5.59.11", - "@typescript-eslint/parser": "^5.59.11", - "eslint": "^8.42.0", - "eslint-config-prettier": "^8.8.0", - "eslint-config-standard": "^17.1.0", - "eslint-config-standard-with-typescript": "^35.0.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-jest": "^27.2.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react-hooks": "^4.6.0", - "prettier": "^2.8.8" - } - }, - "../identity": { - "name": "@quiet/identity", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "MIT", - "dependencies": { - "@peculiar/webcrypto": "1.4.3", - "@quiet/eslint-config": "^1.0.0", - "@quiet/logger": "^1.4.0-alpha.0", - "@quiet/types": "^1.4.0-alpha.0", - "pkijs": "^3.0.8" - }, - "devDependencies": { - "@babel/runtime": "^7.12.5", - "@types/jest": "^26.0.23", - "@types/node": "^14.17.6", - "babel-jest": "^29.3.1", - "jest": "^26.6.3", - "ts-jest": "^26.5.6", - "typescript": "^4.9.3" - } - }, - "../logger": { - "name": "@quiet/logger", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "cross-env": "^5.2.0", - "debug": "^4.3.1" - }, - "devDependencies": { - "@quiet/eslint-config": "^1.0.0", - "@types/debug": "^4.1.7", - "@types/node": "^17.0.21", - "typescript": "^4.9.3" - } - }, - "../state-manager": { - "name": "@quiet/state-manager", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "@quiet/common": "^1.4.0-alpha.0", - "@quiet/logger": "^1.4.0-alpha.0", - "@quiet/types": "^1.4.0-alpha.0", - "@reduxjs/toolkit": "^1.9.1", - "factory-girl": "^5.0.4", - "get-port": "^5.1.1", - "luxon": "^2.0.2", - "redux": "^4.1.1", - "redux-persist": "^6.0.0", - "redux-saga": "^1.1.3", - "redux-thunk": "^2.4.0", - "reselect": "^4.1.4", - "socket.io-client": "^4.1.3", - "typed-redux-saga": "^1.3.1", - "wait-for-expect": "^3.0.2" - }, - "devDependencies": { - "@babel/core": "^7.22.5", - "@babel/preset-env": "^7.22.5", - "@babel/preset-typescript": "^7.22.5", - "@peculiar/webcrypto": "1.4.3", - "@quiet/eslint-config": "^1.0.0", - "@quiet/identity": "^1.4.0-alpha.0", - "@types/factory-girl": "^5.0.8", - "@types/jest": "^26.0.24", - "@types/luxon": "^2.0.0", - "@types/redux-saga": "^0.10.5", - "babel-jest": "^29.3.1", - "cross-env": "^7.0.3", - "factory-girl": "^5.0.4", - "jest": "^27.0.6", - "libp2p-websockets": "*", - "pkijs": "^3.0.8", - "pvutils": "*", - "redux-saga-test-plan": "^4.0.3", - "tmp": "^0.2.1", - "typescript": "^4.9.3" - } - }, - "../types": { - "name": "@quiet/types", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "cross-env": "^5.2.0", - "debug": "^4.3.1" - }, - "devDependencies": { - "@quiet/eslint-config": "^1.0.0", - "@reduxjs/toolkit": "^1.9.1", - "@types/jest": "^26.0.23", - "@types/node": "^17.0.21", - "jest": "^26.6.3", - "ts-jest": "^26.5.2", - "typescript": "^4.9.3" - } - }, - "node_modules/@achingbrain/ip-address": { - "version": "8.1.0", - "license": "MIT", - "dependencies": { - "jsbn": "1.1.0", - "sprintf-js": "1.1.2" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/@achingbrain/nat-port-mapper": { - "version": "1.0.7", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@achingbrain/ssdp": "^4.0.1", - "@libp2p/logger": "^2.0.0", - "default-gateway": "^6.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.7", - "p-defer": "^4.0.0", - "p-timeout": "^5.0.2", - "xml2js": "^0.4.23" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@achingbrain/nat-port-mapper/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@achingbrain/ssdp": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "event-iterator": "^2.0.0", - "freeport-promise": "^2.0.0", - "merge-options": "^3.0.4", - "uuid": "^8.3.2", - "xml2js": "^0.4.23" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@achingbrain/ssdp/node_modules/uuid": { - "version": "8.3.2", - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/@angular-devkit/core": { - "version": "16.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "7.8.1", - "source-map": "0.7.4" - }, - "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "chokidar": "^3.5.2" - }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } - } - }, - "node_modules/@angular-devkit/core/node_modules/ajv": { - "version": "8.12.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@angular-devkit/core/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@angular-devkit/core/node_modules/source-map": { - "version": "0.7.4", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@angular-devkit/schematics": { - "version": "16.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", - "ora": "5.4.1", - "rxjs": "7.8.1" - }, - "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - } - }, - "node_modules/@angular-devkit/schematics-cli": { - "version": "16.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "ansi-colors": "4.1.3", - "inquirer": "8.2.4", - "symbol-observable": "4.0.0", - "yargs-parser": "21.1.1" - }, - "bin": { - "schematics": "bin/schematics.js" - }, - "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/inquirer": { - "version": "8.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/yargs-parser": { - "version": "21.1.1", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/@assemblyscript/loader": { - "version": "0.9.4", - "license": "Apache-2.0" - }, - "node_modules/@babel/code-frame": { - "version": "7.12.11", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.14.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@babel/core": { - "version": "7.14.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.3", - "@babel/helper-compilation-targets": "^7.13.16", - "@babel/helper-module-transforms": "^7.14.2", - "@babel/helpers": "^7.14.0", - "@babel/parser": "^7.14.3", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.12.13" - } - }, - "node_modules/@babel/core/node_modules/json5": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/core/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/generator": { - "version": "7.14.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.14.2", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "node_modules/@babel/generator/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.14.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.14.4", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.16.6", - "semver": "^6.3.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" - } - }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.13.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.13.12" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.13.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.13.12" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-simple-access": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/helper-validator-identifier": "^7.14.0", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.14.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.4" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.13.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.13.12" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.12.17", - "dev": true, - "license": "MIT" - }, - "node_modules/@babel/helpers": { - "version": "7.14.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.20.13", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.20.13", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/template/node_modules/@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.12.13" - } - }, - "node_modules/@babel/traverse": { - "version": "7.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "node_modules/@babel/traverse/node_modules/@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.12.13" - } - }, - "node_modules/@babel/traverse/node_modules/globals": { - "version": "11.12.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/types": { - "version": "7.20.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@chainsafe/is-ip": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/@chainsafe/libp2p-gossipsub": { - "version": "6.1.0", - "license": "Apache-2.0", - "dependencies": { - "@libp2p/crypto": "^1.0.3", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.3.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/pubsub": "^6.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "denque": "^1.5.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "protobufjs": "^6.11.2", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "npm": ">=8.7.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/peer-record": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise": { - "version": "11.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection-encrypter": "^3.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/hkdf": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.1", - "it-length-prefixed": "^8.0.2", - "it-pair": "^2.0.2", - "it-pb-stream": "^2.0.2", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { - "version": "11.0.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@didtools/cacao": { - "version": "1.1.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@ipld/dag-cbor": "^7.0.1", - "apg-js": "^4.1.1", - "caip": "^1.1.0", - "multiformats": "^9.5.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/@didtools/cacao/node_modules/@ipld/dag-cbor": { - "version": "7.0.3", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "node_modules/@didtools/cacao/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/@didtools/cacao/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@didtools/cacao/node_modules/uint8arrays/node_modules/multiformats": { - "version": "11.0.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@didtools/pkh-ethereum": { - "version": "0.0.1", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@didtools/cacao": "^1.0.0", - "@ethersproject/wallet": "^5.7.0", - "@stablelib/random": "^1.0.2", - "caip": "^1.1.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/@ethersproject/abi": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/abstract-provider": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0" - } - }, - "node_modules/@ethersproject/abstract-signer": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/address": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/base64": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0" - } - }, - "node_modules/@ethersproject/basex": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/properties": "^5.7.0" - } - }, - "node_modules/@ethersproject/bignumber": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "bn.js": "^5.2.1" - } - }, - "node_modules/@ethersproject/bignumber/node_modules/bn.js": { - "version": "5.2.1", - "license": "MIT" - }, - "node_modules/@ethersproject/bytes": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/constants": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0" - } - }, - "node_modules/@ethersproject/contracts": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abi": "^5.7.0", - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0" - } - }, - "node_modules/@ethersproject/hash": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/hdnode": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "node_modules/@ethersproject/json-wallets": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "aes-js": "3.0.0", - "scrypt-js": "3.0.1" - } - }, - "node_modules/@ethersproject/keccak256": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "js-sha3": "0.8.0" - } - }, - "node_modules/@ethersproject/logger": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT" - }, - "node_modules/@ethersproject/networks": { - "version": "5.7.1", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/pbkdf2": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/sha2": "^5.7.0" - } - }, - "node_modules/@ethersproject/properties": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/providers": { - "version": "5.7.2", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0", - "bech32": "1.1.4", - "ws": "7.4.6" - } - }, - "node_modules/@ethersproject/providers/node_modules/ws": { - "version": "7.4.6", - "license": "MIT", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@ethersproject/random": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/rlp": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/sha2": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "hash.js": "1.1.7" - } - }, - "node_modules/@ethersproject/signing-key": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/signing-key/node_modules/bn.js": { - "version": "5.2.1", - "license": "MIT" - }, - "node_modules/@ethersproject/solidity": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "node_modules/@ethersproject/strings": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/transactions": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/units": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/wallet": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/json-wallets": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "node_modules/@ethersproject/web": { - "version": "5.7.1", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/wordlists": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "node_modules/@grpc/grpc-js": { - "version": "1.8.7", - "license": "Apache-2.0", - "dependencies": { - "@grpc/proto-loader": "^0.7.0", - "@types/node": ">=12.12.47" - }, - "engines": { - "node": "^8.13.0 || >=10.10.0" - } - }, - "node_modules/@grpc/proto-loader": { - "version": "0.7.4", - "license": "Apache-2.0", - "dependencies": { - "@types/long": "^4.0.1", - "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^7.0.0", - "yargs": "^16.2.0" - }, - "bin": { - "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@grpc/proto-loader/node_modules/cliui": { - "version": "7.0.4", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/@grpc/proto-loader/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@grpc/proto-loader/node_modules/protobufjs/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/@grpc/proto-loader/node_modules/yargs": { - "version": "16.2.0", - "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@hapi/accept": { - "version": "5.0.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/address": { - "version": "5.1.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^11.0.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@hapi/address/node_modules/@hapi/hoek": { - "version": "11.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/ammo": { - "version": "5.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/b64": { - "version": "5.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/boom": { - "version": "9.1.4", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/bounce": { - "version": "2.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/bourne": { - "version": "2.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/call": { - "version": "8.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/catbox": { - "version": "11.1.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/podium": "4.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/catbox-memory": { - "version": "5.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/content": { - "version": "5.0.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x" - } - }, - "node_modules/@hapi/cryptiles": { - "version": "5.1.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/file": { - "version": "2.0.0", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/formula": { - "version": "3.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/hapi": { - "version": "20.2.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/accept": "^5.0.1", - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/bounce": "^2.0.0", - "@hapi/call": "^8.0.0", - "@hapi/catbox": "^11.1.1", - "@hapi/catbox-memory": "^5.0.0", - "@hapi/heavy": "^7.0.1", - "@hapi/hoek": "^9.0.4", - "@hapi/mimos": "^6.0.0", - "@hapi/podium": "^4.1.1", - "@hapi/shot": "^5.0.5", - "@hapi/somever": "^3.0.0", - "@hapi/statehood": "^7.0.4", - "@hapi/subtext": "^7.0.3", - "@hapi/teamwork": "^5.1.1", - "@hapi/topo": "^5.0.0", - "@hapi/validate": "^1.1.1" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/heavy": { - "version": "7.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/hoek": { - "version": "9.1.1", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/iron": { - "version": "6.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/mimos": { - "version": "6.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x", - "mime-db": "1.x.x" - } - }, - "node_modules/@hapi/nigel": { - "version": "4.0.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.4", - "@hapi/vise": "^4.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/pez": { - "version": "5.0.3", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/content": "^5.0.2", - "@hapi/hoek": "9.x.x", - "@hapi/nigel": "4.x.x" - } - }, - "node_modules/@hapi/pinpoint": { - "version": "2.0.1", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/podium": { - "version": "4.1.3", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x", - "@hapi/teamwork": "5.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/shot": { - "version": "5.0.5", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/somever": { - "version": "3.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/bounce": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/statehood": { - "version": "7.0.4", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/bounce": "2.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/iron": "6.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/subtext": { - "version": "7.0.4", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/content": "^5.0.2", - "@hapi/file": "2.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/pez": "^5.0.1", - "@hapi/wreck": "17.x.x" - } - }, - "node_modules/@hapi/teamwork": { - "version": "5.1.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/tlds": { - "version": "1.0.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@hapi/topo": { - "version": "5.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@hapi/validate": { - "version": "1.1.3", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0" - } - }, - "node_modules/@hapi/vise": { - "version": "4.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/wreck": { - "version": "17.2.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@ipld/car": { - "version": "5.1.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "cborg": "^1.9.0", - "multiformats": "^11.0.0", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@ipld/car/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@ipld/dag-cbor": { - "version": "6.0.13", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "cborg": "^1.2.1", - "multiformats": "^9.0.0" - } - }, - "node_modules/@ipld/dag-cbor/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/@ipld/dag-json": { - "version": "10.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@ipld/dag-pb": { - "version": "2.1.13", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "multiformats": "^9.0.0" - } - }, - "node_modules/@ipld/dag-pb/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/console/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.4.2", - "@jest/reporters": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.4.2", - "jest-config": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-resolve-dependencies": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "jest-watcher": "^29.4.2", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/core/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/environment": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "expect": "^29.4.2", - "jest-snapshot": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect-utils": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect-utils/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/globals": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/types": "^29.4.2", - "jest-mock": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/reporters": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/reporters/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/schemas": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.25.16" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/source-map": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-result": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-sequencer": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/test-result": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/transform": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/convert-source-map": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/write-file-atomic": { - "version": "4.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/@jest/types": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/@jest/types/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.3", - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "license": "MIT" - }, - "node_modules/@libp2p/bootstrap": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-info": "^1.0.7", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/crypto": { - "version": "1.0.11", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-keys": "^1.0.2", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^4.0.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/crypto/node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/@libp2p/crypto/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/crypto/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "it-drain": "^2.0.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/delegated-peer-routing": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.1", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-peer-routing/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-peer-routing/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/delegated-peer-routing/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/floodsub": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/pubsub": "^6.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.3" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/floodsub/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/floodsub/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-address-manager": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-connection": { - "version": "3.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-connection-encrypter": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-connection-manager": { - "version": "1.3.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-content-routing": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-dht": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-dht/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-keychain": { - "version": "2.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-keychain/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-keys": { - "version": "1.0.7", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-libp2p": { - "version": "1.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interface-peer-store": "^1.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-libp2p/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-metrics": { - "version": "4.0.5", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-discovery": { - "version": "1.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-id": { - "version": "1.0.6", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-info": { - "version": "1.0.8", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-info/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-routing": { - "version": "1.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-store": { - "version": "1.2.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-record": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-pubsub": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-pushable": "^3.0.0", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-pubsub/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/interface-record": { - "version": "2.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-registrar": { - "version": "2.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-stream-muxer": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-stream-types": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-transport": { - "version": "2.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interfaces": { - "version": "3.3.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht": { - "version": "7.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-first": "^2.0.0", - "it-length": "^2.0.0", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "it-take": "^2.0.0", - "k-bucket": "^5.1.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/kad-dht/node_modules/ip-regex": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/ipaddr.js": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/kad-dht/node_modules/it-take": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/p-queue": { - "version": "7.3.0", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/private-ip": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/logger": { - "version": "2.0.5", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "debug": "^4.3.3", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/logger/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mdns": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/multicast-dns": "^7.2.1", - "multicast-dns": "^7.2.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mdns/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mplex": { - "version": "7.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "benchmark": "^2.1.4", - "err-code": "^3.0.1", - "it-batched-bytes": "^1.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.4", - "rate-limiter-flexible": "^2.3.9", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mplex/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/mplex/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/mplex/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/mplex/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mplex/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/multistream-select": { - "version": "3.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.6", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-merge": "^1.0.4", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/multistream-select/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/multistream-select/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-collections": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-collections/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id-factory": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id-factory/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id-factory/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/@libp2p/peer-record": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/prometheus-metrics": { - "version": "1.1.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/logger": "^2.0.2", - "it-foreach": "^1.0.0", - "it-stream-types": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "peerDependencies": { - "prom-client": "^14.1.0" - } - }, - "node_modules/@libp2p/pubsub": { - "version": "6.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.2.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/pubsub/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/pubsub/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/pubsub/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/pubsub/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/pubsub/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/pubsub/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/record": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-dht": "^2.0.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/record/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/tcp": { - "version": "6.1.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "stream-to-it": "^0.2.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/topology": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/logger": "^2.0.1", - "it-all": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/topology/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/topology/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/tracked-map": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-metrics": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/utils": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@achingbrain/ip-address": "^8.1.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-peer-store": "^1.2.1", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "is-loopback-addr": "^2.0.1", - "it-stream-types": "^1.0.4", - "private-ip": "^2.1.1", - "uint8arraylist": "^2.3.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/utils/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/utils/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/utils/node_modules/is-loopback-addr": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/@libp2p/webrtc-peer": { - "version": "2.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "it-pushable": "^3.0.0", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "p-event": "^5.0.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-peer/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-peer/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/webrtc-peer/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.1", - "@libp2p/webrtc-peer": "^2.0.0", - "@libp2p/webrtc-star-protocol": "^3.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "socket.io-client": "^4.1.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star-protocol": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0", - "socket.io-client": "^4.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/webrtc-star/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/websockets": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.2", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-ws": "^5.0.0", - "p-defer": "^4.0.0", - "p-timeout": "^6.0.0", - "wherearewe": "^2.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/websockets/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/websockets/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/websockets/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/websockets/node_modules/p-timeout": { - "version": "6.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/websockets/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@lukeed/csprng": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.10", - "license": "BSD-3-Clause", - "dependencies": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" - } - }, - "node_modules/@multiformats/base-x": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/@multiformats/mafmt": { - "version": "11.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr": { - "version": "11.4.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@chainsafe/is-ip": "^2.0.1", - "dns-over-http-resolver": "^2.1.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr-to-uri": { - "version": "9.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/dns-over-http-resolver": { - "version": "2.1.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "debug": "^4.3.1", - "native-fetch": "^4.0.2", - "receptacle": "^1.3.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/native-fetch": { - "version": "4.0.2", - "license": "MIT", - "peerDependencies": { - "undici": "*" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/murmur3": { - "version": "2.1.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0", - "murmurhash3js-revisited": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/uri-to-multiaddr": { - "version": "7.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0", - "is-ip": "^5.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/uri-to-multiaddr/node_modules/ip-regex": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@multiformats/uri-to-multiaddr/node_modules/is-ip": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "ip-regex": "^5.0.0", - "super-regex": "^0.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@nestjs/cli": { - "version": "10.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "@angular-devkit/schematics-cli": "16.1.0", - "@nestjs/schematics": "^10.0.1", - "chalk": "4.1.2", - "chokidar": "3.5.3", - "cli-table3": "0.6.3", - "commander": "4.1.1", - "fork-ts-checker-webpack-plugin": "8.0.0", - "inquirer": "8.2.5", - "node-emoji": "1.11.0", - "ora": "5.4.1", - "os-name": "4.0.1", - "rimraf": "4.4.1", - "shelljs": "0.8.5", - "source-map-support": "0.5.21", - "tree-kill": "1.2.2", - "tsconfig-paths": "4.2.0", - "tsconfig-paths-webpack-plugin": "4.0.1", - "typescript": "5.1.3", - "webpack": "5.87.0", - "webpack-node-externals": "3.0.0" - }, - "bin": { - "nest": "bin/nest.js" - }, - "engines": { - "node": ">= 16" - }, - "peerDependencies": { - "@swc/cli": "^0.1.62", - "@swc/core": "^1.3.62" - }, - "peerDependenciesMeta": { - "@swc/cli": { - "optional": true - }, - "@swc/core": { - "optional": true - } - } - }, - "node_modules/@nestjs/cli/node_modules/@types/estree": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@nestjs/cli/node_modules/acorn": { - "version": "8.9.0", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/@nestjs/cli/node_modules/acorn-import-assertions": { - "version": "1.9.0", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/@nestjs/cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nestjs/cli/node_modules/brace-expansion": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@nestjs/cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nestjs/cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nestjs/cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/commander": { - "version": "4.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/@nestjs/cli/node_modules/es-module-lexer": { - "version": "1.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/glob": { - "version": "9.3.5", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "minimatch": "^8.0.2", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nestjs/cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@nestjs/cli/node_modules/json5": { - "version": "2.2.3", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@nestjs/cli/node_modules/minimatch": { - "version": "8.0.4", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nestjs/cli/node_modules/rimraf": { - "version": "4.4.1", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^9.2.0" - }, - "bin": { - "rimraf": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nestjs/cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@nestjs/cli/node_modules/tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@nestjs/cli/node_modules/typescript": { - "version": "5.1.3", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@nestjs/cli/node_modules/webpack": { - "version": "5.87.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/@nestjs/common": { - "version": "10.0.2", - "license": "MIT", - "dependencies": { - "iterare": "1.2.1", - "tslib": "2.5.3", - "uid": "2.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "class-transformer": "*", - "class-validator": "*", - "reflect-metadata": "^0.1.12", - "rxjs": "^7.1.0" - }, - "peerDependenciesMeta": { - "class-transformer": { - "optional": true - }, - "class-validator": { - "optional": true - } - } - }, - "node_modules/@nestjs/core": { - "version": "10.0.2", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "@nuxtjs/opencollective": "0.3.2", - "fast-safe-stringify": "2.1.1", - "iterare": "1.2.1", - "path-to-regexp": "3.2.0", - "tslib": "2.5.3", - "uid": "2.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "@nestjs/common": "^10.0.0", - "@nestjs/microservices": "^10.0.0", - "@nestjs/platform-express": "^10.0.0", - "@nestjs/websockets": "^10.0.0", - "reflect-metadata": "^0.1.12", - "rxjs": "^7.1.0" - }, - "peerDependenciesMeta": { - "@nestjs/microservices": { - "optional": true - }, - "@nestjs/platform-express": { - "optional": true - }, - "@nestjs/websockets": { - "optional": true - } - } - }, - "node_modules/@nestjs/core/node_modules/path-to-regexp": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/@nestjs/platform-express": { - "version": "10.0.2", - "license": "MIT", - "dependencies": { - "body-parser": "1.20.2", - "cors": "2.8.5", - "express": "4.18.2", - "multer": "1.4.4-lts.1", - "tslib": "2.5.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "@nestjs/common": "^10.0.0", - "@nestjs/core": "^10.0.0" - } - }, - "node_modules/@nestjs/platform-express/node_modules/body-parser": { - "version": "1.20.2", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/@nestjs/platform-express/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/@nestjs/platform-express/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@nestjs/platform-express/node_modules/raw-body": { - "version": "2.5.2", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/@nestjs/schematics": { - "version": "10.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "comment-json": "4.2.3", - "jsonc-parser": "3.2.0", - "pluralize": "8.0.0" - }, - "peerDependencies": { - "typescript": ">=4.8.2" - } - }, - "node_modules/@nestjs/testing": { - "version": "10.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "2.5.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "@nestjs/common": "^10.0.0", - "@nestjs/core": "^10.0.0", - "@nestjs/microservices": "^10.0.0", - "@nestjs/platform-express": "^10.0.0" - }, - "peerDependenciesMeta": { - "@nestjs/microservices": { - "optional": true - }, - "@nestjs/platform-express": { - "optional": true - } - } - }, - "node_modules/@noble/ed25519": { - "version": "1.7.1", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT" - }, - "node_modules/@noble/secp256k1": { - "version": "1.7.0", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT" - }, - "node_modules/@nuxtjs/opencollective": { - "version": "0.3.2", - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "consola": "^2.15.0", - "node-fetch": "^2.6.1" - }, - "bin": { - "opencollective": "bin/opencollective.js" - }, - "engines": { - "node": ">=8.0.0", - "npm": ">=5.0.0" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/@nuxtjs/opencollective/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@peculiar/asn1-schema": { - "version": "2.3.6", - "license": "MIT", - "dependencies": { - "asn1js": "^3.0.5", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "node_modules/@peculiar/json-schema": { - "version": "1.1.12", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@peculiar/webcrypto": { - "version": "1.4.3", - "license": "MIT", - "dependencies": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "pvtsutils": "^1.3.2", - "tslib": "^2.5.0", - "webcrypto-core": "^1.7.7" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "graceful-fs": "4.2.10" - }, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/npm-conf": { - "version": "1.0.5", - "license": "MIT", - "dependencies": { - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "license": "BSD-3-Clause", - "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@sinclair/typebox": { - "version": "0.25.21", - "devOptional": true, - "license": "MIT" - }, - "node_modules/@sinonjs/commons": { - "version": "2.0.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.0.2", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/commons": "^2.0.0" - } - }, - "node_modules/@socket.io/component-emitter": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@stablelib/aead": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/binary": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/int": "^1.0.1" - } - }, - "node_modules/@stablelib/bytes": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/chacha": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/chacha20poly1305": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/aead": "^1.0.1", - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/poly1305": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/constant-time": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/ed25519": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "@stablelib/random": "^1.0.2", - "@stablelib/sha512": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/hash": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/hkdf": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/hash": "^1.0.1", - "@stablelib/hmac": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/hmac": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/int": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/keyagreement": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/bytes": "^1.0.1" - } - }, - "node_modules/@stablelib/poly1305": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/random": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/sha256": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/sha512": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/wipe": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/x25519": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "@stablelib/keyagreement": "^1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/xchacha20": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/xchacha20poly1305": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/aead": "^1.0.1", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1", - "@stablelib/xchacha20": "^1.0.1" - } - }, - "node_modules/@tokenizer/token": { - "version": "0.3.0", - "license": "MIT" - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/babel__core": { - "version": "7.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.11.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.3.0" - } - }, - "node_modules/@types/bn.js": { - "version": "5.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/body-parser": { - "version": "1.19.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "node_modules/@types/connect": { - "version": "3.4.34", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/cookie": { - "version": "0.4.1", - "license": "MIT" - }, - "node_modules/@types/cookiejar": { - "version": "2.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/cors": { - "version": "2.8.13", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/crypto-js": { - "version": "4.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/dns-packet": { - "version": "5.2.4", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/elliptic": { - "version": "6.4.14", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/bn.js": "*" - } - }, - "node_modules/@types/eslint": { - "version": "8.4.10", - "license": "MIT", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "license": "MIT", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "0.0.51", - "license": "MIT" - }, - "node_modules/@types/events": { - "version": "1.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/express": { - "version": "4.17.15", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.31", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.32", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.3", - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "28.1.8", - "dev": true, - "license": "MIT", - "dependencies": { - "expect": "^28.0.0", - "pretty-format": "^28.0.0" - } - }, - "node_modules/@types/jest/node_modules/@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/expect-utils": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^28.0.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/schemas": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.24.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/types": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/@sinclair/typebox": { - "version": "0.24.51", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@types/jest/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/diff-sequences": { - "version": "28.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/expect": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/expect-utils": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@types/jest/node_modules/jest-diff": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^28.1.1", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-get-type": { - "version": "28.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-matcher-utils": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-message-util": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-util": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/pretty-format": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "license": "MIT" - }, - "node_modules/@types/long": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/@types/luxon": { - "version": "3.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/mime": { - "version": "2.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/minimatch": { - "version": "3.0.5", - "license": "MIT" - }, - "node_modules/@types/mock-fs": { - "version": "4.13.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/multicast-dns": { - "version": "7.2.1", - "license": "MIT", - "dependencies": { - "@types/dns-packet": "*", - "@types/node": "*" - } - }, - "node_modules/@types/node": { - "version": "18.11.9", - "license": "MIT" - }, - "node_modules/@types/node-fetch": { - "version": "2.5.11", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "form-data": "^3.0.0" - } - }, - "node_modules/@types/orbit-db": { - "version": "1.0.1", - "resolved": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/elliptic": "^6.4.6", - "@types/events": "^1.2.0", - "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", - "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" - } - }, - "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", - "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", - "dev": true, - "dependencies": { - "cborg": "^2.0.1", - "multiformats": "^12.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor/node_modules/multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/@libp2p/crypto": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", - "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", - "dev": true, - "dependencies": { - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interfaces": "^3.2.0", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^5.0.0", - "uint8arraylist": "^2.4.3", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/@types/ipfs": { - "version": "0.23.6", - "resolved": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/orbit-db/node_modules/cborg": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", - "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", - "dev": true, - "bin": { - "cborg": "cli.js" - } - }, - "node_modules/@types/orbit-db/node_modules/long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "dev": true - }, - "node_modules/@types/orbit-db/node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true, - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/@types/orbit-db/node_modules/orbit-db": { - "name": "@orbitdb/core", - "version": "0.30.1", - "resolved": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", - "dev": true, - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@libp2p/crypto": "^1.0.12", - "it-pipe": "^2.0.5", - "level": "^8.0.0", - "lru": "^3.1.0", - "multiformats": "^11.0.1", - "p-queue": "^7.3.4", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.3" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/protobufjs": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", - "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", - "dev": true, - "hasInstallScript": true, - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/protons-runtime": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", - "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", - "dev": true, - "dependencies": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.4.3" - }, - "peerDependencies": { - "uint8arraylist": "^2.3.2" - } - }, - "node_modules/@types/orbit-db/node_modules/uint8arraylist": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", - "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", - "dev": true, - "dependencies": { - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/uint8arrays": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", - "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", - "dev": true, - "dependencies": { - "multiformats": "^12.0.1" - } - }, - "node_modules/@types/orbit-db/node_modules/uint8arrays/node_modules/multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/prettier": { - "version": "2.7.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/qs": { - "version": "6.9.5", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/range-parser": { - "version": "1.2.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/retry": { - "version": "0.12.1", - "license": "MIT" - }, - "node_modules/@types/serve-static": { - "version": "1.15.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "node_modules/@types/stack-utils": { - "version": "2.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/superagent": { - "version": "4.1.18", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/cookiejar": "*", - "@types/node": "*" - } - }, - "node_modules/@types/supertest": { - "version": "2.0.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/superagent": "*" - } - }, - "node_modules/@types/tmp": { - "version": "0.2.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/validator": { - "version": "13.1.4", - "license": "MIT" - }, - "node_modules/@types/ws": { - "version": "8.5.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/yargs": { - "version": "17.0.15", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "license": "MIT" - }, - "node_modules/@vascosantos/moving-average": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webpack-cli/configtest": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } - }, - "node_modules/@webpack-cli/info": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } - }, - "node_modules/@webpack-cli/serve": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "license": "BSD-3-Clause" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "license": "Apache-2.0" - }, - "node_modules/abbrev": { - "version": "1.1.1", - "license": "ISC" - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" - } - }, - "node_modules/abortable-iterator": { - "version": "3.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^1.0.2" - } - }, - "node_modules/abstract-level": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "catering": "^2.1.0", - "is-buffer": "^2.0.5", - "level-supports": "^4.0.0", - "level-transcoder": "^1.0.1", - "module-error": "^1.0.1", - "queue-microtask": "^1.2.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/abstract-level/node_modules/level-supports": { - "version": "4.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/abstract-leveldown": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "catering": "^2.0.0", - "is-buffer": "^2.0.5", - "level-concat-iterator": "^3.0.0", - "level-supports": "^2.0.1", - "queue-microtask": "^1.2.3" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/abstract-logging": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/accepts": { - "version": "1.3.8", - "license": "MIT", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/aes-js": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/agent-base": { - "version": "6.0.2", - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.12.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-align": { - "version": "3.0.1", - "license": "ISC", - "dependencies": { - "string-width": "^4.1.0" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/any-signal": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/anymatch": { - "version": "3.1.2", - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/apg-js": { - "version": "4.1.3", - "license": "BSD-2-Clause" - }, - "node_modules/append-field": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/aproba": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/arg": { - "version": "4.1.3", - "dev": true, - "license": "MIT" - }, - "node_modules/argparse": { - "version": "1.0.10", - "dev": true, - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/argparse/node_modules/sprintf-js": { - "version": "1.0.3", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/args": { - "version": "5.0.3", - "license": "MIT", - "dependencies": { - "camelcase": "5.0.0", - "chalk": "2.4.2", - "leven": "2.1.0", - "mri": "1.1.4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/args/node_modules/camelcase": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/array-shuffle": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/array-timsort": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/asap": { - "version": "2.0.6", - "license": "MIT" - }, - "node_modules/asmcrypto.js": { - "version": "2.3.2", - "license": "MIT" - }, - "node_modules/asn1": { - "version": "0.2.6", - "license": "MIT", - "optional": true, - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/asn1.js": { - "version": "5.4.1", - "license": "MIT", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/asn1js": { - "version": "3.0.5", - "license": "BSD-3-Clause", - "dependencies": { - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/assert": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/async": { - "version": "2.6.3", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "devOptional": true, - "license": "MIT" - }, - "node_modules/atomic-sleep": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.12.0", - "license": "MIT", - "optional": true - }, - "node_modules/babel-jest": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/transform": "^29.4.2", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.4.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/babel-jest/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-jest": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "babel-plugin-jest-hoist": "^29.4.2", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/base-x": { - "version": "3.0.9", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.0.1" - } - }, - "node_modules/base64-js": { - "version": "1.3.1", - "license": "MIT" - }, - "node_modules/base64id": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": "^4.5.0 || >= 5.9" - } - }, - "node_modules/basic-auth": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/bech32": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/benchmark": { - "version": "2.1.4", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.4", - "platform": "^1.3.3" - } - }, - "node_modules/big.js": { - "version": "5.2.2", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "license": "MIT", - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bintrees": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/bip66": { - "version": "1.1.5", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.0.1" - } - }, - "node_modules/bl": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/blakejs": { - "version": "1.1.0", - "license": "CC0-1.0" - }, - "node_modules/blob-to-it": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "browser-readablestream-to-it": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-store": "^3.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-take": "^2.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-take": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-datastore-adapter": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "blockstore-core": "^3.0.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-drain": "^2.0.0", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-datastore-adapter/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-datastore-adapter/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/bn.js": { - "version": "4.11.9", - "license": "MIT" - }, - "node_modules/body-parser": { - "version": "1.20.1", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/boxen": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.0", - "chalk": "^5.0.1", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "6.2.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/boxen/node_modules/camelcase": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/chalk": { - "version": "5.1.2", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/boxen/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/boxen/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/strip-ansi": { - "version": "7.0.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/boxen/node_modules/wrap-ansi": { - "version": "8.0.1", - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/brorand": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/browser-level": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "abstract-level": "^1.0.2", - "catering": "^2.1.1", - "module-error": "^1.0.2", - "run-parallel-limit": "^1.1.0" - } - }, - "node_modules/browser-readablestream-to-it": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserslist": { - "version": "4.16.6", - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } - }, - "node_modules/bs-logger": { - "version": "0.2.6", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-json-stable-stringify": "2.x" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/bs58": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "base-x": "^3.0.2" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "license": "Apache-2.0", - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "license": "MIT", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/busboy": { - "version": "1.6.0", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/byte-access": { - "version": "1.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/byteman": { - "version": "1.3.5", - "license": "MIT" - }, - "node_modules/bytes": { - "version": "3.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/bytestreamjs": { - "version": "2.0.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/caip": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/call-bind": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001235", - "license": "CC-BY-4.0", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } - }, - "node_modules/canonicalize": { - "version": "1.0.8", - "license": "Apache-2.0" - }, - "node_modules/capital-case": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/caseless": { - "version": "0.12.0", - "license": "Apache-2.0", - "optional": true - }, - "node_modules/catering": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cborg": { - "version": "1.10.0", - "license": "Apache-2.0", - "bin": { - "cborg": "cli.js" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/change-case": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "dev": true, - "license": "MIT" - }, - "node_modules/chokidar": { - "version": "3.5.3", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "license": "MIT", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "3.7.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/cipher-base": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "dev": true, - "license": "MIT" - }, - "node_modules/class-is": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/class-transformer": { - "version": "0.5.1", - "license": "MIT" - }, - "node_modules/class-validator": { - "version": "0.13.1", - "license": "MIT", - "dependencies": { - "@types/validator": "^13.1.3", - "libphonenumber-js": "^1.9.7", - "validator": "^13.5.2" - } - }, - "node_modules/classic-level": { - "version": "1.2.0", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "abstract-level": "^1.0.2", - "catering": "^2.1.0", - "module-error": "^1.0.1", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-boxes": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-table": { - "version": "0.3.6", - "dependencies": { - "colors": "1.0.3" - }, - "engines": { - "node": ">= 0.2.0" - } - }, - "node_modules/cli-table/node_modules/colors": { - "version": "1.0.3", - "license": "MIT", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/cli-table3": { - "version": "0.6.3", - "dev": true, - "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 10" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clone": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-deep": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/clone-regexp": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "is-regexp": "^3.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/co": { - "version": "4.6.0", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/code-point-at": { - "version": "1.1.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/coercer": { - "version": "1.1.2", - "license": "ISC" - }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/color-convert": { - "version": "1.9.3", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/color-support": { - "version": "1.1.3", - "license": "ISC", - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colorette": { - "version": "1.2.2", - "license": "MIT" - }, - "node_modules/colors": { - "version": "1.4.0", - "license": "MIT", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "devOptional": true, - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "7.2.0", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/comment-json": { - "version": "4.2.3", - "dev": true, - "license": "MIT", - "dependencies": { - "array-timsort": "^1.0.3", - "core-util-is": "^1.0.3", - "esprima": "^4.0.1", - "has-own-prop": "^2.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/comment-json/node_modules/core-util-is": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "license": "MIT" - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "engines": [ - "node >= 0.8" - ], - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-stream/node_modules/buffer-from": { - "version": "1.1.2", - "license": "MIT" - }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.7", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/concat-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT" - }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/config-chain": { - "version": "1.1.13", - "license": "MIT", - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/configstore": { - "version": "6.0.0", - "license": "BSD-2-Clause", - "dependencies": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" - } - }, - "node_modules/consola": { - "version": "2.15.3", - "license": "MIT" - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "license": "ISC" - }, - "node_modules/constant-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "license": "MIT", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-hrtime": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/convert-source-map": { - "version": "1.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.1" - } - }, - "node_modules/convert-source-map/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/cookie": { - "version": "0.4.2", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "license": "MIT" - }, - "node_modules/core-js": { - "version": "3.27.2", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/cors": { - "version": "2.8.5", - "license": "MIT", - "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/corser": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cosmiconfig/node_modules/parse-json": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/create-hash": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/create-require": { - "version": "1.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/cross-env": { - "version": "5.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^6.0.5" - }, - "bin": { - "cross-env": "dist/bin/cross-env.js", - "cross-env-shell": "dist/bin/cross-env-shell.js" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/cross-env/node_modules/cross-spawn": { - "version": "6.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/cross-env/node_modules/path-key": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/cross-env/node_modules/semver": { - "version": "5.7.1", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/cross-env/node_modules/shebang-command": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cross-env/node_modules/shebang-regex": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cross-env/node_modules/which": { - "version": "1.3.1", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-js": { - "version": "4.1.1", - "license": "MIT" - }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dag-jose": { - "version": "4.0.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "multiformats": "^11.0.0" - } - }, - "node_modules/dag-jose-utils": { - "version": "2.0.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@ipld/dag-cbor": "^7.0.1", - "multiformats": "^9.5.1" - } - }, - "node_modules/dag-jose-utils/node_modules/@ipld/dag-cbor": { - "version": "7.0.3", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "node_modules/dag-jose-utils/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/dag-jose/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/dashdash": { - "version": "1.14.1", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/datastore-core": { - "version": "8.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^1.0.4", - "it-drain": "^1.0.4", - "it-filter": "^1.0.2", - "it-map": "^1.0.5", - "it-merge": "^1.0.1", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-take": "^1.0.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-core/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/datastore-core/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-core/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-fs": { - "version": "8.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "datastore-core": "^8.0.1", - "fast-write-atomic": "^0.2.0", - "interface-datastore": "^7.0.0", - "it-glob": "^1.0.1", - "it-map": "^1.0.5", - "it-parallel-batch": "^1.0.9", - "mkdirp": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-fs/node_modules/mkdirp": { - "version": "1.0.4", - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/datastore-level": { - "version": "9.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "abstract-level": "^1.0.3", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "it-filter": "^2.0.0", - "it-map": "^2.0.0", - "it-sort": "^2.0.0", - "it-take": "^2.0.0", - "level": "^8.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-level/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-level/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-level/node_modules/it-take": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-pubsub": { - "version": "7.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-pubsub/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/dateformat": { - "version": "4.6.3", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dedent": { - "version": "0.7.0", - "dev": true, - "license": "MIT" - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deepmerge": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-gateway": { - "version": "6.0.3", - "license": "BSD-2-Clause", - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/deferred-leveldown": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "abstract-leveldown": "~6.0.0", - "inherits": "^2.0.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/deferred-leveldown/node_modules/abstract-leveldown": { - "version": "6.0.3", - "license": "MIT", - "dependencies": { - "level-concat-iterator": "~2.0.0", - "xtend": "~4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/deferred-leveldown/node_modules/level-concat-iterator": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/define-properties": { - "version": "1.1.3", - "license": "MIT", - "dependencies": { - "object-keys": "^1.0.12" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-properties/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/delay": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/denque": { - "version": "1.5.1", - "license": "Apache-2.0", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "license": "MIT", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-libc": { - "version": "2.0.1", - "license": "Apache-2.0", - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/dezalgo": { - "version": "1.0.4", - "license": "ISC", - "dependencies": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "node_modules/did-jwt": { - "version": "6.11.0", - "license": "Apache-2.0", - "dependencies": { - "@stablelib/ed25519": "^1.0.2", - "@stablelib/random": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.2", - "@stablelib/xchacha20poly1305": "^1.0.1", - "bech32": "^2.0.0", - "canonicalize": "^1.0.8", - "did-resolver": "^4.0.0", - "elliptic": "^6.5.4", - "js-sha3": "^0.8.0", - "multiformats": "^9.6.5", - "uint8arrays": "^3.0.0" - } - }, - "node_modules/did-jwt/node_modules/bech32": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/did-jwt/node_modules/did-resolver": { - "version": "4.0.1", - "license": "Apache-2.0" - }, - "node_modules/did-jwt/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/did-resolver": { - "version": "3.2.2", - "license": "Apache-2.0" - }, - "node_modules/dids": { - "version": "3.4.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@didtools/cacao": "^1.0.0", - "@didtools/pkh-ethereum": "^0.0.1", - "@stablelib/random": "^1.0.1", - "dag-jose-utils": "^2.0.0", - "did-jwt": "^6.0.0", - "did-resolver": "^3.1.5", - "multiformats": "^9.4.10", - "rpc-utils": "^0.6.1", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/dids/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/diff": { - "version": "4.0.2", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/diff-match-patch": { - "version": "1.0.5", - "license": "Apache-2.0" - }, - "node_modules/diff-sequences": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/dlv": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/dns-over-http-resolver": { - "version": "1.2.3", - "license": "MIT", - "dependencies": { - "debug": "^4.3.1", - "native-fetch": "^3.0.0", - "receptacle": "^1.3.2" - } - }, - "node_modules/dns-packet": { - "version": "5.4.0", - "license": "MIT", - "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/domexception": { - "version": "1.0.1", - "license": "MIT", - "optional": true, - "dependencies": { - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "4.0.2", - "license": "BSD-2-Clause", - "optional": true - }, - "node_modules/dot-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-prop": { - "version": "6.0.1", - "license": "MIT", - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dotenv": { - "version": "8.2.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=8" - } - }, - "node_modules/drbg.js": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "browserify-aes": "^1.0.6", - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "license": "MIT", - "optional": true, - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ecc-jsbn/node_modules/jsbn": { - "version": "0.1.1", - "license": "MIT", - "optional": true - }, - "node_modules/ecstatic": { - "version": "3.3.2", - "license": "MIT", - "dependencies": { - "he": "^1.1.1", - "mime": "^1.6.0", - "minimist": "^1.1.0", - "url-join": "^2.0.5" - }, - "bin": { - "ecstatic": "lib/ecstatic.js" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/ejs": { - "version": "3.1.8", - "license": "Apache-2.0", - "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron": { - "version": "1.8.8", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@types/node": "^8.0.24", - "electron-download": "^3.0.1", - "extract-zip": "^1.0.3" - }, - "bin": { - "electron": "cli.js" - } - }, - "node_modules/electron-download": { - "version": "3.3.0", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "debug": "^2.2.0", - "fs-extra": "^0.30.0", - "home-path": "^1.0.1", - "minimist": "^1.2.0", - "nugget": "^2.0.0", - "path-exists": "^2.1.0", - "rc": "^1.1.2", - "semver": "^5.3.0", - "sumchecker": "^1.2.0" - }, - "bin": { - "electron-download": "build/cli.js" - } - }, - "node_modules/electron-download/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/electron-download/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/electron-download/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/electron-eval": { - "version": "0.9.10", - "license": "MIT", - "optional": true, - "dependencies": { - "cross-spawn": "^5.1.0", - "electron": "^1.6.11", - "ndjson": "^1.5.0" - }, - "optionalDependencies": { - "headless": "https://github.com/paulkernfeld/node-headless/tarball/master" - } - }, - "node_modules/electron-eval/node_modules/cross-spawn": { - "version": "5.1.0", - "license": "MIT", - "optional": true, - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/electron-eval/node_modules/lru-cache": { - "version": "4.1.5", - "license": "ISC", - "optional": true, - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/electron-eval/node_modules/shebang-command": { - "version": "1.2.0", - "license": "MIT", - "optional": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron-eval/node_modules/shebang-regex": { - "version": "1.0.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron-eval/node_modules/which": { - "version": "1.3.1", - "license": "ISC", - "optional": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/electron-eval/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC", - "optional": true - }, - "node_modules/electron-fetch": { - "version": "1.7.4", - "license": "MIT", - "dependencies": { - "encoding": "^0.1.13" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.3.749", - "license": "ISC" - }, - "node_modules/electron-webrtc": { - "version": "0.3.0", - "license": "MIT", - "optional": true, - "dependencies": { - "debug": "^2.2.0", - "electron-eval": "^0.9.0", - "get-browser-rtc": "^1.0.2", - "hat": "^0.0.3" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/electron-webrtc/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/electron-webrtc/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/electron/node_modules/@types/node": { - "version": "8.10.66", - "license": "MIT", - "optional": true - }, - "node_modules/elliptic": { - "version": "6.5.4", - "license": "MIT", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/emittery": { - "version": "0.13.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/encoding": { - "version": "0.1.13", - "license": "MIT", - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.2", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "license": "MIT", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/engine.io": { - "version": "6.4.0", - "license": "MIT", - "dependencies": { - "@types/cookie": "^0.4.1", - "@types/cors": "^2.8.12", - "@types/node": ">=10.0.0", - "accepts": "~1.3.4", - "base64id": "2.0.0", - "cookie": "~0.4.1", - "cors": "~2.8.5", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.11.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/engine.io-client": { - "version": "6.2.3", - "license": "MIT", - "dependencies": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", - "xmlhttprequest-ssl": "~2.0.0" - } - }, - "node_modules/engine.io-client/node_modules/ws": { - "version": "8.2.3", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/engine.io-parser": { - "version": "5.0.4", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/envinfo": { - "version": "7.8.1", - "dev": true, - "license": "MIT", - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/err-code": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/errno": { - "version": "0.1.8", - "license": "MIT", - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "license": "MIT" - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es6-object-assign": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/es6-promise": { - "version": "4.2.8", - "license": "MIT", - "optional": true - }, - "node_modules/escalade": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-goat": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "dev": true, - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.2.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/ethers": { - "version": "5.7.2", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abi": "5.7.0", - "@ethersproject/abstract-provider": "5.7.0", - "@ethersproject/abstract-signer": "5.7.0", - "@ethersproject/address": "5.7.0", - "@ethersproject/base64": "5.7.0", - "@ethersproject/basex": "5.7.0", - "@ethersproject/bignumber": "5.7.0", - "@ethersproject/bytes": "5.7.0", - "@ethersproject/constants": "5.7.0", - "@ethersproject/contracts": "5.7.0", - "@ethersproject/hash": "5.7.0", - "@ethersproject/hdnode": "5.7.0", - "@ethersproject/json-wallets": "5.7.0", - "@ethersproject/keccak256": "5.7.0", - "@ethersproject/logger": "5.7.0", - "@ethersproject/networks": "5.7.1", - "@ethersproject/pbkdf2": "5.7.0", - "@ethersproject/properties": "5.7.0", - "@ethersproject/providers": "5.7.2", - "@ethersproject/random": "5.7.0", - "@ethersproject/rlp": "5.7.0", - "@ethersproject/sha2": "5.7.0", - "@ethersproject/signing-key": "5.7.0", - "@ethersproject/solidity": "5.7.0", - "@ethersproject/strings": "5.7.0", - "@ethersproject/transactions": "5.7.0", - "@ethersproject/units": "5.7.0", - "@ethersproject/wallet": "5.7.0", - "@ethersproject/web": "5.7.1", - "@ethersproject/wordlists": "5.7.0" - } - }, - "node_modules/event-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "license": "MIT" - }, - "node_modules/events": { - "version": "3.3.0", - "license": "MIT", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expect": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/expect-utils": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/expect/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/express": { - "version": "4.18.2", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/cookie": { - "version": "0.5.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.7", - "license": "MIT" - }, - "node_modules/extend": { - "version": "3.0.2", - "license": "MIT", - "optional": true - }, - "node_modules/external-editor": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/external-editor/node_modules/tmp": { - "version": "0.0.33", - "dev": true, - "license": "MIT", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/extract-zip": { - "version": "1.7.0", - "license": "BSD-2-Clause", - "optional": true, - "dependencies": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - } - }, - "node_modules/extract-zip/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/extract-zip/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", - "optional": true - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "license": "MIT" - }, - "node_modules/fast-fifo": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "license": "MIT" - }, - "node_modules/fast-redact": { - "version": "3.1.2", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", - "license": "MIT" - }, - "node_modules/fast-write-atomic": { - "version": "0.2.1", - "license": "MIT" - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.1", - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "license": "MIT", - "optional": true, - "dependencies": { - "pend": "~1.2.0" - } - }, - "node_modules/fetch-mock": { - "version": "9.11.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.0.0", - "@babel/runtime": "^7.0.0", - "core-js": "^3.0.0", - "debug": "^4.1.1", - "glob-to-regexp": "^0.4.0", - "is-subset": "^0.1.1", - "lodash.isequal": "^4.5.0", - "path-to-regexp": "^2.2.1", - "querystring": "^0.2.0", - "whatwg-url": "^6.5.0" - }, - "engines": { - "node": ">=4.0.0" - }, - "funding": { - "type": "charity", - "url": "https://www.justgiving.com/refugee-support-europe" - }, - "peerDependencies": { - "node-fetch": "*" - }, - "peerDependenciesMeta": { - "node-fetch": { - "optional": true - } - } - }, - "node_modules/fetch-mock-jest": { - "version": "1.5.1", - "dev": true, - "license": "MIT", - "dependencies": { - "fetch-mock": "^9.11.0" - }, - "engines": { - "node": ">=8.0.0" - }, - "funding": { - "type": "charity", - "url": "https://www.justgiving.com/refugee-support-europe" - }, - "peerDependencies": { - "node-fetch": "*" - }, - "peerDependenciesMeta": { - "node-fetch": { - "optional": true - } - } - }, - "node_modules/fetch-mock/node_modules/tr46": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/fetch-mock/node_modules/webidl-conversions": { - "version": "4.0.2", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/fetch-mock/node_modules/whatwg-url": { - "version": "6.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/figures": { - "version": "3.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-type": { - "version": "18.2.0", - "license": "MIT", - "dependencies": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0", - "token-types": "^5.0.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/file-type?sponsor=1" - } - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/filelist": { - "version": "1.0.4", - "license": "Apache-2.0", - "dependencies": { - "minimatch": "^5.0.1" - } - }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/filesize": { - "version": "10.0.6", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 10.4.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/flatstr": { - "version": "1.0.12", - "license": "MIT" - }, - "node_modules/fnv1a": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/follow-redirects": { - "version": "1.14.1", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/foreach": { - "version": "2.0.5", - "license": "MIT" - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "8.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, - "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "typescript": ">3.6.0", - "webpack": "^5.11.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "10.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/form-data": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "license": "MIT", - "engines": { - "node": ">= 14.17" - } - }, - "node_modules/formidable": { - "version": "2.1.1", - "license": "MIT", - "dependencies": { - "dezalgo": "^1.0.4", - "hexoid": "^1.0.0", - "once": "^1.4.0", - "qs": "^6.11.0" - }, - "funding": { - "url": "https://ko-fi.com/tunnckoCore/commissions" - } - }, - "node_modules/freeport-promise": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-extra": { - "version": "0.30.0", - "license": "MIT", - "optional": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - } - }, - "node_modules/fs-extra/node_modules/rimraf": { - "version": "2.7.1", - "license": "ISC", - "optional": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fs-monkey": { - "version": "1.0.4", - "dev": true, - "license": "Unlicense" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "license": "ISC" - }, - "node_modules/function-bind": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/function-timeout": { - "version": "0.1.1", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gar": { - "version": "1.0.4", - "license": "MIT" - }, - "node_modules/gauge": { - "version": "3.0.2", - "license": "ISC", - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-browser-rtc": { - "version": "1.1.0", - "license": "MIT", - "optional": true - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-folder-size": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "gar": "^1.0.4" - }, - "bin": { - "get-folder-size": "bin/get-folder-size.js" - }, - "engines": { - "node": ">=14.13.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-iterator": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-port": { - "version": "5.1.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/glob": { - "version": "7.2.0", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "license": "BSD-2-Clause" - }, - "node_modules/global-dirs": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/go-ipfs": { - "name": "mocked-go-ipfs", - "version": "0.17.0", - "license": "ISC" - }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "license": "ISC" - }, - "node_modules/hamt-sharding": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "sparse-array": "^1.3.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/hamt-sharding/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/hapi-pino": { - "version": "8.5.0", - "license": "MIT", - "dependencies": { - "@hapi/hoek": "^9.0.0", - "abstract-logging": "^2.0.0", - "pino": "^6.0.0", - "pino-pretty": "^4.0.0" - } - }, - "node_modules/har-schema": { - "version": "2.0.0", - "license": "ISC", - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "license": "MIT", - "optional": true, - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.1", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-own-prop": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-symbols": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "license": "ISC" - }, - "node_modules/has-yarn": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hash-base": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "node_modules/hashlru": { - "version": "2.3.0", - "license": "MIT" - }, - "node_modules/hat": { - "version": "0.0.3", - "license": "MIT/X11", - "optional": true - }, - "node_modules/he": { - "version": "1.2.0", - "license": "MIT", - "bin": { - "he": "bin/he" - } - }, - "node_modules/header-case": { - "version": "2.0.4", - "license": "MIT", - "dependencies": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/headless": { - "version": "1.1.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/hexoid": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/home-path": { - "version": "1.0.7", - "license": "MIT", - "optional": true - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "license": "BSD-2-Clause" - }, - "node_modules/http-errors": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-proxy": { - "version": "1.18.1", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/http-server": { - "version": "0.12.3", - "license": "MIT", - "dependencies": { - "basic-auth": "^1.0.3", - "colors": "^1.4.0", - "corser": "^2.0.1", - "ecstatic": "^3.3.2", - "http-proxy": "^1.18.0", - "minimist": "^1.2.5", - "opener": "^1.5.1", - "portfinder": "^1.0.25", - "secure-compare": "3.0.1", - "union": "~0.5.0" - }, - "bin": { - "hs": "bin/http-server", - "http-server": "bin/http-server" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, - "node_modules/image-size": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "queue": "6.0.2" - }, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-lazy": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-local/node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/locate-path": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/path-exists": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/pkg-dir": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "license": "ISC" - }, - "node_modules/inquirer": { - "version": "8.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/interface-blockstore": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "interface-store": "^3.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/interface-datastore": { - "version": "7.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "interface-store": "^3.0.0", - "nanoid": "^4.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/interface-datastore/node_modules/nanoid": { - "version": "4.0.0", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/interface-datastore/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/interface-store": { - "version": "3.0.4", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/internal-slot": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/interpret": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/ip": { - "version": "1.1.5", - "license": "MIT" - }, - "node_modules/ip-regex": { - "version": "4.3.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/ipfs": { - "version": "0.66.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "ipfs-cli": "^0.16.0", - "ipfs-core": "^0.18.0", - "semver": "^7.3.2", - "update-notifier": "^6.0.0" - }, - "bin": { - "jsipfs": "src/cli.js" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "optionalDependencies": { - "electron-webrtc": "^0.3.0", - "wrtc": "^0.4.6" - } - }, - "node_modules/ipfs-bitswap": { - "version": "15.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/topology": "^4.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@vascosantos/moving-average": "^1.1.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "blockstore-core": "^3.0.0", - "interface-blockstore": "^4.0.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "just-debounce-it": "^3.0.1", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "readable-stream": "^4.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0", - "varint-decoder": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/ipfs-bitswap/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/ipfs-bitswap/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-bitswap/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/readable-stream": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli": { - "version": "0.16.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "byteman": "^1.3.5", - "execa": "^6.1.0", - "get-folder-size": "^4.0.0", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-daemon": "^0.16.0", - "ipfs-http-client": "^60.0.0", - "ipfs-utils": "^9.0.13", - "it-concat": "^3.0.1", - "it-merge": "^2.0.0", - "it-pipe": "^2.0.3", - "it-split": "^2.0.0", - "it-tar": "^6.0.0", - "jsondiffpatch": "^0.4.1", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "pretty-bytes": "^6.0.0", - "progress": "^2.0.3", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2", - "yargs": "^17.4.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/execa": { - "version": "6.1.0", - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/ipfs-cli/node_modules/human-signals": { - "version": "3.0.1", - "license": "Apache-2.0", - "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/ipfs-cli/node_modules/is-stream": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/mimic-fn": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/npm-run-path": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/onetime": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/path-key": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/strip-final-newline": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core": { - "version": "0.18.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@chainsafe/libp2p-noise": "^11.0.0", - "@ipld/car": "^5.0.0", - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/bootstrap": "^6.0.0", - "@libp2p/crypto": "^1.0.0", - "@libp2p/delegated-content-routing": "^4.0.0", - "@libp2p/delegated-peer-routing": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.6", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/kad-dht": "^7.0.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/mplex": "^7.1.1", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/websockets": "^5.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.1.5", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "@multiformats/murmur3": "^2.0.0", - "any-signal": "^3.0.0", - "array-shuffle": "^3.0.0", - "blockstore-core": "^3.0.0", - "browser-readablestream-to-it": "^2.0.0", - "dag-jose": "^4.0.0", - "datastore-core": "^8.0.1", - "datastore-pubsub": "^7.0.0", - "dlv": "^1.1.3", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "hashlru": "^2.3.0", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-bitswap": "^15.0.0", - "ipfs-core-config": "^0.7.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-client": "^60.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-unixfs-exporter": "^10.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "ipfs-utils": "^9.0.9", - "ipns": "^5.0.1", - "is-domain-name": "^1.0.1", - "is-ipfs": "^8.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-tar": "^6.0.0", - "it-to-buffer": "^3.0.0", - "just-safe-set": "^4.0.2", - "libp2p": "^0.42.0", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "pako": "^2.0.4", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config": { - "version": "0.7.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@chainsafe/libp2p-gossipsub": "^6.0.0", - "@libp2p/floodsub": "^6.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/mdns": "^6.0.0", - "@libp2p/prometheus-metrics": "^1.0.1", - "@libp2p/tcp": "^6.0.2", - "@libp2p/webrtc-star": "^6.0.0", - "blockstore-datastore-adapter": "^5.0.0", - "datastore-core": "^8.0.1", - "datastore-fs": "^8.0.0", - "datastore-level": "^9.0.0", - "err-code": "^3.0.1", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-utils": "^9.0.13", - "is-ipfs": "^8.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-foreach": "^1.0.0", - "p-queue": "^7.2.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-core-config/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types": { - "version": "0.14.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/node": "^18.0.0", - "interface-datastore": "^7.0.0", - "ipfs-unixfs": "^9.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types/node_modules/@types/node": { - "version": "18.11.19", - "license": "MIT" - }, - "node_modules/ipfs-core-utils": { - "version": "0.18.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "any-signal": "^3.0.0", - "blob-to-it": "^2.0.0", - "browser-readablestream-to-it": "^2.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-utils": "^9.0.13", - "it-all": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "nanoid": "^4.0.0", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-utils/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-utils/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-utils/node_modules/nanoid": { - "version": "4.0.1", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/ipfs-core-utils/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-daemon": { - "version": "0.16.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "@libp2p/webrtc-star": "^6.0.0", - "@mapbox/node-pre-gyp": "^1.0.5", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-server": "^0.12.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-http-server": "^0.15.0", - "ipfs-utils": "^9.0.13", - "libp2p": "^0.42.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "optionalDependencies": { - "electron-webrtc": "^0.3.0", - "prom-client": "^14.0.1", - "wrtc": "^0.4.6" - } - }, - "node_modules/ipfs-grpc-protocol": { - "version": "0.8.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server": { - "version": "0.12.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@grpc/grpc-js": "^1.1.8", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "change-case": "^4.1.1", - "coercer": "^1.1.2", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-protocol": "^0.8.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "nanoid": "^4.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "ws": "^8.5.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-grpc-server/node_modules/nanoid": { - "version": "4.0.1", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/ipfs-grpc-server/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client": { - "version": "60.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "any-signal": "^3.0.0", - "dag-jose": "^4.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-utils": "^9.0.13", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-gateway": { - "version": "0.13.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/logger": "^2.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-http-response": "^6.0.0", - "is-ipfs": "^8.0.0", - "it-last": "^2.0.0", - "it-to-stream": "^1.0.0", - "joi": "^17.2.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-gateway/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-response": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "ejs": "^3.1.6", - "file-type": "^18.0.0", - "filesize": "^10.0.5", - "it-map": "^2.0.0", - "it-reader": "^6.0.1", - "it-to-stream": "^1.0.0", - "mime-types": "^2.1.30", - "p-try-each": "^1.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-response/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server": { - "version": "0.15.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@hapi/boom": "^9.1.0", - "@hapi/content": "^5.0.2", - "@hapi/hapi": "^20.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "any-signal": "^3.0.0", - "dlv": "^1.1.3", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-multipart": "^3.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reduce": "^2.0.0", - "joi": "^17.2.1", - "just-safe-set": "^4.0.2", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "stream-to-it": "^0.2.2", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "optionalDependencies": { - "prom-client": "^14.0.1" - } - }, - "node_modules/ipfs-http-server/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-log": { - "version": "5.4.2", - "license": "MIT", - "dependencies": { - "json-stringify-deterministic": "^1.0.1", - "multihashing-async": "^2.0.1", - "orbit-db-identity-provider": "^0.3.1", - "orbit-db-io": "^1.1.2", - "p-do-whilst": "^1.1.0", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-whilst": "^2.1.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/ipfs-log/node_modules/iso-random-stream": { - "version": "1.1.2", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ipfs-log/node_modules/libp2p-crypto": { - "version": "0.16.4", - "license": "MIT", - "dependencies": { - "asmcrypto.js": "^2.3.2", - "asn1.js": "^5.0.1", - "async": "^2.6.1", - "bn.js": "^4.11.8", - "browserify-aes": "^1.2.0", - "bs58": "^4.0.1", - "iso-random-stream": "^1.1.0", - "keypair": "^1.0.1", - "libp2p-crypto-secp256k1": "~0.3.0", - "multihashing-async": "~0.5.1", - "node-forge": "^0.10.0", - "pem-jwk": "^2.0.0", - "protons": "^1.0.1", - "rsa-pem-to-jwk": "^1.1.3", - "tweetnacl": "^1.0.0", - "ursa-optional": "~0.10.0" - }, - "engines": { - "node": ">=10.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/ipfs-log/node_modules/libp2p-crypto/node_modules/multihashing-async": { - "version": "0.5.2", - "license": "MIT", - "dependencies": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - }, - "engines": { - "node": ">=6.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/ipfs-log/node_modules/multibase": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/ipfs-log/node_modules/multibase/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/ipfs-log/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/ipfs-log/node_modules/multihashes": { - "version": "0.4.21", - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "node_modules/ipfs-log/node_modules/multihashes/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/ipfs-log/node_modules/orbit-db-identity-provider": { - "version": "0.3.1", - "license": "MIT", - "dependencies": { - "ethers": "^5.0.8", - "orbit-db-keystore": "~0.3.5" - } - }, - "node_modules/ipfs-log/node_modules/orbit-db-io": { - "version": "1.1.2", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/ipfs-log/node_modules/orbit-db-keystore": { - "version": "0.3.5", - "license": "MIT", - "dependencies": { - "elliptic": "^6.5.3", - "level": "~5.0.1", - "leveldown": "~5.1.1", - "levelup": "~4.1.0", - "libp2p-crypto": "^0.16.0", - "libp2p-crypto-secp256k1": "^0.3.0", - "lru": "^3.1.0", - "mkdirp": "^0.5.5", - "safe-buffer": "^5.2.1" - } - }, - "node_modules/ipfs-log/node_modules/tweetnacl": { - "version": "1.0.3", - "license": "Unlicense" - }, - "node_modules/ipfs-log/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/ipfs-pubsub-1on1": { - "version": "0.1.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.1" - } - }, - "node_modules/ipfs-pubsub-peer-monitor": { - "version": "0.0.10", - "license": "MIT", - "dependencies": { - "p-forever": "^2.1.0" - } - }, - "node_modules/ipfs-repo": { - "version": "17.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "bytes": "^3.1.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-repo-migrations": "^15.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "just-safe-get": "^4.1.1", - "just-safe-set": "^4.1.1", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "proper-lockfile": "^4.0.0", - "quick-lru": "^6.1.1", - "sort-keys": "^5.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo-migrations": { - "version": "15.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "fnv1a": "^1.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-length": "^2.0.0", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo-migrations/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo-migrations/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-repo-migrations/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-repo-migrations/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-parallel-batch": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-batch": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-repo/node_modules/quick-lru": { - "version": "6.1.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-repo/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "err-code": "^3.0.1", - "protobufjs": "^7.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter": { - "version": "10.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer": { - "version": "12.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-batch": "^2.0.0", - "it-first": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "rabin-wasm": "^0.1.4", - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/it-parallel-batch": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-batch": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-unixfs/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-utils": { - "version": "9.0.14", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "any-signal": "^3.0.0", - "browser-readablestream-to-it": "^1.0.0", - "buffer": "^6.0.1", - "electron-fetch": "^1.7.2", - "err-code": "^3.0.1", - "is-electron": "^2.2.0", - "iso-url": "^1.1.5", - "it-all": "^1.0.4", - "it-glob": "^1.0.1", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "nanoid": "^3.1.20", - "native-fetch": "^3.0.0", - "node-fetch": "^2.6.8", - "react-native-fetch-api": "^3.0.0", - "stream-to-it": "^0.2.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-utils/node_modules/browser-readablestream-to-it": { - "version": "1.0.3", - "license": "ISC" - }, - "node_modules/ipfsd-ctl": { - "version": "12.2.2", - "license": "Apache-2.0 OR MIT", - "peer": true, - "dependencies": { - "@hapi/boom": "^10.0.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/interface-peer-id": "^1.0.4", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "execa": "^6.1.0", - "ipfs-utils": "^9.0.1", - "joi": "^17.2.1", - "merge-options": "^3.0.1", - "nanoid": "^4.0.0", - "p-wait-for": "^5.0.0", - "temp-write": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfsd-ctl/node_modules/@hapi/boom": { - "version": "10.0.0", - "license": "BSD-3-Clause", - "peer": true, - "dependencies": { - "@hapi/hoek": "10.x.x" - } - }, - "node_modules/ipfsd-ctl/node_modules/@hapi/hoek": { - "version": "10.0.1", - "license": "BSD-3-Clause", - "peer": true - }, - "node_modules/ipfsd-ctl/node_modules/execa": { - "version": "6.1.0", - "license": "MIT", - "peer": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/ipfsd-ctl/node_modules/human-signals": { - "version": "3.0.1", - "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/ipfsd-ctl/node_modules/is-stream": { - "version": "3.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/mimic-fn": { - "version": "4.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/nanoid": { - "version": "4.0.0", - "license": "MIT", - "peer": true, - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/ipfsd-ctl/node_modules/npm-run-path": { - "version": "5.1.0", - "license": "MIT", - "peer": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/onetime": { - "version": "6.0.0", - "license": "MIT", - "peer": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/path-key": { - "version": "4.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/strip-final-newline": { - "version": "3.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "peer": true, - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipns": { - "version": "5.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "cborg": "^1.3.3", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "timestamp-nano": "^1.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipns/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipns/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "dev": true, - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "2.0.5", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/is-callable": { - "version": "1.2.4", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.8.0", - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-domain-name": { - "version": "1.0.1", - "license": "ISC" - }, - "node_modules/is-electron": { - "version": "2.2.1", - "license": "MIT" - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "license": "MIT", - "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-ip": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "ip-regex": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-ipfs": { - "version": "8.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "iso-url": "^1.1.3", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/is-ipfs/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/is-nan": { - "version": "1.3.2", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-node": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-npm": { - "version": "6.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.6", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-obj": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-promise": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-regexp": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.1", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-subset": { - "version": "0.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.8", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array/node_modules/es-abstract": { - "version": "1.19.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-weakref": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-yarn-global": { - "version": "0.4.1", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/iso-constants": { - "version": "0.1.2", - "hasInstallScript": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/iso-random-stream": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "events": "^3.3.0", - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/iso-url": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "license": "MIT", - "optional": true - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.5", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/it-all": { - "version": "1.0.6", - "license": "ISC" - }, - "node_modules/it-batch": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-batched-bytes": { - "version": "1.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.4.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-batched-bytes/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-concat": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-concat/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-drain": { - "version": "1.0.5", - "license": "ISC" - }, - "node_modules/it-filter": { - "version": "1.0.3", - "license": "ISC" - }, - "node_modules/it-first": { - "version": "1.0.7", - "license": "ISC" - }, - "node_modules/it-foreach": { - "version": "1.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-glob": { - "version": "1.0.2", - "license": "ISC", - "dependencies": { - "@types/minimatch": "^3.0.4", - "minimatch": "^3.0.4" - } - }, - "node_modules/it-handshake": { - "version": "4.1.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-handshake/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/it-handshake/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-last": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-length": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-length-prefixed": { - "version": "8.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "err-code": "^3.0.1", - "it-stream-types": "^1.0.4", - "uint8-varint": "^1.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-length-prefixed/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-map": { - "version": "1.0.6", - "license": "ISC" - }, - "node_modules/it-merge": { - "version": "1.0.4", - "license": "ISC", - "dependencies": { - "it-pushable": "^1.4.0" - } - }, - "node_modules/it-multipart": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "formidable": "^2.0.1", - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-multipart/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pair": { - "version": "2.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-stream-types": "^1.0.3", - "p-defer": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pair/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-parallel": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "p-defer": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-parallel-batch": { - "version": "1.0.11", - "license": "ISC", - "dependencies": { - "it-batch": "^1.0.9" - } - }, - "node_modules/it-parallel-batch/node_modules/it-batch": { - "version": "1.0.9", - "license": "ISC" - }, - "node_modules/it-parallel/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-pb-stream": { - "version": "2.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-peekable": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pipe": { - "version": "2.0.5", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-merge": "^2.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.3" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pipe/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pipe/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pushable": { - "version": "1.4.2", - "license": "MIT", - "dependencies": { - "fast-fifo": "^1.0.0" - } - }, - "node_modules/it-reader": { - "version": "6.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-reduce": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-sort": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-all": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-sort/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-split": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arraylist": "^2.4.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-stream-types": { - "version": "1.0.4", - "license": "Apache-2.0 OR MIT" - }, - "node_modules/it-take": { - "version": "1.0.2", - "license": "ISC" - }, - "node_modules/it-tar": { - "version": "6.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "iso-constants": "^0.1.2", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "it-to-buffer": "^3.0.0", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-tar/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-tar/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-to-buffer": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-to-buffer/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-to-stream": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "fast-fifo": "^1.0.0", - "get-iterator": "^1.0.2", - "p-defer": "^3.0.0", - "p-fifo": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "node_modules/it-ws": { - "version": "5.0.6", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "event-iterator": "^2.0.0", - "iso-url": "^1.1.2", - "it-stream-types": "^1.0.2", - "uint8arrays": "^4.0.2", - "ws": "^8.4.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-ws/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-ws/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/iterare": { - "version": "1.2.1", - "license": "ISC", - "engines": { - "node": ">=6" - } - }, - "node_modules/jake": { - "version": "10.8.5", - "license": "Apache-2.0", - "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, - "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jake/node_modules/async": { - "version": "3.2.4", - "license": "MIT" - }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/jake/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/core": "^29.4.2", - "@jest/types": "^29.4.2", - "import-local": "^3.0.2", - "jest-cli": "^29.4.2" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-changed-files": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-changed-files/node_modules/yocto-queue": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-circus": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "p-limit": "^3.1.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-circus/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-circus/node_modules/yocto-queue": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-cli": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/core": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.4.2", - "@jest/types": "^29.4.2", - "babel-jest": "^29.4.2", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-config/node_modules/parse-json": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-config/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-docblock": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "jest-util": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-each/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-environment-node": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-get-type": { - "version": "27.5.1", - "license": "MIT", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-haste-map": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/jest-leak-detector": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-leak-detector/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-matcher-utils/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.4.2", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/@babel/code-frame": { - "version": "7.18.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-message-util/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-mock": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "license": "MIT", - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-regex-util": "^29.4.2", - "jest-snapshot": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-resolve/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-resolve/node_modules/resolve.exports": { - "version": "2.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.4.2", - "@jest/environment": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-leak-detector": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-util": "^29.4.2", - "jest-watcher": "^29.4.2", - "jest-worker": "^29.4.2", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/buffer-from": { - "version": "1.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner/node_modules/yocto-queue": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-runtime": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/globals": "^29.4.2", - "@jest/source-map": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "semver": "^7.3.5", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/strip-bom": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "natural-compare": "^1.4.0", - "pretty-format": "^29.4.2", - "semver": "^7.3.5" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-snapshot/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "leven": "^3.1.0", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate/node_modules/jest-get-type": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/leven": { - "version": "3.1.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/jest-validate/node_modules/pretty-format": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/react-is": { - "version": "18.2.0", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.4.2", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "jest-util": "^29.4.2", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jmespath": { - "version": "0.15.0", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/joi": { - "version": "17.8.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/address": "^5.1.0", - "@hapi/formula": "^3.0.2", - "@hapi/hoek": "^11.0.2", - "@hapi/pinpoint": "^2.0.1", - "@hapi/tlds": "^1.0.1", - "@hapi/topo": "^6.0.1" - } - }, - "node_modules/joi/node_modules/@hapi/hoek": { - "version": "11.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/joi/node_modules/@hapi/topo": { - "version": "6.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^11.0.2" - } - }, - "node_modules/joycon": { - "version": "2.2.5", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/js-sha3": { - "version": "0.8.0", - "license": "MIT" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/jsesc": { - "version": "2.5.2", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "license": "MIT" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "license": "(AFL-2.1 OR BSD-3-Clause)", - "optional": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "license": "MIT" - }, - "node_modules/json-stringify-deterministic": { - "version": "1.0.8", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "license": "ISC", - "optional": true - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jsondiffpatch": { - "version": "0.4.1", - "license": "MIT", - "dependencies": { - "chalk": "^2.3.0", - "diff-match-patch": "^1.0.0" - }, - "bin": { - "jsondiffpatch": "bin/jsondiffpatch" - }, - "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/jsonfile": { - "version": "2.4.0", - "license": "MIT", - "optional": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/just-debounce-it": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/just-safe-get": { - "version": "4.2.0", - "license": "MIT" - }, - "node_modules/just-safe-set": { - "version": "4.2.1", - "license": "MIT" - }, - "node_modules/k-bucket": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/keypair": { - "version": "1.0.4", - "license": "BSD / GPL" - }, - "node_modules/keyv": { - "version": "4.5.2", - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/klaw": { - "version": "1.3.1", - "license": "MIT", - "optional": true, - "optionalDependencies": { - "graceful-fs": "^4.1.9" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/latest-version": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "package-json": "^8.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/level": { - "version": "8.0.0", - "license": "MIT", - "dependencies": { - "browser-level": "^1.0.1", - "classic-level": "^1.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/level" - } - }, - "node_modules/level-concat-iterator": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "catering": "^2.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/level-errors": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "errno": "~0.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/level-iterator-stream": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.4.0", - "xtend": "^4.0.2" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/level-supports": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/level-transcoder": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "module-error": "^1.0.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/leveldown": { - "version": "6.1.1", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "abstract-leveldown": "^7.2.0", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/levelup": { - "version": "4.1.0", - "license": "MIT", - "dependencies": { - "deferred-leveldown": "~5.1.0", - "level-errors": "~2.0.0", - "level-iterator-stream": "~4.0.0", - "xtend": "~4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/leven": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/libp2p": { - "version": "0.42.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@achingbrain/nat-port-mapper": "^1.0.3", - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-encrypter": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-libp2p": "^1.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-routing": "^1.0.1", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/multistream-select": "^3.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/peer-store": "^6.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-foreach": "^1.0.0", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-pair": "^2.0.2", - "it-pipe": "^2.0.3", - "it-sort": "^2.0.0", - "it-stream-types": "^1.0.4", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "node-forge": "^1.3.1", - "p-fifo": "^1.0.0", - "p-retry": "^5.0.0", - "p-settle": "^5.0.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "rate-limiter-flexible": "^2.3.11", - "retimer": "^3.0.0", - "sanitize-filename": "^1.6.3", - "set-delayed-interval": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2", - "wherearewe": "^2.0.0", - "xsalsa20": "^1.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p-crypto": { - "version": "0.21.2", - "license": "MIT", - "dependencies": { - "@noble/ed25519": "^1.5.1", - "@noble/secp256k1": "^1.3.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.0", - "multiformats": "^9.4.5", - "node-forge": "^1.2.1", - "protobufjs": "^6.11.2", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1": { - "version": "0.3.1", - "license": "MIT", - "dependencies": { - "async": "^2.6.2", - "bs58": "^4.0.1", - "multihashing-async": "~0.6.0", - "nodeify": "^1.0.1", - "safe-buffer": "^5.1.2", - "secp256k1": "^3.6.2" - }, - "engines": { - "node": ">=6.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/multibase": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/multihashes": { - "version": "0.4.21", - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/multihashing-async": { - "version": "0.6.0", - "license": "MIT", - "dependencies": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - }, - "engines": { - "node": ">=6.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/secp256k1": { - "version": "3.8.0", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "bindings": "^1.5.0", - "bip66": "^1.1.5", - "bn.js": "^4.11.8", - "create-hash": "^1.2.0", - "drbg.js": "^1.0.1", - "elliptic": "^6.5.2", - "nan": "^2.14.0", - "safe-buffer": "^5.1.2" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/libp2p-crypto/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/libp2p-crypto/node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/libp2p/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/@libp2p/peer-record": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/libp2p/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/libp2p/node_modules/ip-regex": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/libp2p/node_modules/ipaddr.js": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/libp2p/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/libp2p/node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/libp2p/node_modules/private-ip": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/libp2p/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libphonenumber-js": { - "version": "1.9.44", - "license": "MIT" - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "dev": true, - "license": "MIT" - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "license": "MIT", - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "2.0.4", - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/loader-utils/node_modules/json5": { - "version": "2.2.3", - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "license": "MIT" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "license": "MIT" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "dev": true, - "license": "MIT" - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/logplease": { - "version": "1.2.15", - "license": "MIT" - }, - "node_modules/long": { - "version": "4.0.0", - "license": "Apache-2.0" - }, - "node_modules/longbits": { - "version": "1.1.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "byte-access": "^1.0.1", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lru": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/luxon": { - "version": "1.28.0", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/macos-release": { - "version": "2.5.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/magic-string": { - "version": "0.30.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "dev": true, - "license": "ISC" - }, - "node_modules/makeerror": { - "version": "1.0.12", - "license": "BSD-3-Clause", - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", - "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/memfs": { - "version": "3.5.3", - "dev": true, - "license": "Unlicense", - "dependencies": { - "fs-monkey": "^1.0.4" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/merge-options": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "is-plain-obj": "^2.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/methods": { - "version": "1.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "4.0.4", - "license": "MIT", - "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.51.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.34", - "license": "MIT", - "dependencies": { - "mime-db": "1.51.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "license": "ISC" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/minimatch": { - "version": "3.0.4", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "4.2.8", - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "license": "MIT", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/mkdirp": { - "version": "0.5.5", - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/mock-fs": { - "version": "5.1.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/module-error": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/mortice": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "nanoid": "^4.0.0", - "observable-webworkers": "^2.0.1", - "p-queue": "^7.2.0", - "p-timeout": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/mortice/node_modules/nanoid": { - "version": "4.0.0", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/mortice/node_modules/p-queue": { - "version": "7.3.0", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mortice/node_modules/p-queue/node_modules/p-timeout": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mortice/node_modules/p-timeout": { - "version": "6.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mri": { - "version": "1.1.4", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/multer": { - "version": "1.4.4-lts.1", - "license": "MIT", - "dependencies": { - "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", - "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/multiaddr": { - "version": "10.0.1", - "license": "MIT", - "dependencies": { - "dns-over-http-resolver": "^1.2.3", - "err-code": "^3.0.1", - "is-ip": "^3.1.0", - "multiformats": "^9.4.5", - "uint8arrays": "^3.0.0", - "varint": "^6.0.0" - } - }, - "node_modules/multiaddr/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/multibase": { - "version": "4.0.6", - "license": "MIT", - "dependencies": { - "@multiformats/base-x": "^4.0.1" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "license": "MIT", - "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" - } - }, - "node_modules/multiformats": { - "version": "11.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/multihashes": { - "version": "4.0.3", - "license": "MIT", - "dependencies": { - "multibase": "^4.0.1", - "uint8arrays": "^3.0.0", - "varint": "^5.0.2" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/multihashes/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/multihashing-async": { - "version": "2.1.4", - "license": "MIT", - "dependencies": { - "blakejs": "^1.1.0", - "err-code": "^3.0.0", - "js-sha3": "^0.8.0", - "multihashes": "^4.0.1", - "murmurhash3js-revisited": "^3.0.0", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/murmurhash3js": { - "version": "3.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/murmurhash3js-revisited": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "dev": true, - "license": "ISC" - }, - "node_modules/nan": { - "version": "2.17.0", - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.4", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/napi-macros": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/native-fetch": { - "version": "3.0.0", - "license": "MIT", - "peerDependencies": { - "node-fetch": "*" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/ndjson": { - "version": "1.5.0", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "json-stringify-safe": "^5.0.1", - "minimist": "^1.2.0", - "split2": "^2.1.0", - "through2": "^2.0.3" - }, - "bin": { - "ndjson": "cli.js" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "license": "MIT" - }, - "node_modules/netmask": { - "version": "2.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/nice-try": { - "version": "1.0.5", - "dev": true, - "license": "MIT" - }, - "node_modules/no-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/node-addon-api": { - "version": "2.0.2", - "license": "MIT" - }, - "node_modules/node-emoji": { - "version": "1.11.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash": "^4.17.21" - } - }, - "node_modules/node-fetch": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-forge": { - "version": "0.10.0", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/node-gyp-build": { - "version": "4.3.0", - "license": "MIT", - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "1.1.77", - "license": "MIT" - }, - "node_modules/nodeify": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "is-promise": "~1.0.0", - "promise": "~1.3.0" - } - }, - "node_modules/nopt": { - "version": "5.0.0", - "license": "ISC", - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npmlog": { - "version": "5.0.1", - "license": "ISC", - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "node_modules/nugget": { - "version": "2.2.0", - "license": "BSD", - "optional": true, - "dependencies": { - "debug": "^2.1.3", - "minimist": "^1.1.0", - "pretty-bytes": "^4.0.2", - "progress-stream": "^1.1.0", - "request": "^2.45.0", - "single-line-log": "^1.1.2", - "throttleit": "0.0.2" - }, - "bin": { - "nugget": "bin.js" - } - }, - "node_modules/nugget/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/nugget/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/nugget/node_modules/pretty-bytes": { - "version": "4.0.2", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.11.1", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.5", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "0.4.0", - "license": "MIT", - "optional": true - }, - "node_modules/object.assign": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.assign/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/observable-webworkers": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/opener": { - "version": "1.5.2", - "license": "(WTFPL OR MIT)", - "bin": { - "opener": "bin/opener-bin.js" - } - }, - "node_modules/optimist": { - "version": "0.3.7", - "license": "MIT/X11", - "dependencies": { - "wordwrap": "~0.0.2" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ora/node_modules/bl": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/ora/node_modules/buffer": { - "version": "5.7.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/orbit-db": { - "version": "0.29.0", - "license": "MIT", - "dependencies": { - "ipfs-pubsub-1on1": "^0.1.0", - "is-node": "^1.0.2", - "logplease": "^1.2.15", - "orbit-db-access-controllers": "^0.4.0", - "orbit-db-cache": "^0.5.0", - "orbit-db-counterstore": "^2.0.0", - "orbit-db-docstore": "^2.0.0", - "orbit-db-eventstore": "^2.0.0", - "orbit-db-feedstore": "^2.0.0", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "orbit-db-keystore": "^2.0.0", - "orbit-db-kvstore": "^2.0.0", - "orbit-db-pubsub": "^0.7.0", - "orbit-db-storage-adapter": "^0.9.0", - "orbit-db-store": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/orbit-db-access-controllers": { - "version": "0.4.0", - "license": "MIT", - "dependencies": { - "orbit-db-io": "^3.0.0", - "p-map-series": "^3.0.0", - "safe-buffer": "^5.2.1" - } - }, - "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-pb": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db-access-controllers/node_modules/orbit-db-io": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/orbit-db-identity-provider": { - "version": "0.5.0", - "license": "MIT", - "dependencies": { - "@ethersproject/wallet": "^5.7.0", - "assert": "^2.0.0", - "dids": "^3.4.0", - "lru": "^3.1.0", - "orbit-db-keystore": "^2.0.0", - "path-browserify": "^1.0.1", - "stream-browserify": "^3.0.0", - "uint8arrays": "^4.0.3" - } - }, - "node_modules/orbit-db-identity-provider/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db-io": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/orbit-db-io/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/orbit-db-keystore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "elliptic": "^6.5.4", - "level": "^8.0.0", - "lru": "^3.1.0", - "mkdirp": "^2.1.1", - "safe-buffer": "^5.2.1", - "secp256k1": "^5.0.0" - } - }, - "node_modules/orbit-db-keystore/node_modules/mkdirp": { - "version": "2.1.6", - "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/orbit-db-keystore/node_modules/node-addon-api": { - "version": "5.1.0", - "license": "MIT" - }, - "node_modules/orbit-db-keystore/node_modules/secp256k1": { - "version": "5.0.0", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "elliptic": "^6.5.4", - "node-addon-api": "^5.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/orbit-db-pubsub": { - "version": "0.6.0", - "license": "MIT", - "dependencies": { - "ipfs-pubsub-peer-monitor": "~0.0.5", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "node_modules/orbit-db-storage-adapter": { - "version": "0.9.0", - "license": "MIT", - "dependencies": { - "level": "^8.0.0", - "mkdirp": "^2.1.1" - } - }, - "node_modules/orbit-db-storage-adapter/node_modules/mkdirp": { - "version": "2.1.3", - "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/orbit-db-store": { - "version": "4.3.4", - "license": "MIT", - "dependencies": { - "ipfs-log": "^5.4.1", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.14", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-queue": "^6.6.2", - "readable-stream": "~3.6.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "orbit-db-io": "*" - } - }, - "node_modules/orbit-db-store/node_modules/p-queue": { - "version": "6.6.2", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db-store/node_modules/p-timeout": { - "version": "3.2.0", - "license": "MIT", - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/orbit-db/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db/node_modules/aggregate-error": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/clean-stack": { - "version": "4.2.0", - "license": "MIT", - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/crdts": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/orbit-db/node_modules/escape-string-regexp": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/indent-string": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/ipfs-log": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "json-stringify-deterministic": "^1.0.8", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "p-do-whilst": "^2.0.0", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-whilst": "^3.0.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/orbit-db/node_modules/ipfs-log/node_modules/p-map": { - "version": "5.5.0", - "license": "MIT", - "dependencies": { - "aggregate-error": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-cache": { - "version": "0.5.0", - "license": "MIT", - "dependencies": { - "logplease": "~1.2.15" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-counterstore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "crdts": "^0.2.0" - }, - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-docstore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "p-map": "~1.1.1" - }, - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-eventstore": { - "version": "2.0.0", - "license": "MIT", - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-feedstore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "orbit-db-eventstore": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-io": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-kvstore": { - "version": "2.0.0", - "license": "MIT", - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-pubsub": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "ipfs-pubsub-peer-monitor": "^0.1.0", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-store": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "ipfs-log": "^6.0.0", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.15", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-queue": "^7.3.0", - "readable-stream": "~4.3.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "orbit-db-io": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-store/node_modules/p-map": { - "version": "5.5.0", - "license": "MIT", - "dependencies": { - "aggregate-error": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/p-do-whilst": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/p-each-series": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/p-map": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/orbit-db/node_modules/p-whilst": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/readable-stream": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/orbit-db/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/os-name": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "macos-release": "^2.5.0", - "windows-release": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-defer": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-do-whilst": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-each-series": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-event": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "p-timeout": "^5.0.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-fifo": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "fast-fifo": "^1.0.0", - "p-defer": "^3.0.0" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-forever": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map-series": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-queue": { - "version": "7.3.4", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-reduce": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-reflect": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-retry": { - "version": "5.1.1", - "license": "MIT", - "dependencies": { - "@types/retry": "0.12.1", - "retry": "^0.13.1" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-retry/node_modules/retry": { - "version": "0.13.1", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/p-series": { - "version": "1.1.0", - "license": "MIT", - "dependencies": { - "@sindresorhus/is": "^0.7.0", - "p-reduce": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-series/node_modules/@sindresorhus/is": { - "version": "0.7.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-settle": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "p-limit": "^4.0.0", - "p-reflect": "^3.1.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-settle/node_modules/p-limit": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-timeout": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/p-try-each": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/p-wait-for": { - "version": "5.0.0", - "license": "MIT", - "peer": true, - "dependencies": { - "p-timeout": "^6.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-wait-for/node_modules/p-timeout": { - "version": "6.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-whilst": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/package-json": { - "version": "8.1.0", - "license": "MIT", - "dependencies": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/@sindresorhus/is": { - "version": "5.3.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/package-json/node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "defer-to-connect": "^2.0.1" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/package-json/node_modules/cacheable-lookup": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/package-json/node_modules/cacheable-request": { - "version": "10.2.3", - "license": "MIT", - "dependencies": { - "@types/http-cache-semantics": "^4.0.1", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.0", - "keyv": "^4.5.2", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/package-json/node_modules/got": { - "version": "12.5.3", - "license": "MIT", - "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.1", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/package-json/node_modules/http2-wrapper": { - "version": "2.2.0", - "license": "MIT", - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/package-json/node_modules/lowercase-keys": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/mimic-response": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/normalize-url": { - "version": "8.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/p-cancelable": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12.20" - } - }, - "node_modules/package-json/node_modules/responselike": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "lowercase-keys": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pako": { - "version": "2.1.0", - "license": "(MIT AND Zlib)" - }, - "node_modules/param-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-duration": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/path-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-exists": { - "version": "2.1.0", - "license": "MIT", - "optional": true, - "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.9.2", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^9.1.1", - "minipass": "^5.0.0 || ^6.0.2" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "9.1.2", - "dev": true, - "license": "ISC", - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/path-scurry/node_modules/minipass": { - "version": "6.0.2", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/path-to-regexp": { - "version": "2.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/peek-readable": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/peer-id": { - "version": "0.16.0", - "license": "MIT", - "dependencies": { - "class-is": "^1.1.0", - "libp2p-crypto": "^0.21.0", - "multiformats": "^9.4.5", - "protobufjs": "^6.10.2", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=15.0.0" - } - }, - "node_modules/peer-id/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/pem-jwk": { - "version": "2.0.0", - "license": "MPL-2.0", - "dependencies": { - "asn1.js": "^5.0.1" - }, - "bin": { - "pem-jwk": "bin/pem-jwk.js" - }, - "engines": { - "node": ">=5.10.0" - } - }, - "node_modules/pend": { - "version": "1.2.0", - "license": "MIT", - "optional": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "license": "MIT", - "optional": true - }, - "node_modules/picomatch": { - "version": "2.3.0", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "license": "MIT", - "optional": true, - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pino": { - "version": "6.14.0", - "license": "MIT", - "dependencies": { - "fast-redact": "^3.0.0", - "fast-safe-stringify": "^2.0.8", - "flatstr": "^1.0.12", - "pino-std-serializers": "^3.1.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "sonic-boom": "^1.0.2" - }, - "bin": { - "pino": "bin.js" - } - }, - "node_modules/pino-pretty": { - "version": "4.8.0", - "license": "MIT", - "dependencies": { - "@hapi/bourne": "^2.0.0", - "args": "^5.0.1", - "chalk": "^4.0.0", - "dateformat": "^4.5.1", - "fast-safe-stringify": "^2.0.7", - "jmespath": "^0.15.0", - "joycon": "^2.2.5", - "pump": "^3.0.0", - "readable-stream": "^3.6.0", - "rfdc": "^1.3.0", - "split2": "^3.1.1", - "strip-json-comments": "^3.1.1" - }, - "bin": { - "pino-pretty": "bin.js" - } - }, - "node_modules/pino-pretty/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/pino-pretty/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/pino-pretty/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/pino-pretty/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/pino-pretty/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/pino-pretty/node_modules/split2": { - "version": "3.2.2", - "license": "ISC", - "dependencies": { - "readable-stream": "^3.0.0" - } - }, - "node_modules/pino-pretty/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pino-std-serializers": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/pirates": { - "version": "4.0.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkijs": { - "version": "3.0.8", - "license": "BSD-3-Clause", - "dependencies": { - "asn1js": "^3.0.5", - "bytestreamjs": "^2.0.0", - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/platform": { - "version": "1.3.6", - "license": "MIT" - }, - "node_modules/pluralize": { - "version": "8.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/portfinder": { - "version": "1.0.28", - "license": "MIT", - "dependencies": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" - }, - "engines": { - "node": ">= 0.12.0" - } - }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/pretty-bytes": { - "version": "6.1.0", - "license": "MIT", - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pretty-format": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/private-ip": { - "version": "2.3.3", - "license": "MIT", - "dependencies": { - "ip-regex": "^4.3.0", - "ipaddr.js": "^2.0.1", - "is-ip": "^3.1.0", - "netmask": "^2.0.2" - } - }, - "node_modules/private-ip/node_modules/ipaddr.js": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/process": { - "version": "0.11.10", - "license": "MIT", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/process-warning": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/progress": { - "version": "2.0.3", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/progress-stream": { - "version": "1.2.0", - "license": "BSD-2-Clause", - "optional": true, - "dependencies": { - "speedometer": "~0.1.2", - "through2": "~0.2.3" - } - }, - "node_modules/progress-stream/node_modules/isarray": { - "version": "0.0.1", - "license": "MIT", - "optional": true - }, - "node_modules/progress-stream/node_modules/readable-stream": { - "version": "1.1.14", - "license": "MIT", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/progress-stream/node_modules/string_decoder": { - "version": "0.10.31", - "license": "MIT", - "optional": true - }, - "node_modules/progress-stream/node_modules/through2": { - "version": "0.2.3", - "license": "MIT", - "optional": true, - "dependencies": { - "readable-stream": "~1.1.9", - "xtend": "~2.1.1" - } - }, - "node_modules/progress-stream/node_modules/xtend": { - "version": "2.1.2", - "optional": true, - "dependencies": { - "object-keys": "~0.4.0" - }, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/prom-client": { - "version": "14.1.1", - "license": "Apache-2.0", - "dependencies": { - "tdigest": "^0.1.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/promise": { - "version": "1.3.0", - "license": "MIT", - "dependencies": { - "is-promise": "~1" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/proper-lockfile": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "retry": "^0.12.0", - "signal-exit": "^3.0.2" - } - }, - "node_modules/proto-list": { - "version": "1.2.4", - "license": "ISC" - }, - "node_modules/protobufjs": { - "version": "6.11.2", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - }, - "bin": { - "pbjs": "bin/pbjs", - "pbts": "bin/pbts" - } - }, - "node_modules/protocol-buffers-schema": { - "version": "3.6.0", - "license": "MIT" - }, - "node_modules/protons": { - "version": "1.2.1", - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "protocol-buffers-schema": "^3.3.1", - "signed-varint": "^2.0.1", - "varint": "^5.0.0" - } - }, - "node_modules/protons-runtime": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.3.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "peerDependencies": { - "uint8arraylist": "^2.3.2" - } - }, - "node_modules/protons-runtime/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/protons-runtime/node_modules/protobufjs": { - "version": "7.1.2", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/protons/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/protons/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "license": "MIT", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-addr/node_modules/forwarded": { - "version": "0.2.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/prr": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/pseudomap": { - "version": "1.0.2", - "license": "ISC", - "optional": true - }, - "node_modules/psl": { - "version": "1.9.0", - "license": "MIT", - "optional": true - }, - "node_modules/pump": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pupa": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "escape-goat": "^4.0.0" - }, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pvtsutils": { - "version": "1.3.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/pvutils": { - "version": "1.1.3", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/querystring": { - "version": "0.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/queue": { - "version": "6.0.2", - "license": "MIT", - "dependencies": { - "inherits": "~2.0.3" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/quick-format-unescaped": { - "version": "4.0.4", - "license": "MIT" - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rabin-wasm": { - "version": "0.1.5", - "license": "MIT", - "dependencies": { - "@assemblyscript/loader": "^0.9.4", - "bl": "^5.0.0", - "debug": "^4.3.1", - "minimist": "^1.2.5", - "node-fetch": "^2.6.1", - "readable-stream": "^3.6.0" - }, - "bin": { - "rabin-wasm": "cli/bin.js" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/rate-limiter-flexible": { - "version": "2.4.1", - "license": "ISC" - }, - "node_modules/raw-body": { - "version": "2.5.1", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-is": { - "version": "17.0.2", - "license": "MIT" - }, - "node_modules/react-native-fetch-api": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "p-defer": "^3.0.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readable-web-to-node-stream": { - "version": "3.0.2", - "license": "MIT", - "dependencies": { - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "dev": true, - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/receptacle": { - "version": "1.3.2", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/rechoir": { - "version": "0.8.0", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve": "^1.20.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/reflect-metadata": { - "version": "0.1.13", - "license": "Apache-2.0" - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "dev": true, - "license": "MIT" - }, - "node_modules/registry-auth-token": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "@pnpm/npm-conf": "^1.0.4" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/registry-url": { - "version": "6.0.1", - "license": "MIT", - "dependencies": { - "rc": "1.2.8" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/request": { - "version": "2.88.2", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "license": "MIT", - "optional": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/requires-port": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.20.0", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "license": "MIT" - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve.exports": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/retimer": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/retry": { - "version": "0.12.0", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/rfdc": { - "version": "1.3.0", - "license": "MIT" - }, - "node_modules/rimraf": { - "version": "3.0.2", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/rpc-utils": { - "version": "0.6.2", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "nanoid": "^3.3.1" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/rsa-pem-to-jwk": { - "version": "1.1.3", - "license": "Apache 2.0", - "dependencies": { - "object-assign": "^2.0.0", - "rsa-unpack": "0.0.6" - } - }, - "node_modules/rsa-pem-to-jwk/node_modules/object-assign": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rsa-unpack": { - "version": "0.0.6", - "license": "MIT", - "dependencies": { - "optimist": "~0.3.5" - }, - "bin": { - "rsa-unpack": "bin/cmd.js" - } - }, - "node_modules/run-async": { - "version": "2.4.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel-limit": { - "version": "1.1.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/run-script-os": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz", - "integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==", - "dev": true, - "bin": { - "run-os": "index.js", - "run-script-os": "index.js" - } - }, - "node_modules/rxjs": { - "version": "7.8.1", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/sanitize-filename": { - "version": "1.6.3", - "license": "WTFPL OR ISC", - "dependencies": { - "truncate-utf8-bytes": "^1.0.0" - } - }, - "node_modules/sax": { - "version": "1.2.4", - "license": "ISC" - }, - "node_modules/schema-utils": { - "version": "3.2.0", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/scrypt-js": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/secp256k1": { - "version": "4.0.3", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "elliptic": "^6.5.4", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/secure-compare": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/semver": { - "version": "7.3.8", - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-diff": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/send": { - "version": "0.18.0", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "license": "MIT" - }, - "node_modules/sentence-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "license": "MIT", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/set-delayed-interval": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "license": "ISC" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "license": "(MIT AND BSD-3-Clause)", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/shelljs": { - "version": "0.8.5", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/shelljs/node_modules/interpret": { - "version": "1.4.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/shelljs/node_modules/rechoir": { - "version": "0.6.2", - "dev": true, - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "license": "ISC" - }, - "node_modules/signed-varint": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "varint": "~5.0.0" - } - }, - "node_modules/signed-varint/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/single-line-log": { - "version": "1.1.2", - "license": "MIT", - "optional": true, - "dependencies": { - "string-width": "^1.0.1" - } - }, - "node_modules/single-line-log/node_modules/ansi-regex": { - "version": "2.1.1", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/single-line-log/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "license": "MIT", - "optional": true, - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/single-line-log/node_modules/string-width": { - "version": "1.0.2", - "license": "MIT", - "optional": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/single-line-log/node_modules/strip-ansi": { - "version": "3.0.1", - "license": "MIT", - "optional": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "dev": true, - "license": "MIT" - }, - "node_modules/slash": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "license": "MIT", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/snake-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/socket.io": { - "version": "4.6.0", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.4", - "base64id": "~2.0.0", - "debug": "~4.3.2", - "engine.io": "~6.4.0", - "socket.io-adapter": "~2.5.2", - "socket.io-parser": "~4.2.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/socket.io-adapter": { - "version": "2.5.2", - "license": "MIT", - "dependencies": { - "ws": "~8.11.0" - } - }, - "node_modules/socket.io-client": { - "version": "4.5.4", - "license": "MIT", - "dependencies": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.2", - "engine.io-client": "~6.2.3", - "socket.io-parser": "~4.2.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/socket.io-parser": { - "version": "4.2.1", - "license": "MIT", - "dependencies": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/socks": { - "version": "2.6.1", - "license": "MIT", - "dependencies": { - "ip": "^1.1.5", - "smart-buffer": "^4.1.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "agent-base": "^6.0.2", - "debug": "4", - "socks": "^2.3.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/sonic-boom": { - "version": "1.4.1", - "license": "MIT", - "dependencies": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" - } - }, - "node_modules/sort-keys": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "is-plain-obj": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/sort-keys/node_modules/is-plain-obj": { - "version": "4.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/buffer-from": { - "version": "1.1.2", - "license": "MIT" - }, - "node_modules/sparse-array": { - "version": "1.3.2", - "license": "ISC" - }, - "node_modules/speedometer": { - "version": "0.1.4", - "optional": true - }, - "node_modules/split2": { - "version": "2.2.0", - "license": "ISC", - "optional": true, - "dependencies": { - "through2": "^2.0.2" - } - }, - "node_modules/sprintf-js": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/sshpk": { - "version": "1.17.0", - "license": "MIT", - "optional": true, - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sshpk/node_modules/jsbn": { - "version": "0.1.1", - "license": "MIT", - "optional": true - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-to-it": { - "version": "0.2.4", - "license": "MIT", - "dependencies": { - "get-iterator": "^1.0.2" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-length": { - "version": "4.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/string-replace-loader": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "peerDependencies": { - "webpack": "^5" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strtok3": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/sumchecker": { - "version": "1.3.1", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "debug": "^2.2.0", - "es6-promise": "^4.0.5" - } - }, - "node_modules/sumchecker/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/sumchecker/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/super-regex": { - "version": "0.2.0", - "license": "MIT", - "dependencies": { - "clone-regexp": "^3.0.0", - "function-timeout": "^0.1.0", - "time-span": "^5.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/symbol-observable": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "6.1.13", - "license": "ISC", - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tdigest": { - "version": "0.1.2", - "license": "MIT", - "dependencies": { - "bintrees": "1.0.2" - } - }, - "node_modules/temp-dir": { - "version": "2.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/temp-write": { - "version": "5.0.0", - "license": "MIT", - "peer": true, - "dependencies": { - "graceful-fs": "^4.2.6", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "uuid": "^8.3.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/temp-write/node_modules/uuid": { - "version": "8.3.2", - "license": "MIT", - "peer": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/terser": { - "version": "5.18.0", - "license": "BSD-2-Clause", - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/supports-color": { - "version": "8.1.1", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/terser/node_modules/acorn": { - "version": "8.8.2", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "license": "MIT" - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/throttleit": { - "version": "0.0.2", - "license": "MIT", - "optional": true - }, - "node_modules/through": { - "version": "2.3.8", - "dev": true, - "license": "MIT" - }, - "node_modules/through2": { - "version": "2.0.5", - "license": "MIT", - "optional": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.7", - "license": "MIT", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT", - "optional": true - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "optional": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/thunky": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/time-span": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "convert-hrtime": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/timeout-abort-controller": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "retimer": "^3.0.0" - } - }, - "node_modules/timestamp-nano": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/tmp": { - "version": "0.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "rimraf": "^3.0.0" - }, - "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "license": "BSD-3-Clause" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/token-types": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "license": "MIT" - }, - "node_modules/tree-kill": { - "version": "1.2.2", - "dev": true, - "license": "MIT", - "bin": { - "tree-kill": "cli.js" - } - }, - "node_modules/truncate-utf8-bytes": { - "version": "1.0.2", - "license": "WTFPL", - "dependencies": { - "utf8-byte-length": "^1.0.1" - } - }, - "node_modules/ts-jest": { - "version": "29.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "7.x", - "yargs-parser": "^21.0.1" - }, - "bin": { - "ts-jest": "cli.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": ">=7.0.0-beta.0 <8", - "@jest/types": "^29.0.0", - "babel-jest": "^29.0.0", - "jest": "^29.0.0", - "typescript": ">=4.3" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@jest/types": { - "optional": true - }, - "babel-jest": { - "optional": true - }, - "esbuild": { - "optional": true - } - } - }, - "node_modules/ts-jest-resolver": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "jest-resolve": "^27.2.5" - } - }, - "node_modules/ts-jest-resolver/node_modules/@jest/types": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/@types/yargs": { - "version": "16.0.5", - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/ts-jest-resolver/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ts-jest-resolver/node_modules/camelcase": { - "version": "6.3.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ts-jest-resolver/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ts-jest-resolver/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/ts-jest-resolver/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-haste-map": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-regex-util": { - "version": "27.5.1", - "license": "MIT", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-resolve": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-util": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-validate": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-worker": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/ts-jest-resolver/node_modules/leven": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/ts-jest-resolver/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-jest/node_modules/json5": { - "version": "2.2.3", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/ts-jest/node_modules/yargs-parser": { - "version": "21.1.1", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/ts-loader": { - "version": "9.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "typescript": "*", - "webpack": "^5.0.0" - } - }, - "node_modules/ts-loader/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ts-loader/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ts-loader/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ts-loader/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/ts-loader/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-loader/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-node": { - "version": "10.9.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/ts-node/node_modules/acorn": { - "version": "8.8.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/tsconfig-paths-webpack-plugin": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/json5": { - "version": "2.2.3", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tslib": { - "version": "2.5.3", - "license": "0BSD" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "license": "Unlicense", - "optional": true - }, - "node_modules/type-detect": { - "version": "4.0.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "2.19.0", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "license": "MIT", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "license": "MIT" - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "license": "MIT", - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/uid": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "@lukeed/csprng": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/uint8-varint": { - "version": "1.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "byte-access": "^1.0.0", - "longbits": "^1.1.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8-varint/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8-varint/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arraylist": { - "version": "2.4.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arraylist/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arraylist/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arrays": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "multiformats": "^9.4.2" - } - }, - "node_modules/uint8arrays/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/unbox-primitive": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undici": { - "version": "5.12.0", - "license": "MIT", - "peer": true, - "dependencies": { - "busboy": "^1.6.0" - }, - "engines": { - "node": ">=12.18" - } - }, - "node_modules/union": { - "version": "0.5.0", - "dependencies": { - "qs": "^6.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/unique-string": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "crypto-random-string": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/universalify": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/update-notifier": { - "version": "6.0.2", - "license": "BSD-2-Clause", - "dependencies": { - "boxen": "^7.0.0", - "chalk": "^5.0.1", - "configstore": "^6.0.0", - "has-yarn": "^3.0.0", - "import-lazy": "^4.0.0", - "is-ci": "^3.0.1", - "is-installed-globally": "^0.4.0", - "is-npm": "^6.0.0", - "is-yarn-global": "^0.4.0", - "latest-version": "^7.0.0", - "pupa": "^3.1.0", - "semver": "^7.3.7", - "semver-diff": "^4.0.0", - "xdg-basedir": "^5.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/yeoman/update-notifier?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/chalk": { - "version": "5.1.2", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/is-ci": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/upper-case": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/upper-case-first": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-join": { - "version": "2.0.5", - "license": "MIT" - }, - "node_modules/ursa-optional": { - "version": "0.10.2", - "hasInstallScript": true, - "license": "Apache-2.0", - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.14.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/utf8-byte-length": { - "version": "1.0.4", - "license": "WTFPL" - }, - "node_modules/util": { - "version": "0.12.4", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "3.4.0", - "license": "MIT", - "optional": true, - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/v8-to-istanbul": { - "version": "9.0.1", - "dev": true, - "license": "ISC", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/validator": { - "version": "13.7.0", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/varint": { - "version": "6.0.0", - "license": "MIT" - }, - "node_modules/varint-decoder": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "varint": "^5.0.0" - }, - "engines": { - "node": ">=4.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/varint-decoder/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/vary": { - "version": "1.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/wait-for-expect": { - "version": "3.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/walker": { - "version": "1.0.8", - "license": "Apache-2.0", - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "license": "MIT", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/webcrypto-core": { - "version": "1.7.7", - "license": "MIT", - "dependencies": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "asn1js": "^3.0.1", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "license": "BSD-2-Clause" - }, - "node_modules/webpack": { - "version": "5.75.0", - "license": "MIT", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-cli": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.0.1", - "@webpack-cli/info": "^2.0.1", - "@webpack-cli/serve": "^2.0.1", - "colorette": "^2.0.14", - "commander": "^9.4.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" - }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true - }, - "webpack-bundle-analyzer": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/webpack-cli/node_modules/colorette": { - "version": "2.0.19", - "dev": true, - "license": "MIT" - }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "9.5.0", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || >=14" - } - }, - "node_modules/webpack-merge": { - "version": "5.8.0", - "dev": true, - "license": "MIT", - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/webpack-node-externals": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "license": "MIT", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/acorn": { - "version": "8.8.2", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.8.0", - "license": "MIT", - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.7", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array/node_modules/es-abstract": { - "version": "1.19.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "license": "ISC", - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/widest-line": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "string-width": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/widest-line/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/widest-line/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/strip-ansi": { - "version": "7.0.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/wildcard": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/windows-release": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "execa": "^4.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/windows-release/node_modules/execa": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/windows-release/node_modules/get-stream": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/windows-release/node_modules/human-signals": { - "version": "1.1.1", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/wordwrap": { - "version": "0.0.3", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "license": "ISC" - }, - "node_modules/write-file-atomic": { - "version": "3.0.3", - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/wrtc": { - "version": "0.4.7", - "bundleDependencies": [ - "node-pre-gyp" - ], - "hasInstallScript": true, - "license": "BSD-2-Clause", - "optional": true, - "dependencies": { - "node-pre-gyp": "^0.13.0" - }, - "engines": { - "node": "^8.11.2 || >=10.0.0" - }, - "optionalDependencies": { - "domexception": "^1.0.1" - } - }, - "node_modules/ws": { - "version": "8.11.0", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xdg-basedir": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/xml2js": { - "version": "0.4.23", - "license": "MIT", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "license": "MIT", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/xmlhttprequest-ssl": { - "version": "2.0.0", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/xsalsa20": { - "version": "1.2.0", - "license": "MIT" - }, - "node_modules/xtend": { - "version": "4.0.2", - "license": "MIT", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, - "node_modules/yaml": { - "version": "1.10.2", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "17.6.2", - "license": "MIT", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs/node_modules/yargs-parser": { - "version": "21.1.1", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/yauzl": { - "version": "2.10.0", - "license": "MIT", - "optional": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - }, - "dependencies": { - "@achingbrain/ip-address": { - "version": "8.1.0", - "requires": { - "jsbn": "1.1.0", - "sprintf-js": "1.1.2" - } - }, - "@achingbrain/nat-port-mapper": { - "version": "1.0.7", - "requires": { - "@achingbrain/ssdp": "^4.0.1", - "@libp2p/logger": "^2.0.0", - "default-gateway": "^6.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.7", - "p-defer": "^4.0.0", - "p-timeout": "^5.0.2", - "xml2js": "^0.4.23" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "@achingbrain/ssdp": { - "version": "4.0.1", - "requires": { - "event-iterator": "^2.0.0", - "freeport-promise": "^2.0.0", - "merge-options": "^3.0.4", - "uuid": "^8.3.2", - "xml2js": "^0.4.23" - }, - "dependencies": { - "uuid": { - "version": "8.3.2" - } - } - }, - "@angular-devkit/core": { - "version": "16.1.0", - "dev": true, - "requires": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "7.8.1", - "source-map": "0.7.4" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "dev": true - }, - "source-map": { - "version": "0.7.4", - "dev": true - } - } - }, - "@angular-devkit/schematics": { - "version": "16.1.0", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", - "ora": "5.4.1", - "rxjs": "7.8.1" - } - }, - "@angular-devkit/schematics-cli": { - "version": "16.1.0", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "ansi-colors": "4.1.3", - "inquirer": "8.2.4", - "symbol-observable": "4.0.0", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "inquirer": { - "version": "8.2.4", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yargs-parser": { - "version": "21.1.1", - "dev": true - } - } - }, - "@assemblyscript/loader": { - "version": "0.9.4" - }, - "@babel/code-frame": { - "version": "7.12.11", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/compat-data": { - "version": "7.14.4", - "dev": true - }, - "@babel/core": { - "version": "7.14.3", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.3", - "@babel/helper-compilation-targets": "^7.13.16", - "@babel/helper-module-transforms": "^7.14.2", - "@babel/helpers": "^7.14.0", - "@babel/parser": "^7.14.3", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "json5": { - "version": "2.2.0", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "semver": { - "version": "6.3.0", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.14.3", - "dev": true, - "requires": { - "@babel/types": "^7.14.2", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "dev": true - } - } - }, - "@babel/helper-compilation-targets": { - "version": "7.14.4", - "dev": true, - "requires": { - "@babel/compat-data": "^7.14.4", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.16.6", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "dev": true - } - } - }, - "@babel/helper-function-name": { - "version": "7.14.2", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/types": "^7.12.13" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.13.12", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-module-imports": { - "version": "7.13.12", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-module-transforms": { - "version": "7.14.2", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-simple-access": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/helper-validator-identifier": "^7.14.0", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/types": "^7.12.13" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.20.2", - "dev": true - }, - "@babel/helper-replace-supers": { - "version": "7.14.4", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.4" - } - }, - "@babel/helper-simple-access": { - "version": "7.13.12", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/types": "^7.12.13" - } - }, - "@babel/helper-string-parser": { - "version": "7.19.4", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.22.5", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.12.17", - "dev": true - }, - "@babel/helpers": { - "version": "7.14.0", - "dev": true, - "requires": { - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" - } - }, - "@babel/highlight": { - "version": "7.22.5", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.20.13", - "dev": true - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.19.0" - } - }, - "@babel/runtime": { - "version": "7.20.13", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.11" - } - }, - "@babel/template": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - } - } - }, - "@babel/traverse": { - "version": "7.14.2", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "globals": { - "version": "11.12.0", - "dev": true - } - } - }, - "@babel/types": { - "version": "7.20.7", - "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - } - }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "dev": true - }, - "@chainsafe/is-ip": { - "version": "2.0.1" - }, - "@chainsafe/libp2p-gossipsub": { - "version": "6.1.0", - "requires": { - "@libp2p/crypto": "^1.0.3", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.3.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/pubsub": "^6.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "denque": "^1.5.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "protobufjs": "^6.11.2", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/peer-record": { - "version": "5.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-all": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.0" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@chainsafe/libp2p-noise": { - "version": "11.0.0", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection-encrypter": "^3.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/hkdf": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.1", - "it-length-prefixed": "^8.0.2", - "it-pair": "^2.0.2", - "it-pb-stream": "^2.0.2", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - }, - "dependencies": { - "multiformats": { - "version": "11.0.1" - } - } - }, - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "@colors/colors": { - "version": "1.5.0", - "dev": true, - "optional": true - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@didtools/cacao": { - "version": "1.1.0", - "requires": { - "@ipld/dag-cbor": "^7.0.1", - "apg-js": "^4.1.1", - "caip": "^1.1.0", - "multiformats": "^9.5.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "7.0.3", - "requires": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "multiformats": { - "version": "9.9.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - }, - "dependencies": { - "multiformats": { - "version": "11.0.1" - } - } - } - } - }, - "@didtools/pkh-ethereum": { - "version": "0.0.1", - "requires": { - "@didtools/cacao": "^1.0.0", - "@ethersproject/wallet": "^5.7.0", - "@stablelib/random": "^1.0.2", - "caip": "^1.1.0" - } - }, - "@discoveryjs/json-ext": { - "version": "0.5.7", - "dev": true - }, - "@ethersproject/abi": { - "version": "5.7.0", - "requires": { - "@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": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0" - } - }, - "@ethersproject/abstract-signer": { - "version": "5.7.0", - "requires": { - "@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": { - "version": "5.7.0", - "requires": { - "@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": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0" - } - }, - "@ethersproject/basex": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/properties": "^5.7.0" - } - }, - "@ethersproject/bignumber": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "bn.js": "^5.2.1" - }, - "dependencies": { - "bn.js": { - "version": "5.2.1" - } - } - }, - "@ethersproject/bytes": { - "version": "5.7.0", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/constants": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0" - } - }, - "@ethersproject/contracts": { - "version": "5.7.0", - "requires": { - "@ethersproject/abi": "^5.7.0", - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0" - } - }, - "@ethersproject/hash": { - "version": "5.7.0", - "requires": { - "@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/hdnode": { - "version": "5.7.0", - "requires": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "@ethersproject/json-wallets": { - "version": "5.7.0", - "requires": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "aes-js": "3.0.0", - "scrypt-js": "3.0.1" - } - }, - "@ethersproject/keccak256": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "js-sha3": "0.8.0" - } - }, - "@ethersproject/logger": { - "version": "5.7.0" - }, - "@ethersproject/networks": { - "version": "5.7.1", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/pbkdf2": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/sha2": "^5.7.0" - } - }, - "@ethersproject/properties": { - "version": "5.7.0", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/providers": { - "version": "5.7.2", - "requires": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0", - "bech32": "1.1.4", - "ws": "7.4.6" - }, - "dependencies": { - "ws": { - "version": "7.4.6", - "requires": {} - } - } - }, - "@ethersproject/random": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/rlp": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/sha2": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "hash.js": "1.1.7" - } - }, - "@ethersproject/signing-key": { - "version": "5.7.0", - "requires": { - "@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" - }, - "dependencies": { - "bn.js": { - "version": "5.2.1" - } - } - }, - "@ethersproject/solidity": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@ethersproject/strings": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/transactions": { - "version": "5.7.0", - "requires": { - "@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/units": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/wallet": { - "version": "5.7.0", - "requires": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/json-wallets": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "@ethersproject/web": { - "version": "5.7.1", - "requires": { - "@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" - } - }, - "@ethersproject/wordlists": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@grpc/grpc-js": { - "version": "1.8.7", - "requires": { - "@grpc/proto-loader": "^0.7.0", - "@types/node": ">=12.12.47" - } - }, - "@grpc/proto-loader": { - "version": "0.7.4", - "requires": { - "@types/long": "^4.0.1", - "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^7.0.0", - "yargs": "^16.2.0" - }, - "dependencies": { - "cliui": { - "version": "7.0.4", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - }, - "dependencies": { - "long": { - "version": "5.2.1" - } - } - }, - "yargs": { - "version": "16.2.0", - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - } - } - }, - "@hapi/accept": { - "version": "5.0.2", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/address": { - "version": "5.1.0", - "requires": { - "@hapi/hoek": "^11.0.2" - }, - "dependencies": { - "@hapi/hoek": { - "version": "11.0.2" - } - } - }, - "@hapi/ammo": { - "version": "5.0.1", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/b64": { - "version": "5.0.0", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/boom": { - "version": "9.1.4", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/bounce": { - "version": "2.0.0", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/bourne": { - "version": "2.1.0" - }, - "@hapi/call": { - "version": "8.0.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/catbox": { - "version": "11.1.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/podium": "4.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/catbox-memory": { - "version": "5.0.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/content": { - "version": "5.0.2", - "requires": { - "@hapi/boom": "9.x.x" - } - }, - "@hapi/cryptiles": { - "version": "5.1.0", - "requires": { - "@hapi/boom": "9.x.x" - } - }, - "@hapi/file": { - "version": "2.0.0" - }, - "@hapi/formula": { - "version": "3.0.2" - }, - "@hapi/hapi": { - "version": "20.2.2", - "requires": { - "@hapi/accept": "^5.0.1", - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/bounce": "^2.0.0", - "@hapi/call": "^8.0.0", - "@hapi/catbox": "^11.1.1", - "@hapi/catbox-memory": "^5.0.0", - "@hapi/heavy": "^7.0.1", - "@hapi/hoek": "^9.0.4", - "@hapi/mimos": "^6.0.0", - "@hapi/podium": "^4.1.1", - "@hapi/shot": "^5.0.5", - "@hapi/somever": "^3.0.0", - "@hapi/statehood": "^7.0.4", - "@hapi/subtext": "^7.0.3", - "@hapi/teamwork": "^5.1.1", - "@hapi/topo": "^5.0.0", - "@hapi/validate": "^1.1.1" - } - }, - "@hapi/heavy": { - "version": "7.0.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/hoek": { - "version": "9.1.1" - }, - "@hapi/iron": { - "version": "6.0.0", - "requires": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/mimos": { - "version": "6.0.0", - "requires": { - "@hapi/hoek": "9.x.x", - "mime-db": "1.x.x" - } - }, - "@hapi/nigel": { - "version": "4.0.2", - "requires": { - "@hapi/hoek": "^9.0.4", - "@hapi/vise": "^4.0.0" - } - }, - "@hapi/pez": { - "version": "5.0.3", - "requires": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/content": "^5.0.2", - "@hapi/hoek": "9.x.x", - "@hapi/nigel": "4.x.x" - } - }, - "@hapi/pinpoint": { - "version": "2.0.1" - }, - "@hapi/podium": { - "version": "4.1.3", - "requires": { - "@hapi/hoek": "9.x.x", - "@hapi/teamwork": "5.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/shot": { - "version": "5.0.5", - "requires": { - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/somever": { - "version": "3.0.1", - "requires": { - "@hapi/bounce": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/statehood": { - "version": "7.0.4", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/bounce": "2.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/iron": "6.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/subtext": { - "version": "7.0.4", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/content": "^5.0.2", - "@hapi/file": "2.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/pez": "^5.0.1", - "@hapi/wreck": "17.x.x" - } - }, - "@hapi/teamwork": { - "version": "5.1.1" - }, - "@hapi/tlds": { - "version": "1.0.1" - }, - "@hapi/topo": { - "version": "5.0.0", - "requires": { - "@hapi/hoek": "^9.0.0" - } - }, - "@hapi/validate": { - "version": "1.1.3", - "requires": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0" - } - }, - "@hapi/vise": { - "version": "4.0.0", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/wreck": { - "version": "17.2.0", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@ipld/car": { - "version": "5.1.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "cborg": "^1.9.0", - "multiformats": "^11.0.0", - "varint": "^6.0.0" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - } - } - }, - "@ipld/dag-cbor": { - "version": "6.0.13", - "requires": { - "cborg": "^1.2.1", - "multiformats": "^9.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "@ipld/dag-json": { - "version": "10.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "2.1.13", - "requires": { - "multiformats": "^9.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "dev": true - } - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "dev": true - }, - "@jest/console": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/core": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/console": "^29.4.2", - "@jest/reporters": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.4.2", - "jest-config": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-resolve-dependencies": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "jest-watcher": "^29.4.2", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/environment": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2" - } - }, - "@jest/expect": { - "version": "29.4.2", - "dev": true, - "requires": { - "expect": "^29.4.2", - "jest-snapshot": "^29.4.2" - } - }, - "@jest/expect-utils": { - "version": "29.4.2", - "dev": true, - "requires": { - "jest-get-type": "^29.4.2" - }, - "dependencies": { - "jest-get-type": { - "version": "29.4.2", - "dev": true - } - } - }, - "@jest/fake-timers": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - } - }, - "@jest/globals": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/types": "^29.4.2", - "jest-mock": "^29.4.2" - } - }, - "@jest/reporters": { - "version": "29.4.2", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/schemas": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@sinclair/typebox": "^0.25.16" - } - }, - "@jest/source-map": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - } - }, - "@jest/test-result": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/console": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/test-result": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "slash": "^3.0.0" - } - }, - "@jest/transform": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "convert-source-map": { - "version": "2.0.0", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "write-file-atomic": { - "version": "4.0.2", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - } - } - } - }, - "@jest/types": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/schemas": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0" - }, - "@jridgewell/set-array": { - "version": "1.1.2" - }, - "@jridgewell/source-map": { - "version": "0.3.3", - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.17", - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4" - }, - "@libp2p/bootstrap": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-info": "^1.0.7", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/crypto": { - "version": "1.0.11", - "requires": { - "@libp2p/interface-keys": "^1.0.2", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^4.0.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "node-forge": { - "version": "1.3.1" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@libp2p/delegated-content-routing": { - "version": "4.0.0", - "requires": { - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "it-drain": "^2.0.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-drain": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - } - } - }, - "@libp2p/delegated-peer-routing": { - "version": "4.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.1", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "p-defer": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - } - } - }, - "@libp2p/floodsub": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/pubsub": "^6.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.3" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-address-manager": { - "version": "2.0.1", - "requires": { - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/interface-connection": { - "version": "3.0.3", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - } - }, - "@libp2p/interface-connection-encrypter": { - "version": "3.0.2", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - } - }, - "@libp2p/interface-connection-manager": { - "version": "1.3.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/interface-content-routing": { - "version": "2.0.1", - "requires": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - } - }, - "@libp2p/interface-dht": { - "version": "2.0.1", - "requires": { - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-keychain": { - "version": "2.0.4", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-keys": { - "version": "1.0.7" - }, - "@libp2p/interface-libp2p": { - "version": "1.1.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interface-peer-store": "^1.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-metrics": { - "version": "4.0.5", - "requires": { - "@libp2p/interface-connection": "^3.0.0" - } - }, - "@libp2p/interface-peer-discovery": { - "version": "1.0.2", - "requires": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - } - }, - "@libp2p/interface-peer-id": { - "version": "1.0.6", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - } - } - }, - "@libp2p/interface-peer-info": { - "version": "1.0.8", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-peer-routing": { - "version": "1.0.2", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - } - }, - "@libp2p/interface-peer-store": { - "version": "1.2.3", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-record": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/interface-pubsub": { - "version": "3.0.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-pushable": "^3.0.0", - "uint8arraylist": "^2.1.2" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.0" - } - } - }, - "@libp2p/interface-record": { - "version": "2.0.2", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "uint8arraylist": "^2.1.2" - } - }, - "@libp2p/interface-registrar": { - "version": "2.0.4", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0" - } - }, - "@libp2p/interface-stream-muxer": { - "version": "3.0.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-stream-types": "^1.0.4" - } - }, - "@libp2p/interface-transport": { - "version": "2.1.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4" - } - }, - "@libp2p/interfaces": { - "version": "3.3.1" - }, - "@libp2p/kad-dht": { - "version": "7.0.0", - "requires": { - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-first": "^2.0.0", - "it-length": "^2.0.0", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "it-take": "^2.0.0", - "k-bucket": "^5.1.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "ip-regex": { - "version": "5.0.0" - }, - "ipaddr.js": { - "version": "2.0.1" - }, - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.0" - }, - "it-take": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.0", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "private-ip": { - "version": "3.0.0", - "requires": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - } - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@libp2p/logger": { - "version": "2.0.5", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "debug": "^4.3.3", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/mdns": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/multicast-dns": "^7.2.1", - "multicast-dns": "^7.2.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/mplex": { - "version": "7.1.1", - "requires": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "benchmark": "^2.1.4", - "err-code": "^3.0.1", - "it-batched-bytes": "^1.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.4", - "rate-limiter-flexible": "^2.3.9", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.0" - }, - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "@libp2p/multistream-select": { - "version": "3.1.1", - "requires": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.6", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-merge": "^1.0.4", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.0" - }, - "multiformats": { - "version": "10.0.2" - }, - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "@libp2p/peer-collections": { - "version": "3.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/peer-id": { - "version": "2.0.1", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@libp2p/peer-id-factory": { - "version": "2.0.1", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/peer-store": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/peer-record": { - "version": "5.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - } - }, - "it-all": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/prometheus-metrics": { - "version": "1.1.3", - "requires": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/logger": "^2.0.2", - "it-foreach": "^1.0.0", - "it-stream-types": "^1.0.4" - } - }, - "@libp2p/pubsub": { - "version": "6.0.1", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.2.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/record": { - "version": "3.0.0", - "requires": { - "@libp2p/interface-dht": "^2.0.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/tcp": { - "version": "6.1.2", - "requires": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "stream-to-it": "^0.2.2" - } - }, - "@libp2p/topology": { - "version": "4.0.1", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/logger": "^2.0.1", - "it-all": "^2.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-all": { - "version": "2.0.0" - } - } - }, - "@libp2p/tracked-map": { - "version": "3.0.2", - "requires": { - "@libp2p/interface-metrics": "^4.0.0" - } - }, - "@libp2p/utils": { - "version": "3.0.2", - "requires": { - "@achingbrain/ip-address": "^8.1.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-peer-store": "^1.2.1", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "is-loopback-addr": "^2.0.1", - "it-stream-types": "^1.0.4", - "private-ip": "^2.1.1", - "uint8arraylist": "^2.3.2" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "is-loopback-addr": { - "version": "2.0.1" - } - } - }, - "@libp2p/webrtc-peer": { - "version": "2.0.2", - "requires": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "it-pushable": "^3.0.0", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "p-event": "^5.0.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.2" - }, - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/webrtc-star": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.1", - "@libp2p/webrtc-peer": "^2.0.0", - "@libp2p/webrtc-star-protocol": "^3.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "socket.io-client": "^4.1.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/webrtc-star-protocol": { - "version": "3.0.0", - "requires": { - "@multiformats/multiaddr": "^11.0.0", - "socket.io-client": "^4.1.2" - } - }, - "@libp2p/websockets": { - "version": "5.0.0", - "requires": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.2", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-ws": "^5.0.0", - "p-defer": "^4.0.0", - "p-timeout": "^6.0.0", - "wherearewe": "^2.0.1" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "p-timeout": { - "version": "6.0.0" - }, - "wherearewe": { - "version": "2.0.1", - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "@lukeed/csprng": { - "version": "1.1.0" - }, - "@mapbox/node-pre-gyp": { - "version": "1.0.10", - "requires": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - } - }, - "@multiformats/base-x": { - "version": "4.0.1" - }, - "@multiformats/mafmt": { - "version": "11.0.3", - "requires": { - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@multiformats/multiaddr": { - "version": "11.4.0", - "requires": { - "@chainsafe/is-ip": "^2.0.1", - "dns-over-http-resolver": "^2.1.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "dns-over-http-resolver": { - "version": "2.1.0", - "requires": { - "debug": "^4.3.1", - "native-fetch": "^4.0.2", - "receptacle": "^1.3.2" - } - }, - "native-fetch": { - "version": "4.0.2", - "requires": {} - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@multiformats/multiaddr-to-uri": { - "version": "9.0.2", - "requires": { - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@multiformats/murmur3": { - "version": "2.1.2", - "requires": { - "multiformats": "^11.0.0", - "murmurhash3js-revisited": "^3.0.0" - } - }, - "@multiformats/uri-to-multiaddr": { - "version": "7.0.0", - "requires": { - "@multiformats/multiaddr": "^11.0.0", - "is-ip": "^5.0.0" - }, - "dependencies": { - "ip-regex": { - "version": "5.0.0" - }, - "is-ip": { - "version": "5.0.0", - "requires": { - "ip-regex": "^5.0.0", - "super-regex": "^0.2.0" - } - } - } - }, - "@nestjs/cli": { - "version": "10.0.3", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "@angular-devkit/schematics-cli": "16.1.0", - "@nestjs/schematics": "^10.0.1", - "chalk": "4.1.2", - "chokidar": "3.5.3", - "cli-table3": "0.6.3", - "commander": "4.1.1", - "fork-ts-checker-webpack-plugin": "8.0.0", - "inquirer": "8.2.5", - "node-emoji": "1.11.0", - "ora": "5.4.1", - "os-name": "4.0.1", - "rimraf": "4.4.1", - "shelljs": "0.8.5", - "source-map-support": "0.5.21", - "tree-kill": "1.2.2", - "tsconfig-paths": "4.2.0", - "tsconfig-paths-webpack-plugin": "4.0.1", - "typescript": "5.1.3", - "webpack": "5.87.0", - "webpack-node-externals": "3.0.0" - }, - "dependencies": { - "@types/estree": { - "version": "1.0.1", - "dev": true - }, - "@webassemblyjs/ast": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.6", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.6", - "dev": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "acorn": { - "version": "8.9.0", - "dev": true - }, - "acorn-import-assertions": { - "version": "1.9.0", - "dev": true, - "requires": {} - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "commander": { - "version": "4.1.1", - "dev": true - }, - "es-module-lexer": { - "version": "1.3.0", - "dev": true - }, - "glob": { - "version": "9.3.5", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "minimatch": "^8.0.2", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - } - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "json5": { - "version": "2.2.3", - "dev": true - }, - "minimatch": { - "version": "8.0.4", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "rimraf": { - "version": "4.4.1", - "dev": true, - "requires": { - "glob": "^9.2.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "requires": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "typescript": { - "version": "5.1.3", - "dev": true - }, - "webpack": { - "version": "5.87.0", - "dev": true, - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - } - } - } - }, - "@nestjs/common": { - "version": "10.0.2", - "requires": { - "iterare": "1.2.1", - "tslib": "2.5.3", - "uid": "2.0.2" - } - }, - "@nestjs/core": { - "version": "10.0.2", - "requires": { - "@nuxtjs/opencollective": "0.3.2", - "fast-safe-stringify": "2.1.1", - "iterare": "1.2.1", - "path-to-regexp": "3.2.0", - "tslib": "2.5.3", - "uid": "2.0.2" - }, - "dependencies": { - "path-to-regexp": { - "version": "3.2.0" - } - } - }, - "@nestjs/platform-express": { - "version": "10.0.2", - "requires": { - "body-parser": "1.20.2", - "cors": "2.8.5", - "express": "4.18.2", - "multer": "1.4.4-lts.1", - "tslib": "2.5.3" - }, - "dependencies": { - "body-parser": { - "version": "1.20.2", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - } - }, - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - }, - "raw-body": { - "version": "2.5.2", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - } - } - }, - "@nestjs/schematics": { - "version": "10.0.1", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "comment-json": "4.2.3", - "jsonc-parser": "3.2.0", - "pluralize": "8.0.0" - } - }, - "@nestjs/testing": { - "version": "10.0.2", - "dev": true, - "requires": { - "tslib": "2.5.3" - } - }, - "@noble/ed25519": { - "version": "1.7.1" - }, - "@noble/secp256k1": { - "version": "1.7.0" - }, - "@nuxtjs/opencollective": { - "version": "0.3.2", - "requires": { - "chalk": "^4.1.0", - "consola": "^2.15.0", - "node-fetch": "^2.6.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@peculiar/asn1-schema": { - "version": "2.3.6", - "requires": { - "asn1js": "^3.0.5", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "@peculiar/json-schema": { - "version": "1.1.12", - "requires": { - "tslib": "^2.0.0" - } - }, - "@peculiar/webcrypto": { - "version": "1.4.3", - "requires": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "pvtsutils": "^1.3.2", - "tslib": "^2.5.0", - "webcrypto-core": "^1.7.7" - } - }, - "@pnpm/network.ca-file": { - "version": "1.0.2", - "requires": { - "graceful-fs": "4.2.10" - } - }, - "@pnpm/npm-conf": { - "version": "1.0.5", - "requires": { - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - } - }, - "@protobufjs/aspromise": { - "version": "1.1.2" - }, - "@protobufjs/base64": { - "version": "1.1.2" - }, - "@protobufjs/codegen": { - "version": "2.0.4" - }, - "@protobufjs/eventemitter": { - "version": "1.1.0" - }, - "@protobufjs/fetch": { - "version": "1.1.0", - "requires": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "@protobufjs/float": { - "version": "1.0.2" - }, - "@protobufjs/inquire": { - "version": "1.1.0" - }, - "@protobufjs/path": { - "version": "1.1.2" - }, - "@protobufjs/pool": { - "version": "1.1.0" - }, - "@protobufjs/utf8": { - "version": "1.1.0" - }, - "@sinclair/typebox": { - "version": "0.25.21", - "devOptional": true - }, - "@sinonjs/commons": { - "version": "2.0.0", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "10.0.2", - "dev": true, - "requires": { - "@sinonjs/commons": "^2.0.0" - } - }, - "@socket.io/component-emitter": { - "version": "3.1.0" - }, - "@stablelib/aead": { - "version": "1.0.1" - }, - "@stablelib/binary": { - "version": "1.0.1", - "requires": { - "@stablelib/int": "^1.0.1" - } - }, - "@stablelib/bytes": { - "version": "1.0.1" - }, - "@stablelib/chacha": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/chacha20poly1305": { - "version": "1.0.1", - "requires": { - "@stablelib/aead": "^1.0.1", - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/poly1305": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/constant-time": { - "version": "1.0.1" - }, - "@stablelib/ed25519": { - "version": "1.0.3", - "requires": { - "@stablelib/random": "^1.0.2", - "@stablelib/sha512": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/hash": { - "version": "1.0.1" - }, - "@stablelib/hkdf": { - "version": "1.0.1", - "requires": { - "@stablelib/hash": "^1.0.1", - "@stablelib/hmac": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/hmac": { - "version": "1.0.1", - "requires": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/int": { - "version": "1.0.1" - }, - "@stablelib/keyagreement": { - "version": "1.0.1", - "requires": { - "@stablelib/bytes": "^1.0.1" - } - }, - "@stablelib/poly1305": { - "version": "1.0.1", - "requires": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/random": { - "version": "1.0.2", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/sha256": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/sha512": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/wipe": { - "version": "1.0.1" - }, - "@stablelib/x25519": { - "version": "1.0.3", - "requires": { - "@stablelib/keyagreement": "^1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/xchacha20": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/xchacha20poly1305": { - "version": "1.0.1", - "requires": { - "@stablelib/aead": "^1.0.1", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1", - "@stablelib/xchacha20": "^1.0.1" - } - }, - "@tokenizer/token": { - "version": "0.3.0" - }, - "@tsconfig/node10": { - "version": "1.0.9", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.3", - "dev": true - }, - "@types/babel__core": { - "version": "7.20.0", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.11.1", - "dev": true, - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/bn.js": { - "version": "5.1.1", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/body-parser": { - "version": "1.19.0", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/connect": { - "version": "3.4.34", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/cookie": { - "version": "0.4.1" - }, - "@types/cookiejar": { - "version": "2.1.2", - "dev": true - }, - "@types/cors": { - "version": "2.8.13", - "requires": { - "@types/node": "*" - } - }, - "@types/crypto-js": { - "version": "4.0.2", - "dev": true - }, - "@types/dns-packet": { - "version": "5.2.4", - "requires": { - "@types/node": "*" - } - }, - "@types/elliptic": { - "version": "6.4.14", - "dev": true, - "requires": { - "@types/bn.js": "*" - } - }, - "@types/eslint": { - "version": "8.4.10", - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "@types/eslint-scope": { - "version": "3.7.4", - "requires": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "@types/estree": { - "version": "0.0.51" - }, - "@types/events": { - "version": "1.2.0", - "dev": true - }, - "@types/express": { - "version": "4.17.15", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.31", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.32", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "@types/graceful-fs": { - "version": "4.1.5", - "requires": { - "@types/node": "*" - } - }, - "@types/http-cache-semantics": { - "version": "4.0.1" - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.3" - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "28.1.8", - "dev": true, - "requires": { - "expect": "^28.0.0", - "pretty-format": "^28.0.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.5" - } - }, - "@jest/expect-utils": { - "version": "28.1.3", - "dev": true, - "requires": { - "jest-get-type": "^28.0.2" - } - }, - "@jest/schemas": { - "version": "28.1.3", - "dev": true, - "requires": { - "@sinclair/typebox": "^0.24.1" - } - }, - "@jest/types": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - } - }, - "@sinclair/typebox": { - "version": "0.24.51", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "diff-sequences": { - "version": "28.1.1", - "dev": true - }, - "expect": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/expect-utils": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3" - } - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-diff": { - "version": "28.1.3", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^28.1.1", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - } - }, - "jest-get-type": { - "version": "28.0.2", - "dev": true - }, - "jest-matcher-utils": { - "version": "28.1.3", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - } - }, - "jest-message-util": { - "version": "28.1.3", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-util": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "pretty-format": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@types/json-schema": { - "version": "7.0.11" - }, - "@types/long": { - "version": "4.0.1" - }, - "@types/luxon": { - "version": "3.3.0", - "dev": true - }, - "@types/mime": { - "version": "2.0.3", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.5" - }, - "@types/mock-fs": { - "version": "4.13.1", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/multicast-dns": { - "version": "7.2.1", - "requires": { - "@types/dns-packet": "*", - "@types/node": "*" - } - }, - "@types/node": { - "version": "18.11.9" - }, - "@types/node-fetch": { - "version": "2.5.11", - "dev": true, - "requires": { - "@types/node": "*", - "form-data": "^3.0.0" - } - }, - "@types/orbit-db": { - "version": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", - "dev": true, - "from": "@types/orbit-db@git+https://github.com/orbitdb/orbit-db-types.git", - "requires": { - "@types/elliptic": "^6.4.6", - "@types/events": "^1.2.0", - "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", - "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", - "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", - "dev": true, - "requires": { - "cborg": "^2.0.1", - "multiformats": "^12.0.1" - }, - "dependencies": { - "multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true - } - } - }, - "@libp2p/crypto": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", - "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", - "dev": true, - "requires": { - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interfaces": "^3.2.0", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^5.0.0", - "uint8arraylist": "^2.4.3", - "uint8arrays": "^4.0.2" - } - }, - "@types/ipfs": { - "version": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", - "dev": true, - "from": "@types/ipfs@git+https://github.com/lukas2005/types-ipfs.git" - }, - "cborg": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", - "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", - "dev": true - }, - "long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "dev": true - }, - "node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true - }, - "orbit-db": { - "version": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", - "dev": true, - "from": "orbit-db@git+https://github.com/orbitdb/orbit-db.git", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@libp2p/crypto": "^1.0.12", - "it-pipe": "^2.0.5", - "level": "8.0.0", - "lru": "^3.1.0", - "multiformats": "^11.0.1", - "p-queue": "^7.3.4", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.3" - } - }, - "protobufjs": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", - "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", - "dev": true, - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "protons-runtime": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", - "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", - "dev": true, - "requires": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.4.3" - } - }, - "uint8arraylist": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", - "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", - "dev": true, - "requires": { - "uint8arrays": "^4.0.2" - } - }, - "uint8arrays": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", - "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", - "dev": true, - "requires": { - "multiformats": "^12.0.1" - }, - "dependencies": { - "multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true - } - } - } - } - }, - "@types/parse-json": { - "version": "4.0.0", - "dev": true - }, - "@types/prettier": { - "version": "2.7.1", - "dev": true - }, - "@types/qs": { - "version": "6.9.5", - "dev": true - }, - "@types/range-parser": { - "version": "1.2.3", - "dev": true - }, - "@types/retry": { - "version": "0.12.1" - }, - "@types/serve-static": { - "version": "1.15.0", - "dev": true, - "requires": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "@types/stack-utils": { - "version": "2.0.1", - "dev": true - }, - "@types/superagent": { - "version": "4.1.18", - "dev": true, - "requires": { - "@types/cookiejar": "*", - "@types/node": "*" - } - }, - "@types/supertest": { - "version": "2.0.12", - "dev": true, - "requires": { - "@types/superagent": "*" - } - }, - "@types/tmp": { - "version": "0.2.3", - "dev": true - }, - "@types/validator": { - "version": "13.1.4" - }, - "@types/ws": { - "version": "8.5.3", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/yargs": { - "version": "17.0.15", - "devOptional": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0" - }, - "@vascosantos/moving-average": { - "version": "1.1.0" - }, - "@webassemblyjs/ast": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.1", - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.1", - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.1" - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@webpack-cli/configtest": { - "version": "2.0.1", - "dev": true, - "requires": {} - }, - "@webpack-cli/info": { - "version": "2.0.1", - "dev": true, - "requires": {} - }, - "@webpack-cli/serve": { - "version": "2.0.1", - "dev": true, - "requires": {} - }, - "@xtuc/ieee754": { - "version": "1.2.0" - }, - "@xtuc/long": { - "version": "4.2.2" - }, - "abbrev": { - "version": "1.1.1" - }, - "abort-controller": { - "version": "3.0.0", - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "abortable-iterator": { - "version": "3.0.2", - "requires": { - "get-iterator": "^1.0.2" - } - }, - "abstract-level": { - "version": "1.0.3", - "requires": { - "buffer": "^6.0.3", - "catering": "^2.1.0", - "is-buffer": "^2.0.5", - "level-supports": "^4.0.0", - "level-transcoder": "^1.0.1", - "module-error": "^1.0.1", - "queue-microtask": "^1.2.3" - }, - "dependencies": { - "level-supports": { - "version": "4.0.1" - } - } - }, - "abstract-leveldown": { - "version": "7.2.0", - "requires": { - "buffer": "^6.0.3", - "catering": "^2.0.0", - "is-buffer": "^2.0.5", - "level-concat-iterator": "^3.0.0", - "level-supports": "^2.0.1", - "queue-microtask": "^1.2.3" - } - }, - "abstract-logging": { - "version": "2.0.1" - }, - "accepts": { - "version": "1.3.8", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn-walk": { - "version": "8.2.0", - "dev": true - }, - "aes-js": { - "version": "3.0.0" - }, - "agent-base": { - "version": "6.0.2", - "requires": { - "debug": "4" - } - }, - "aggregate-error": { - "version": "3.1.0", - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-formats": { - "version": "2.1.1", - "dev": true, - "requires": { - "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "dev": true - } - } - }, - "ajv-keywords": { - "version": "3.5.2", - "requires": {} - }, - "ansi-align": { - "version": "3.0.1", - "requires": { - "string-width": "^4.1.0" - } - }, - "ansi-colors": { - "version": "4.1.3", - "dev": true - }, - "ansi-escapes": { - "version": "4.3.2", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - }, - "dependencies": { - "type-fest": { - "version": "0.21.3", - "dev": true - } - } - }, - "ansi-regex": { - "version": "5.0.1" - }, - "ansi-styles": { - "version": "3.2.1", - "requires": { - "color-convert": "^1.9.0" - } - }, - "any-signal": { - "version": "3.0.1" - }, - "anymatch": { - "version": "3.1.2", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "apg-js": { - "version": "4.1.3" - }, - "append-field": { - "version": "1.0.0" - }, - "aproba": { - "version": "2.0.0" - }, - "are-we-there-yet": { - "version": "2.0.0", - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "arg": { - "version": "4.1.3", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - }, - "dependencies": { - "sprintf-js": { - "version": "1.0.3", - "dev": true - } - } - }, - "args": { - "version": "5.0.3", - "requires": { - "camelcase": "5.0.0", - "chalk": "2.4.2", - "leven": "2.1.0", - "mri": "1.1.4" - }, - "dependencies": { - "camelcase": { - "version": "5.0.0" - } - } - }, - "array-flatten": { - "version": "1.1.1" - }, - "array-shuffle": { - "version": "3.0.0" - }, - "array-timsort": { - "version": "1.0.3", - "dev": true - }, - "asap": { - "version": "2.0.6" - }, - "asmcrypto.js": { - "version": "2.3.2" - }, - "asn1": { - "version": "0.2.6", - "optional": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "5.4.1", - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "asn1js": { - "version": "3.0.5", - "requires": { - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - } - }, - "assert": { - "version": "2.0.0", - "requires": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "optional": true - }, - "async": { - "version": "2.6.3", - "requires": { - "lodash": "^4.17.14" - } - }, - "asynckit": { - "version": "0.4.0", - "devOptional": true - }, - "atomic-sleep": { - "version": "1.0.0" - }, - "available-typed-arrays": { - "version": "1.0.5" - }, - "aws-sign2": { - "version": "0.7.0", - "optional": true - }, - "aws4": { - "version": "1.12.0", - "optional": true - }, - "babel-jest": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/transform": "^29.4.2", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.4.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "dev": true, - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - } - }, - "babel-preset-jest": { - "version": "29.4.2", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^29.4.2", - "babel-preset-current-node-syntax": "^1.0.0" - } - }, - "balanced-match": { - "version": "1.0.0" - }, - "base-x": { - "version": "3.0.9", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "base64-js": { - "version": "1.3.1" - }, - "base64id": { - "version": "2.0.0" - }, - "basic-auth": { - "version": "1.1.0" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "optional": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bech32": { - "version": "1.1.4" - }, - "benchmark": { - "version": "2.1.4", - "requires": { - "lodash": "^4.17.4", - "platform": "^1.3.3" - } - }, - "big.js": { - "version": "5.2.2" - }, - "binary-extensions": { - "version": "2.2.0", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bintrees": { - "version": "1.0.2" - }, - "bip66": { - "version": "1.1.5", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "bl": { - "version": "5.1.0", - "requires": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "blakejs": { - "version": "1.1.0" - }, - "blob-to-it": { - "version": "2.0.0", - "requires": { - "browser-readablestream-to-it": "^2.0.0" - } - }, - "blockstore-core": { - "version": "3.0.0", - "requires": { - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-store": "^3.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-take": "^2.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-take": { - "version": "2.0.0" - } - } - }, - "blockstore-datastore-adapter": { - "version": "5.0.0", - "requires": { - "blockstore-core": "^3.0.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-drain": "^2.0.0", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "it-drain": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - } - } - }, - "bn.js": { - "version": "4.11.9" - }, - "body-parser": { - "version": "1.20.1", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - } - } - }, - "boxen": { - "version": "7.0.0", - "requires": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.0", - "chalk": "^5.0.1", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1" - }, - "ansi-styles": { - "version": "6.2.1" - }, - "camelcase": { - "version": "7.0.0" - }, - "chalk": { - "version": "5.1.2" - }, - "emoji-regex": { - "version": "9.2.2" - }, - "string-width": { - "version": "5.1.2", - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.0.1", - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.0.1", - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "requires": { - "fill-range": "^7.0.1" - } - }, - "brorand": { - "version": "1.1.0" - }, - "browser-level": { - "version": "1.0.1", - "requires": { - "abstract-level": "^1.0.2", - "catering": "^2.1.1", - "module-error": "^1.0.2", - "run-parallel-limit": "^1.1.0" - } - }, - "browser-readablestream-to-it": { - "version": "2.0.0" - }, - "browserify-aes": { - "version": "1.2.0", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserslist": { - "version": "4.16.6", - "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - } - }, - "bs-logger": { - "version": "0.2.6", - "dev": true, - "requires": { - "fast-json-stable-stringify": "2.x" - } - }, - "bs58": { - "version": "4.0.1", - "requires": { - "base-x": "^3.0.2" - } - }, - "bser": { - "version": "2.1.1", - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "6.0.3", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "buffer-crc32": { - "version": "0.2.13", - "optional": true - }, - "buffer-xor": { - "version": "1.0.3" - }, - "busboy": { - "version": "1.6.0", - "requires": { - "streamsearch": "^1.1.0" - } - }, - "byte-access": { - "version": "1.0.1", - "requires": { - "uint8arraylist": "^2.0.0" - } - }, - "byteman": { - "version": "1.3.5" - }, - "bytes": { - "version": "3.1.2" - }, - "bytestreamjs": { - "version": "2.0.1" - }, - "caip": { - "version": "1.1.0" - }, - "call-bind": { - "version": "1.0.2", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "dev": true - }, - "camel-case": { - "version": "4.1.2", - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "camelcase": { - "version": "5.3.1", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001235" - }, - "canonicalize": { - "version": "1.0.8" - }, - "capital-case": { - "version": "1.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "caseless": { - "version": "0.12.0", - "optional": true - }, - "catering": { - "version": "2.1.1" - }, - "cborg": { - "version": "1.10.0" - }, - "chalk": { - "version": "2.4.2", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "change-case": { - "version": "4.1.2", - "requires": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "char-regex": { - "version": "1.0.2", - "dev": true - }, - "chardet": { - "version": "0.7.0", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "chownr": { - "version": "2.0.0" - }, - "chrome-trace-event": { - "version": "1.0.3" - }, - "ci-info": { - "version": "3.7.0" - }, - "cipher-base": { - "version": "1.0.4", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "cjs-module-lexer": { - "version": "1.2.2", - "dev": true - }, - "class-is": { - "version": "1.1.0" - }, - "class-transformer": { - "version": "0.5.1" - }, - "class-validator": { - "version": "0.13.1", - "requires": { - "@types/validator": "^13.1.3", - "libphonenumber-js": "^1.9.7", - "validator": "^13.5.2" - } - }, - "classic-level": { - "version": "1.2.0", - "requires": { - "abstract-level": "^1.0.2", - "catering": "^2.1.0", - "module-error": "^1.0.1", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - } - }, - "clean-stack": { - "version": "2.2.0" - }, - "cli-boxes": { - "version": "3.0.0" - }, - "cli-cursor": { - "version": "3.1.0", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.9.0", - "dev": true - }, - "cli-table": { - "version": "0.3.6", - "requires": { - "colors": "1.0.3" - }, - "dependencies": { - "colors": { - "version": "1.0.3" - } - } - }, - "cli-table3": { - "version": "0.6.3", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "string-width": "^4.2.0" - } - }, - "cli-width": { - "version": "3.0.0", - "dev": true - }, - "cliui": { - "version": "8.0.1", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "clone": { - "version": "1.0.4", - "dev": true - }, - "clone-deep": { - "version": "4.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - } - }, - "clone-regexp": { - "version": "3.0.0", - "requires": { - "is-regexp": "^3.0.0" - } - }, - "co": { - "version": "4.6.0", - "dev": true - }, - "code-point-at": { - "version": "1.1.0", - "optional": true - }, - "coercer": { - "version": "1.1.2" - }, - "collect-v8-coverage": { - "version": "1.0.1", - "dev": true - }, - "color-convert": { - "version": "1.9.3", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3" - }, - "color-support": { - "version": "1.1.3" - }, - "colorette": { - "version": "1.2.2" - }, - "colors": { - "version": "1.4.0" - }, - "combined-stream": { - "version": "1.0.8", - "devOptional": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "7.2.0" - }, - "comment-json": { - "version": "4.2.3", - "dev": true, - "requires": { - "array-timsort": "^1.0.3", - "core-util-is": "^1.0.3", - "esprima": "^4.0.1", - "has-own-prop": "^2.0.0", - "repeat-string": "^1.6.1" - }, - "dependencies": { - "core-util-is": { - "version": "1.0.3", - "dev": true - } - } - }, - "concat-map": { - "version": "0.0.1" - }, - "concat-stream": { - "version": "1.6.2", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - }, - "dependencies": { - "buffer-from": { - "version": "1.1.2" - }, - "readable-stream": { - "version": "2.3.7", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2" - }, - "string_decoder": { - "version": "1.1.1", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "config-chain": { - "version": "1.1.13", - "requires": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "configstore": { - "version": "6.0.0", - "requires": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" - } - }, - "consola": { - "version": "2.15.3" - }, - "console-control-strings": { - "version": "1.1.0" - }, - "constant-case": { - "version": "3.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "content-disposition": { - "version": "0.5.4", - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5" - }, - "convert-hrtime": { - "version": "5.0.0" - }, - "convert-source-map": { - "version": "1.7.0", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "dev": true - } - } - }, - "cookie": { - "version": "0.4.2" - }, - "cookie-signature": { - "version": "1.0.6" - }, - "core-js": { - "version": "3.27.2", - "dev": true - }, - "core-util-is": { - "version": "1.0.2" - }, - "cors": { - "version": "2.8.5", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "corser": { - "version": "2.0.1" - }, - "cosmiconfig": { - "version": "7.1.0", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "dependencies": { - "parse-json": { - "version": "5.2.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - } - } - }, - "create-hash": { - "version": "1.2.0", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "create-require": { - "version": "1.1.1", - "dev": true - }, - "cross-env": { - "version": "5.2.1", - "dev": true, - "requires": { - "cross-spawn": "^6.0.5" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "dev": true - }, - "semver": { - "version": "5.7.1", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "dev": true - }, - "which": { - "version": "1.3.1", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "cross-spawn": { - "version": "7.0.3", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-js": { - "version": "4.1.1" - }, - "crypto-random-string": { - "version": "4.0.0", - "requires": { - "type-fest": "^1.0.1" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0" - } - } - }, - "dag-jose": { - "version": "4.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - } - } - }, - "dag-jose-utils": { - "version": "2.0.0", - "requires": { - "@ipld/dag-cbor": "^7.0.1", - "multiformats": "^9.5.1" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "7.0.3", - "requires": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "multiformats": { - "version": "9.9.0" - } - } - }, - "dashdash": { - "version": "1.14.1", - "optional": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "datastore-core": { - "version": "8.0.2", - "requires": { - "@libp2p/logger": "^2.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^1.0.4", - "it-drain": "^1.0.4", - "it-filter": "^1.0.2", - "it-map": "^1.0.5", - "it-merge": "^1.0.1", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-take": "^1.0.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.0" - }, - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "datastore-fs": { - "version": "8.0.0", - "requires": { - "datastore-core": "^8.0.1", - "fast-write-atomic": "^0.2.0", - "interface-datastore": "^7.0.0", - "it-glob": "^1.0.1", - "it-map": "^1.0.5", - "it-parallel-batch": "^1.0.9", - "mkdirp": "^1.0.4" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4" - } - } - }, - "datastore-level": { - "version": "9.0.4", - "requires": { - "abstract-level": "^1.0.3", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "it-filter": "^2.0.0", - "it-map": "^2.0.0", - "it-sort": "^2.0.0", - "it-take": "^2.0.0", - "level": "8.0.0" - }, - "dependencies": { - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-take": { - "version": "2.0.0" - } - } - }, - "datastore-pubsub": { - "version": "7.0.0", - "requires": { - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "dateformat": { - "version": "4.6.3" - }, - "debug": { - "version": "4.3.4", - "requires": { - "ms": "2.1.2" - } - }, - "decompress-response": { - "version": "6.0.0", - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0" - } - } - }, - "dedent": { - "version": "0.7.0", - "dev": true - }, - "deep-extend": { - "version": "0.6.0" - }, - "deepmerge": { - "version": "4.3.0", - "dev": true - }, - "default-gateway": { - "version": "6.0.3", - "requires": { - "execa": "^5.0.0" - } - }, - "defaults": { - "version": "1.0.4", - "dev": true, - "requires": { - "clone": "^1.0.2" - } - }, - "defer-to-connect": { - "version": "2.0.1" - }, - "deferred-leveldown": { - "version": "5.1.0", - "requires": { - "abstract-leveldown": "~6.0.0", - "inherits": "^2.0.3" - }, - "dependencies": { - "abstract-leveldown": { - "version": "6.0.3", - "requires": { - "level-concat-iterator": "~2.0.0", - "xtend": "~4.0.0" - } - }, - "level-concat-iterator": { - "version": "2.0.1" - } - } - }, - "define-properties": { - "version": "1.1.3", - "requires": { - "object-keys": "^1.0.12" - }, - "dependencies": { - "object-keys": { - "version": "1.1.1" - } - } - }, - "delay": { - "version": "5.0.0" - }, - "delayed-stream": { - "version": "1.0.0", - "devOptional": true - }, - "delegates": { - "version": "1.0.0" - }, - "denque": { - "version": "1.5.1" - }, - "depd": { - "version": "2.0.0" - }, - "destroy": { - "version": "1.2.0" - }, - "detect-libc": { - "version": "2.0.1" - }, - "detect-newline": { - "version": "3.1.0", - "dev": true - }, - "dezalgo": { - "version": "1.0.4", - "requires": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "did-jwt": { - "version": "6.11.0", - "requires": { - "@stablelib/ed25519": "^1.0.2", - "@stablelib/random": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.2", - "@stablelib/xchacha20poly1305": "^1.0.1", - "bech32": "^2.0.0", - "canonicalize": "^1.0.8", - "did-resolver": "^4.0.0", - "elliptic": "^6.5.4", - "js-sha3": "^0.8.0", - "multiformats": "^9.6.5", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "bech32": { - "version": "2.0.0" - }, - "did-resolver": { - "version": "4.0.1" - }, - "multiformats": { - "version": "9.9.0" - } - } - }, - "did-resolver": { - "version": "3.2.2" - }, - "dids": { - "version": "3.4.0", - "requires": { - "@didtools/cacao": "^1.0.0", - "@didtools/pkh-ethereum": "^0.0.1", - "@stablelib/random": "^1.0.1", - "dag-jose-utils": "^2.0.0", - "did-jwt": "^6.0.0", - "did-resolver": "^3.1.5", - "multiformats": "^9.4.10", - "rpc-utils": "^0.6.1", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "diff": { - "version": "4.0.2", - "dev": true - }, - "diff-match-patch": { - "version": "1.0.5" - }, - "diff-sequences": { - "version": "29.4.2", - "dev": true - }, - "dlv": { - "version": "1.1.3" - }, - "dns-over-http-resolver": { - "version": "1.2.3", - "requires": { - "debug": "^4.3.1", - "native-fetch": "^3.0.0", - "receptacle": "^1.3.2" - } - }, - "dns-packet": { - "version": "5.4.0", - "requires": { - "@leichtgewicht/ip-codec": "^2.0.1" - } - }, - "domexception": { - "version": "1.0.1", - "optional": true, - "requires": { - "webidl-conversions": "^4.0.2" - }, - "dependencies": { - "webidl-conversions": { - "version": "4.0.2", - "optional": true - } - } - }, - "dot-case": { - "version": "3.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "dot-prop": { - "version": "6.0.1", - "requires": { - "is-obj": "^2.0.0" - } - }, - "dotenv": { - "version": "8.2.0" - }, - "drbg.js": { - "version": "1.0.1", - "requires": { - "browserify-aes": "^1.0.6", - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4" - } - }, - "eastasianwidth": { - "version": "0.2.0" - }, - "ecc-jsbn": { - "version": "0.1.2", - "optional": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "jsbn": { - "version": "0.1.1", - "optional": true - } - } - }, - "ecstatic": { - "version": "3.3.2", - "requires": { - "he": "^1.1.1", - "mime": "^1.6.0", - "minimist": "^1.1.0", - "url-join": "^2.0.5" - } - }, - "ee-first": { - "version": "1.1.1" - }, - "ejs": { - "version": "3.1.8", - "requires": { - "jake": "^10.8.5" - } - }, - "electron": { - "version": "1.8.8", - "optional": true, - "requires": { - "@types/node": "^8.0.24", - "electron-download": "^3.0.1", - "extract-zip": "^1.0.3" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "optional": true - } - } - }, - "electron-download": { - "version": "3.3.0", - "optional": true, - "requires": { - "debug": "^2.2.0", - "fs-extra": "^0.30.0", - "home-path": "^1.0.1", - "minimist": "^1.2.0", - "nugget": "^2.0.0", - "path-exists": "^2.1.0", - "rc": "^1.1.2", - "semver": "^5.3.0", - "sumchecker": "^1.2.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - }, - "semver": { - "version": "5.7.1", - "optional": true - } - } - }, - "electron-eval": { - "version": "0.9.10", - "optional": true, - "requires": { - "cross-spawn": "^5.1.0", - "electron": "^1.6.11", - "headless": "https://github.com/paulkernfeld/node-headless/tarball/master", - "ndjson": "^1.5.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "optional": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "lru-cache": { - "version": "4.1.5", - "optional": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "shebang-command": { - "version": "1.2.0", - "optional": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "optional": true - }, - "which": { - "version": "1.3.1", - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "yallist": { - "version": "2.1.2", - "optional": true - } - } - }, - "electron-fetch": { - "version": "1.7.4", - "requires": { - "encoding": "^0.1.13" - } - }, - "electron-to-chromium": { - "version": "1.3.749" - }, - "electron-webrtc": { - "version": "0.3.0", - "optional": true, - "requires": { - "debug": "^2.2.0", - "electron-eval": "^0.9.0", - "get-browser-rtc": "^1.0.2", - "hat": "^0.0.3" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - } - } - }, - "elliptic": { - "version": "6.5.4", - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "emittery": { - "version": "0.13.1", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0" - }, - "emojis-list": { - "version": "3.0.0" - }, - "encodeurl": { - "version": "1.0.2" - }, - "encoding": { - "version": "0.1.13", - "requires": { - "iconv-lite": "^0.6.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.2", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "end-of-stream": { - "version": "1.4.4", - "requires": { - "once": "^1.4.0" - } - }, - "engine.io": { - "version": "6.4.0", - "requires": { - "@types/cookie": "^0.4.1", - "@types/cors": "^2.8.12", - "@types/node": ">=10.0.0", - "accepts": "~1.3.4", - "base64id": "2.0.0", - "cookie": "~0.4.1", - "cors": "~2.8.5", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.11.0" - } - }, - "engine.io-client": { - "version": "6.2.3", - "requires": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", - "xmlhttprequest-ssl": "~2.0.0" - }, - "dependencies": { - "ws": { - "version": "8.2.3", - "requires": {} - } - } - }, - "engine.io-parser": { - "version": "5.0.4" - }, - "enhanced-resolve": { - "version": "5.15.0", - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "envinfo": { - "version": "7.8.1", - "dev": true - }, - "err-code": { - "version": "3.0.1" - }, - "errno": { - "version": "0.1.8", - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-module-lexer": { - "version": "0.9.3" - }, - "es-to-primitive": { - "version": "1.2.1", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es6-object-assign": { - "version": "1.1.0" - }, - "es6-promise": { - "version": "4.2.8", - "optional": true - }, - "escalade": { - "version": "3.1.1" - }, - "escape-goat": { - "version": "4.0.0" - }, - "escape-html": { - "version": "1.0.3" - }, - "escape-string-regexp": { - "version": "1.0.5" - }, - "eslint-scope": { - "version": "5.1.1", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "esprima": { - "version": "4.0.1", - "dev": true - }, - "esrecurse": { - "version": "4.3.0", - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0" - } - } - }, - "estraverse": { - "version": "4.3.0" - }, - "etag": { - "version": "1.8.1" - }, - "ethers": { - "version": "5.7.2", - "requires": { - "@ethersproject/abi": "5.7.0", - "@ethersproject/abstract-provider": "5.7.0", - "@ethersproject/abstract-signer": "5.7.0", - "@ethersproject/address": "5.7.0", - "@ethersproject/base64": "5.7.0", - "@ethersproject/basex": "5.7.0", - "@ethersproject/bignumber": "5.7.0", - "@ethersproject/bytes": "5.7.0", - "@ethersproject/constants": "5.7.0", - "@ethersproject/contracts": "5.7.0", - "@ethersproject/hash": "5.7.0", - "@ethersproject/hdnode": "5.7.0", - "@ethersproject/json-wallets": "5.7.0", - "@ethersproject/keccak256": "5.7.0", - "@ethersproject/logger": "5.7.0", - "@ethersproject/networks": "5.7.1", - "@ethersproject/pbkdf2": "5.7.0", - "@ethersproject/properties": "5.7.0", - "@ethersproject/providers": "5.7.2", - "@ethersproject/random": "5.7.0", - "@ethersproject/rlp": "5.7.0", - "@ethersproject/sha2": "5.7.0", - "@ethersproject/signing-key": "5.7.0", - "@ethersproject/solidity": "5.7.0", - "@ethersproject/strings": "5.7.0", - "@ethersproject/transactions": "5.7.0", - "@ethersproject/units": "5.7.0", - "@ethersproject/wallet": "5.7.0", - "@ethersproject/web": "5.7.1", - "@ethersproject/wordlists": "5.7.0" - } - }, - "event-iterator": { - "version": "2.0.0" - }, - "event-target-shim": { - "version": "5.0.1" - }, - "eventemitter3": { - "version": "4.0.7" - }, - "events": { - "version": "3.3.0" - }, - "evp_bytestokey": { - "version": "1.0.3", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "execa": { - "version": "5.1.1", - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "exit": { - "version": "0.1.2", - "dev": true - }, - "expect": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/expect-utils": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2" - }, - "dependencies": { - "jest-get-type": { - "version": "29.4.2", - "dev": true - } - } - }, - "express": { - "version": "4.18.2", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "cookie": { - "version": "0.5.0" - }, - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - }, - "path-to-regexp": { - "version": "0.1.7" - } - } - }, - "extend": { - "version": "3.0.2", - "optional": true - }, - "external-editor": { - "version": "3.1.0", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "dependencies": { - "tmp": { - "version": "0.0.33", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - } - } - }, - "extract-zip": { - "version": "1.7.0", - "optional": true, - "requires": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - } - } - }, - "extsprintf": { - "version": "1.3.0", - "optional": true - }, - "fast-deep-equal": { - "version": "3.1.3" - }, - "fast-fifo": { - "version": "1.0.0" - }, - "fast-json-stable-stringify": { - "version": "2.1.0" - }, - "fast-redact": { - "version": "3.1.2" - }, - "fast-safe-stringify": { - "version": "2.1.1" - }, - "fast-write-atomic": { - "version": "0.2.1" - }, - "fastest-levenshtein": { - "version": "1.0.16", - "dev": true - }, - "fb-watchman": { - "version": "2.0.1", - "requires": { - "bser": "2.1.1" - } - }, - "fd-slicer": { - "version": "1.1.0", - "optional": true, - "requires": { - "pend": "~1.2.0" - } - }, - "fetch-mock": { - "version": "9.11.0", - "dev": true, - "requires": { - "@babel/core": "^7.0.0", - "@babel/runtime": "^7.0.0", - "core-js": "^3.0.0", - "debug": "^4.1.1", - "glob-to-regexp": "^0.4.0", - "is-subset": "^0.1.1", - "lodash.isequal": "^4.5.0", - "path-to-regexp": "^2.2.1", - "querystring": "^0.2.0", - "whatwg-url": "^6.5.0" - }, - "dependencies": { - "tr46": { - "version": "1.0.1", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "dev": true - }, - "whatwg-url": { - "version": "6.5.0", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } - } - }, - "fetch-mock-jest": { - "version": "1.5.1", - "dev": true, - "requires": { - "fetch-mock": "^9.11.0" - } - }, - "figures": { - "version": "3.2.0", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-type": { - "version": "18.2.0", - "requires": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0", - "token-types": "^5.0.1" - } - }, - "file-uri-to-path": { - "version": "1.0.0" - }, - "filelist": { - "version": "1.0.4", - "requires": { - "minimatch": "^5.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.6", - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "filesize": { - "version": "10.0.6" - }, - "fill-range": { - "version": "7.0.1", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.2.0", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - } - } - }, - "flatstr": { - "version": "1.0.12" - }, - "fnv1a": { - "version": "1.1.1" - }, - "follow-redirects": { - "version": "1.14.1" - }, - "foreach": { - "version": "2.0.5" - }, - "forever-agent": { - "version": "0.6.1", - "optional": true - }, - "fork-ts-checker-webpack-plugin": { - "version": "8.0.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.5" - } - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "fs-extra": { - "version": "10.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "form-data": { - "version": "3.0.0", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "form-data-encoder": { - "version": "2.1.4" - }, - "formidable": { - "version": "2.1.1", - "requires": { - "dezalgo": "^1.0.4", - "hexoid": "^1.0.0", - "once": "^1.4.0", - "qs": "^6.11.0" - } - }, - "freeport-promise": { - "version": "2.0.0" - }, - "fresh": { - "version": "0.5.2" - }, - "fs-extra": { - "version": "0.30.0", - "optional": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - }, - "dependencies": { - "rimraf": { - "version": "2.7.1", - "optional": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "fs-minipass": { - "version": "2.1.0", - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "fs-monkey": { - "version": "1.0.4", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0" - }, - "function-bind": { - "version": "1.1.1" - }, - "function-timeout": { - "version": "0.1.1" - }, - "gar": { - "version": "1.0.4" - }, - "gauge": { - "version": "3.0.2", - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "dev": true - }, - "get-browser-rtc": { - "version": "1.1.0", - "optional": true - }, - "get-caller-file": { - "version": "2.0.5" - }, - "get-folder-size": { - "version": "4.0.0", - "requires": { - "gar": "^1.0.4" - } - }, - "get-intrinsic": { - "version": "1.1.1", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "get-iterator": { - "version": "1.0.2" - }, - "get-package-type": { - "version": "0.1.0", - "dev": true - }, - "get-port": { - "version": "5.1.1" - }, - "get-stream": { - "version": "6.0.1" - }, - "get-symbol-description": { - "version": "1.0.0", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "getpass": { - "version": "0.1.7", - "optional": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.2.0", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1" - }, - "global-dirs": { - "version": "3.0.1", - "requires": { - "ini": "2.0.0" - }, - "dependencies": { - "ini": { - "version": "2.0.0" - } - } - }, - "go-ipfs": { - "version": "npm:mocked-go-ipfs@0.17.0" - }, - "graceful-fs": { - "version": "4.2.10" - }, - "hamt-sharding": { - "version": "3.0.2", - "requires": { - "sparse-array": "^1.3.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "hapi-pino": { - "version": "8.5.0", - "requires": { - "@hapi/hoek": "^9.0.0", - "abstract-logging": "^2.0.0", - "pino": "^6.0.0", - "pino-pretty": "^4.0.0" - } - }, - "har-schema": { - "version": "2.0.0", - "optional": true - }, - "har-validator": { - "version": "5.1.5", - "optional": true, - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.1" - }, - "has-flag": { - "version": "3.0.0" - }, - "has-own-prop": { - "version": "2.0.0", - "dev": true - }, - "has-symbols": { - "version": "1.0.2" - }, - "has-tostringtag": { - "version": "1.0.0", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-unicode": { - "version": "2.0.1" - }, - "has-yarn": { - "version": "3.0.0" - }, - "hash-base": { - "version": "3.1.0", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "hash.js": { - "version": "1.1.7", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "hashlru": { - "version": "2.3.0" - }, - "hat": { - "version": "0.0.3", - "optional": true - }, - "he": { - "version": "1.2.0" - }, - "header-case": { - "version": "2.0.4", - "requires": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "headless": { - "version": "1.1.0", - "optional": true - }, - "hexoid": { - "version": "1.0.0" - }, - "hmac-drbg": { - "version": "1.0.1", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "home-path": { - "version": "1.0.7", - "optional": true - }, - "html-escaper": { - "version": "2.0.2", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.0" - }, - "http-errors": { - "version": "2.0.0", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-proxy": { - "version": "1.18.1", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-server": { - "version": "0.12.3", - "requires": { - "basic-auth": "^1.0.3", - "colors": "^1.4.0", - "corser": "^2.0.1", - "ecstatic": "^3.3.2", - "http-proxy": "^1.18.0", - "minimist": "^1.2.5", - "opener": "^1.5.1", - "portfinder": "^1.0.25", - "secure-compare": "3.0.1", - "union": "~0.5.0" - } - }, - "http-signature": { - "version": "1.2.0", - "optional": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-proxy-agent": { - "version": "5.0.0", - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0" - }, - "iconv-lite": { - "version": "0.4.24", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1" - }, - "image-size": { - "version": "1.0.1", - "requires": { - "queue": "6.0.2" - } - }, - "import-fresh": { - "version": "3.3.0", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "import-lazy": { - "version": "4.0.0" - }, - "import-local": { - "version": "3.1.0", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - } - } - }, - "imurmurhash": { - "version": "0.1.4" - }, - "indent-string": { - "version": "4.0.0" - }, - "inflight": { - "version": "1.0.6", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4" - }, - "ini": { - "version": "1.3.8" - }, - "inquirer": { - "version": "8.2.5", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "interface-blockstore": { - "version": "4.0.1", - "requires": { - "interface-store": "^3.0.0", - "multiformats": "^11.0.0" - } - }, - "interface-datastore": { - "version": "7.0.4", - "requires": { - "interface-store": "^3.0.0", - "nanoid": "^4.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "nanoid": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "interface-store": { - "version": "3.0.4" - }, - "internal-slot": { - "version": "1.0.3", - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "interpret": { - "version": "3.1.1", - "dev": true - }, - "ip": { - "version": "1.1.5" - }, - "ip-regex": { - "version": "4.3.0" - }, - "ipaddr.js": { - "version": "1.9.1" - }, - "ipfs": { - "version": "0.66.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "electron-webrtc": "^0.3.0", - "ipfs-cli": "^0.16.0", - "ipfs-core": "^0.18.0", - "semver": "^7.3.2", - "update-notifier": "^6.0.0", - "wrtc": "^0.4.6" - } - }, - "ipfs-bitswap": { - "version": "15.0.2", - "requires": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/topology": "^4.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@vascosantos/moving-average": "^1.1.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "blockstore-core": "^3.0.0", - "interface-blockstore": "^4.0.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "just-debounce-it": "^3.0.1", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "readable-stream": "^4.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0", - "varint-decoder": "^1.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "readable-stream": { - "version": "4.3.0", - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-cli": { - "version": "0.16.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "byteman": "^1.3.5", - "execa": "^6.1.0", - "get-folder-size": "^4.0.0", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-daemon": "^0.16.0", - "ipfs-http-client": "^60.0.0", - "ipfs-utils": "^9.0.13", - "it-concat": "^3.0.1", - "it-merge": "^2.0.0", - "it-pipe": "^2.0.3", - "it-split": "^2.0.0", - "it-tar": "^6.0.0", - "jsondiffpatch": "^0.4.1", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "pretty-bytes": "^6.0.0", - "progress": "^2.0.3", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2", - "yargs": "^17.4.0" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "execa": { - "version": "6.1.0", - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - } - }, - "human-signals": { - "version": "3.0.1" - }, - "is-stream": { - "version": "3.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "mimic-fn": { - "version": "4.0.0" - }, - "npm-run-path": { - "version": "5.1.0", - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0" - }, - "strip-final-newline": { - "version": "3.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-core": { - "version": "0.18.0", - "requires": { - "@chainsafe/libp2p-noise": "^11.0.0", - "@ipld/car": "^5.0.0", - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/bootstrap": "^6.0.0", - "@libp2p/crypto": "^1.0.0", - "@libp2p/delegated-content-routing": "^4.0.0", - "@libp2p/delegated-peer-routing": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.6", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/kad-dht": "^7.0.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/mplex": "^7.1.1", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/websockets": "^5.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.1.5", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "@multiformats/murmur3": "^2.0.0", - "any-signal": "^3.0.0", - "array-shuffle": "^3.0.0", - "blockstore-core": "^3.0.0", - "browser-readablestream-to-it": "^2.0.0", - "dag-jose": "^4.0.0", - "datastore-core": "^8.0.1", - "datastore-pubsub": "^7.0.0", - "dlv": "^1.1.3", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "hashlru": "^2.3.0", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-bitswap": "^15.0.0", - "ipfs-core-config": "^0.7.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-client": "^60.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-unixfs-exporter": "^10.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "ipfs-utils": "^9.0.9", - "ipns": "^5.0.1", - "is-domain-name": "^1.0.1", - "is-ipfs": "^8.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-tar": "^6.0.0", - "it-to-buffer": "^3.0.0", - "just-safe-set": "^4.0.2", - "libp2p": "^0.42.0", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "pako": "^2.0.4", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-core-config": { - "version": "0.7.0", - "requires": { - "@chainsafe/libp2p-gossipsub": "^6.0.0", - "@libp2p/floodsub": "^6.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/mdns": "^6.0.0", - "@libp2p/prometheus-metrics": "^1.0.1", - "@libp2p/tcp": "^6.0.2", - "@libp2p/webrtc-star": "^6.0.0", - "blockstore-datastore-adapter": "^5.0.0", - "datastore-core": "^8.0.1", - "datastore-fs": "^8.0.0", - "datastore-level": "^9.0.0", - "err-code": "^3.0.1", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-utils": "^9.0.13", - "is-ipfs": "^8.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-foreach": "^1.0.0", - "p-queue": "^7.2.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-core-types": { - "version": "0.14.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/node": "^18.0.0", - "interface-datastore": "^7.0.0", - "ipfs-unixfs": "^9.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@types/node": { - "version": "18.11.19" - } - } - }, - "ipfs-core-utils": { - "version": "0.18.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "any-signal": "^3.0.0", - "blob-to-it": "^2.0.0", - "browser-readablestream-to-it": "^2.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-utils": "^9.0.13", - "it-all": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "nanoid": "^4.0.0", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "nanoid": { - "version": "4.0.1" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-daemon": { - "version": "0.16.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "@libp2p/webrtc-star": "^6.0.0", - "@mapbox/node-pre-gyp": "^1.0.5", - "electron-webrtc": "^0.3.0", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-server": "^0.12.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-http-server": "^0.15.0", - "ipfs-utils": "^9.0.13", - "libp2p": "^0.42.0", - "prom-client": "^14.0.1", - "wrtc": "^0.4.6" - } - }, - "ipfs-grpc-protocol": { - "version": "0.8.0" - }, - "ipfs-grpc-server": { - "version": "0.12.0", - "requires": { - "@grpc/grpc-js": "^1.1.8", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "change-case": "^4.1.1", - "coercer": "^1.1.2", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-protocol": "^0.8.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "nanoid": "^4.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "ws": "^8.5.0" - }, - "dependencies": { - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - }, - "long": { - "version": "5.2.1" - }, - "nanoid": { - "version": "4.0.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-http-client": { - "version": "60.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "any-signal": "^3.0.0", - "dag-jose": "^4.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-utils": "^9.0.13", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-first": { - "version": "2.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-http-gateway": { - "version": "0.13.0", - "requires": { - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/logger": "^2.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-http-response": "^6.0.0", - "is-ipfs": "^8.0.0", - "it-last": "^2.0.0", - "it-to-stream": "^1.0.0", - "joi": "^17.2.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-http-response": { - "version": "6.0.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "ejs": "^3.1.6", - "file-type": "^18.0.0", - "filesize": "^10.0.5", - "it-map": "^2.0.0", - "it-reader": "^6.0.1", - "it-to-stream": "^1.0.0", - "mime-types": "^2.1.30", - "p-try-each": "^1.0.1" - }, - "dependencies": { - "it-map": { - "version": "2.0.0" - } - } - }, - "ipfs-http-server": { - "version": "0.15.0", - "requires": { - "@hapi/boom": "^9.1.0", - "@hapi/content": "^5.0.2", - "@hapi/hapi": "^20.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "any-signal": "^3.0.0", - "dlv": "^1.1.3", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-multipart": "^3.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reduce": "^2.0.0", - "joi": "^17.2.1", - "just-safe-set": "^4.0.2", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "prom-client": "^14.0.1", - "stream-to-it": "^0.2.2", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-log": { - "version": "5.4.2", - "requires": { - "json-stringify-deterministic": "^1.0.1", - "multihashing-async": "^2.0.1", - "orbit-db-identity-provider": "^0.3.1", - "orbit-db-io": "^1.1.2", - "p-do-whilst": "^1.1.0", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-whilst": "^2.1.0" - }, - "dependencies": { - "iso-random-stream": { - "version": "1.1.2", - "requires": { - "buffer": "^6.0.3", - "readable-stream": "^3.4.0" - } - }, - "libp2p-crypto": { - "version": "0.16.4", - "requires": { - "asmcrypto.js": "^2.3.2", - "asn1.js": "^5.0.1", - "async": "^2.6.1", - "bn.js": "^4.11.8", - "browserify-aes": "^1.2.0", - "bs58": "^4.0.1", - "iso-random-stream": "^1.1.0", - "keypair": "^1.0.1", - "libp2p-crypto-secp256k1": "~0.3.0", - "multihashing-async": "~0.5.1", - "node-forge": "^0.10.0", - "pem-jwk": "^2.0.0", - "protons": "^1.0.1", - "rsa-pem-to-jwk": "^1.1.3", - "tweetnacl": "^1.0.0", - "ursa-optional": "~0.10.0" - }, - "dependencies": { - "multihashing-async": { - "version": "0.5.2", - "requires": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - } - } - } - }, - "multibase": { - "version": "0.7.0", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - } - } - }, - "multiformats": { - "version": "9.9.0" - }, - "multihashes": { - "version": "0.4.21", - "requires": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - } - } - }, - "orbit-db-identity-provider": { - "version": "0.3.1", - "requires": { - "ethers": "^5.0.8", - "orbit-db-keystore": "~0.3.5" - } - }, - "orbit-db-io": { - "version": "1.1.2", - "requires": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - } - }, - "orbit-db-keystore": { - "version": "0.3.5", - "requires": { - "elliptic": "^6.5.3", - "level": "8.0.0", - "leveldown": "^6", - "levelup": "~4.1.0", - "libp2p-crypto": "^0.16.0", - "libp2p-crypto-secp256k1": "^0.3.0", - "lru": "^3.1.0", - "mkdirp": "^0.5.5", - "safe-buffer": "^5.2.1" - } - }, - "tweetnacl": { - "version": "1.0.3" - }, - "varint": { - "version": "5.0.2" - } - } - }, - "ipfs-pubsub-1on1": { - "version": "0.1.0", - "requires": { - "safe-buffer": "~5.2.1" - } - }, - "ipfs-pubsub-peer-monitor": { - "version": "0.0.10", - "requires": { - "p-forever": "^2.1.0" - } - }, - "ipfs-repo": { - "version": "17.0.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "bytes": "^3.1.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-repo-migrations": "^15.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "just-safe-get": "^4.1.1", - "just-safe-set": "^4.1.1", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "proper-lockfile": "^4.0.0", - "quick-lru": "^6.1.1", - "sort-keys": "^5.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-parallel-batch": { - "version": "2.0.0", - "requires": { - "it-batch": "^2.0.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "quick-lru": { - "version": "6.1.1" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-repo-migrations": { - "version": "15.0.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "fnv1a": "^1.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-length": "^2.0.0", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-unixfs": { - "version": "9.0.0", - "requires": { - "err-code": "^3.0.1", - "protobufjs": "^7.0.0" - }, - "dependencies": { - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - } - } - }, - "ipfs-unixfs-exporter": { - "version": "10.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-map": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-unixfs-importer": { - "version": "12.0.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-batch": "^2.0.0", - "it-first": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "rabin-wasm": "^0.1.4", - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-all": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-parallel-batch": { - "version": "2.0.0", - "requires": { - "it-batch": "^2.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-utils": { - "version": "9.0.14", - "requires": { - "any-signal": "^3.0.0", - "browser-readablestream-to-it": "^1.0.0", - "buffer": "^6.0.1", - "electron-fetch": "^1.7.2", - "err-code": "^3.0.1", - "is-electron": "^2.2.0", - "iso-url": "^1.1.5", - "it-all": "^1.0.4", - "it-glob": "^1.0.1", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "nanoid": "^3.1.20", - "native-fetch": "^3.0.0", - "node-fetch": "^2.6.8", - "react-native-fetch-api": "^3.0.0", - "stream-to-it": "^0.2.2" - }, - "dependencies": { - "browser-readablestream-to-it": { - "version": "1.0.3" - } - } - }, - "ipfsd-ctl": { - "version": "12.2.2", - "peer": true, - "requires": { - "@hapi/boom": "^10.0.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/interface-peer-id": "^1.0.4", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "execa": "^6.1.0", - "ipfs-utils": "^9.0.1", - "joi": "^17.2.1", - "merge-options": "^3.0.1", - "nanoid": "^4.0.0", - "p-wait-for": "^5.0.0", - "temp-write": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "dependencies": { - "@hapi/boom": { - "version": "10.0.0", - "peer": true, - "requires": { - "@hapi/hoek": "10.x.x" - } - }, - "@hapi/hoek": { - "version": "10.0.1", - "peer": true - }, - "execa": { - "version": "6.1.0", - "peer": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - } - }, - "human-signals": { - "version": "3.0.1", - "peer": true - }, - "is-stream": { - "version": "3.0.0", - "peer": true - }, - "mimic-fn": { - "version": "4.0.0", - "peer": true - }, - "nanoid": { - "version": "4.0.0", - "peer": true - }, - "npm-run-path": { - "version": "5.1.0", - "peer": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "peer": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0", - "peer": true - }, - "strip-final-newline": { - "version": "3.0.0", - "peer": true - }, - "wherearewe": { - "version": "2.0.1", - "peer": true, - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "ipns": { - "version": "5.0.1", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "cborg": "^1.3.3", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "timestamp-nano": "^1.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "is-arguments": { - "version": "1.1.1", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-arrayish": { - "version": "0.2.1", - "dev": true - }, - "is-bigint": { - "version": "1.0.4", - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-buffer": { - "version": "2.0.5" - }, - "is-callable": { - "version": "1.2.4" - }, - "is-core-module": { - "version": "2.8.0", - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-domain-name": { - "version": "1.0.1" - }, - "is-electron": { - "version": "2.2.1" - }, - "is-extglob": { - "version": "2.1.1", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0" - }, - "is-generator-fn": { - "version": "2.1.0", - "dev": true - }, - "is-generator-function": { - "version": "1.0.10", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-glob": { - "version": "4.0.3", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.4.0", - "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - } - }, - "is-interactive": { - "version": "1.0.0", - "dev": true - }, - "is-ip": { - "version": "3.1.0", - "requires": { - "ip-regex": "^4.0.0" - } - }, - "is-ipfs": { - "version": "8.0.1", - "requires": { - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "iso-url": "^1.1.3", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "is-nan": { - "version": "1.3.2", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "is-negative-zero": { - "version": "2.0.1" - }, - "is-node": { - "version": "1.0.2" - }, - "is-npm": { - "version": "6.0.0" - }, - "is-number": { - "version": "7.0.0" - }, - "is-number-object": { - "version": "1.0.6", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-obj": { - "version": "2.0.0" - }, - "is-path-inside": { - "version": "3.0.3" - }, - "is-plain-obj": { - "version": "2.1.0" - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-promise": { - "version": "1.0.1" - }, - "is-regex": { - "version": "1.1.4", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-regexp": { - "version": "3.1.0" - }, - "is-shared-array-buffer": { - "version": "1.0.1" - }, - "is-stream": { - "version": "2.0.1" - }, - "is-string": { - "version": "1.0.7", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-subset": { - "version": "0.1.1", - "dev": true - }, - "is-symbol": { - "version": "1.0.4", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.8", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0" - }, - "dependencies": { - "es-abstract": { - "version": "1.19.1", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - } - }, - "object-keys": { - "version": "1.1.1" - } - } - }, - "is-typedarray": { - "version": "1.0.0" - }, - "is-unicode-supported": { - "version": "0.1.0", - "dev": true - }, - "is-weakref": { - "version": "1.0.1", - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-yarn-global": { - "version": "0.4.1" - }, - "isarray": { - "version": "1.0.0" - }, - "isexe": { - "version": "2.0.0" - }, - "iso-constants": { - "version": "0.1.2" - }, - "iso-random-stream": { - "version": "2.0.2", - "requires": { - "events": "^3.3.0", - "readable-stream": "^3.4.0" - } - }, - "iso-url": { - "version": "1.2.1" - }, - "isobject": { - "version": "3.0.1", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "optional": true - }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "5.2.1", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "dev": true - } - } - }, - "istanbul-lib-report": { - "version": "3.0.0", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - } - }, - "istanbul-reports": { - "version": "3.1.5", - "dev": true, - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "it-all": { - "version": "1.0.6" - }, - "it-batch": { - "version": "2.0.0" - }, - "it-batched-bytes": { - "version": "1.0.0", - "requires": { - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.4.1" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-concat": { - "version": "3.0.1", - "requires": { - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-drain": { - "version": "1.0.5" - }, - "it-filter": { - "version": "1.0.3" - }, - "it-first": { - "version": "1.0.7" - }, - "it-foreach": { - "version": "1.0.0" - }, - "it-glob": { - "version": "1.0.2", - "requires": { - "@types/minimatch": "^3.0.4", - "minimatch": "^3.0.4" - } - }, - "it-handshake": { - "version": "4.1.2", - "requires": { - "it-pushable": "^3.1.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.0.0" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.0" - }, - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-last": { - "version": "2.0.0" - }, - "it-length": { - "version": "2.0.0" - }, - "it-length-prefixed": { - "version": "8.0.4", - "requires": { - "err-code": "^3.0.1", - "it-stream-types": "^1.0.4", - "uint8-varint": "^1.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-map": { - "version": "1.0.6" - }, - "it-merge": { - "version": "1.0.4", - "requires": { - "it-pushable": "^1.4.0" - } - }, - "it-multipart": { - "version": "3.0.0", - "requires": { - "formidable": "^2.0.1", - "it-pushable": "^3.1.0" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.2" - } - } - }, - "it-pair": { - "version": "2.0.3", - "requires": { - "it-stream-types": "^1.0.3", - "p-defer": "^4.0.0" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-parallel": { - "version": "3.0.0", - "requires": { - "p-defer": "^4.0.0" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-parallel-batch": { - "version": "1.0.11", - "requires": { - "it-batch": "^1.0.9" - }, - "dependencies": { - "it-batch": { - "version": "1.0.9" - } - } - }, - "it-pb-stream": { - "version": "2.0.2", - "requires": { - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - } - }, - "it-peekable": { - "version": "2.0.0" - }, - "it-pipe": { - "version": "2.0.5", - "requires": { - "it-merge": "^2.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.3" - }, - "dependencies": { - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - } - } - }, - "it-pushable": { - "version": "1.4.2", - "requires": { - "fast-fifo": "^1.0.0" - } - }, - "it-reader": { - "version": "6.0.2", - "requires": { - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - } - }, - "it-reduce": { - "version": "2.0.0" - }, - "it-sort": { - "version": "2.0.0", - "requires": { - "it-all": "^2.0.0" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - } - } - }, - "it-split": { - "version": "2.0.1", - "requires": { - "uint8arraylist": "^2.4.1" - } - }, - "it-stream-types": { - "version": "1.0.4" - }, - "it-take": { - "version": "1.0.2" - }, - "it-tar": { - "version": "6.0.1", - "requires": { - "iso-constants": "^0.1.2", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "it-to-buffer": "^3.0.0", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-to-buffer": { - "version": "3.0.0", - "requires": { - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-to-stream": { - "version": "1.0.0", - "requires": { - "buffer": "^6.0.3", - "fast-fifo": "^1.0.0", - "get-iterator": "^1.0.2", - "p-defer": "^3.0.0", - "p-fifo": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "it-ws": { - "version": "5.0.6", - "requires": { - "event-iterator": "^2.0.0", - "iso-url": "^1.1.2", - "it-stream-types": "^1.0.2", - "uint8arrays": "^4.0.2", - "ws": "^8.4.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "iterare": { - "version": "1.2.1" - }, - "jake": { - "version": "10.8.5", - "requires": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "async": { - "version": "3.2.4" - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/core": "^29.4.2", - "@jest/types": "^29.4.2", - "import-local": "^3.0.2", - "jest-cli": "^29.4.2" - } - }, - "jest-changed-files": { - "version": "29.4.2", - "dev": true, - "requires": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" - }, - "dependencies": { - "p-limit": { - "version": "3.1.0", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "yocto-queue": { - "version": "0.1.0", - "dev": true - } - } - }, - "jest-circus": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "p-limit": "^3.1.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yocto-queue": { - "version": "0.1.0", - "dev": true - } - } - }, - "jest-cli": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/core": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-config": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.4.2", - "@jest/types": "^29.4.2", - "babel-jest": "^29.4.2", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "parse-json": { - "version": "5.2.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-diff": { - "version": "29.4.2", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-docblock": { - "version": "29.4.2", - "dev": true, - "requires": { - "detect-newline": "^3.0.0" - } - }, - "jest-each": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "jest-util": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-environment-node": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - } - }, - "jest-get-type": { - "version": "27.5.1" - }, - "jest-haste-map": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - } - }, - "jest-leak-detector": { - "version": "29.4.2", - "dev": true, - "requires": { - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - } - } - }, - "jest-matcher-utils": { - "version": "29.4.2", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-message-util": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.4.2", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "dev": true, - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-mock": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-util": "^29.4.2" - } - }, - "jest-pnp-resolver": { - "version": "1.2.3", - "requires": {} - }, - "jest-regex-util": { - "version": "29.4.2", - "devOptional": true - }, - "jest-resolve": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "resolve.exports": { - "version": "2.0.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-resolve-dependencies": { - "version": "29.4.2", - "dev": true, - "requires": { - "jest-regex-util": "^29.4.2", - "jest-snapshot": "^29.4.2" - } - }, - "jest-runner": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/console": "^29.4.2", - "@jest/environment": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-leak-detector": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-util": "^29.4.2", - "jest-watcher": "^29.4.2", - "jest-worker": "^29.4.2", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "buffer-from": { - "version": "1.1.2", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.13", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yocto-queue": { - "version": "0.1.0", - "dev": true - } - } - }, - "jest-runtime": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/globals": "^29.4.2", - "@jest/source-map": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "semver": "^7.3.5", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "strip-bom": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-serializer": { - "version": "27.5.1", - "requires": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - } - }, - "jest-snapshot": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "natural-compare": "^1.4.0", - "pretty-format": "^29.4.2", - "semver": "^7.3.5" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-util": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-validate": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/types": "^29.4.2", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "leven": "^3.1.0", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "6.3.0", - "devOptional": true - }, - "chalk": { - "version": "4.1.2", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "jest-get-type": { - "version": "29.4.2", - "devOptional": true - }, - "leven": { - "version": "3.1.0", - "devOptional": true - }, - "pretty-format": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "devOptional": true - } - } - }, - "react-is": { - "version": "18.2.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-watcher": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.4.2", - "string-length": "^4.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-worker": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.4.2", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "supports-color": { - "version": "8.1.1", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jmespath": { - "version": "0.15.0" - }, - "joi": { - "version": "17.8.1", - "requires": { - "@hapi/address": "^5.1.0", - "@hapi/formula": "^3.0.2", - "@hapi/hoek": "^11.0.2", - "@hapi/pinpoint": "^2.0.1", - "@hapi/tlds": "^1.0.1", - "@hapi/topo": "^6.0.1" - }, - "dependencies": { - "@hapi/hoek": { - "version": "11.0.2" - }, - "@hapi/topo": { - "version": "6.0.1", - "requires": { - "@hapi/hoek": "^11.0.2" - } - } - } - }, - "joycon": { - "version": "2.2.5" - }, - "js-sha3": { - "version": "0.8.0" - }, - "js-tokens": { - "version": "4.0.0", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "1.1.0" - }, - "jsesc": { - "version": "2.5.2", - "dev": true - }, - "json-buffer": { - "version": "3.0.1" - }, - "json-parse-even-better-errors": { - "version": "2.3.1" - }, - "json-schema": { - "version": "0.4.0", - "optional": true - }, - "json-schema-traverse": { - "version": "0.4.1" - }, - "json-stringify-deterministic": { - "version": "1.0.8" - }, - "json-stringify-safe": { - "version": "5.0.1", - "optional": true - }, - "jsonc-parser": { - "version": "3.2.0", - "dev": true - }, - "jsondiffpatch": { - "version": "0.4.1", - "requires": { - "chalk": "^2.3.0", - "diff-match-patch": "^1.0.0" - } - }, - "jsonfile": { - "version": "2.4.0", - "optional": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsprim": { - "version": "1.4.2", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "just-debounce-it": { - "version": "3.2.0" - }, - "just-safe-get": { - "version": "4.2.0" - }, - "just-safe-set": { - "version": "4.2.1" - }, - "k-bucket": { - "version": "5.1.0", - "requires": { - "randombytes": "^2.1.0" - } - }, - "keypair": { - "version": "1.0.4" - }, - "keyv": { - "version": "4.5.2", - "requires": { - "json-buffer": "3.0.1" - } - }, - "kind-of": { - "version": "6.0.3", - "dev": true - }, - "klaw": { - "version": "1.3.1", - "optional": true, - "requires": { - "graceful-fs": "^4.1.9" - } - }, - "kleur": { - "version": "3.0.3", - "dev": true - }, - "latest-version": { - "version": "7.0.0", - "requires": { - "package-json": "^8.1.0" - } - }, - "level": { - "version": "8.0.0", - "requires": { - "browser-level": "^1.0.1", - "classic-level": "^1.2.0" - } - }, - "level-concat-iterator": { - "version": "3.1.0", - "requires": { - "catering": "^2.1.0" - } - }, - "level-errors": { - "version": "2.0.1", - "requires": { - "errno": "~0.1.1" - } - }, - "level-iterator-stream": { - "version": "4.0.2", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.4.0", - "xtend": "^4.0.2" - } - }, - "level-supports": { - "version": "2.1.0" - }, - "level-transcoder": { - "version": "1.0.1", - "requires": { - "buffer": "^6.0.3", - "module-error": "^1.0.1" - } - }, - "leveldown": { - "version": "6.1.1", - "requires": { - "abstract-leveldown": "^7.2.0", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - } - }, - "levelup": { - "version": "4.1.0", - "requires": { - "deferred-leveldown": "~5.1.0", - "level-errors": "~2.0.0", - "level-iterator-stream": "~4.0.0", - "xtend": "~4.0.0" - } - }, - "leven": { - "version": "2.1.0" - }, - "libp2p": { - "version": "0.42.2", - "requires": { - "@achingbrain/nat-port-mapper": "^1.0.3", - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-encrypter": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-libp2p": "^1.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-routing": "^1.0.1", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/multistream-select": "^3.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/peer-store": "^6.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-foreach": "^1.0.0", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-pair": "^2.0.2", - "it-pipe": "^2.0.3", - "it-sort": "^2.0.0", - "it-stream-types": "^1.0.4", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "node-forge": "^1.3.1", - "p-fifo": "^1.0.0", - "p-retry": "^5.0.0", - "p-settle": "^5.0.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "rate-limiter-flexible": "^2.3.11", - "retimer": "^3.0.0", - "sanitize-filename": "^1.6.3", - "set-delayed-interval": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2", - "wherearewe": "^2.0.0", - "xsalsa20": "^1.1.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/peer-record": { - "version": "5.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "ip-regex": { - "version": "5.0.0" - }, - "ipaddr.js": { - "version": "2.0.1" - }, - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.0" - }, - "node-forge": { - "version": "1.3.1" - }, - "private-ip": { - "version": "3.0.0", - "requires": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - } - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - }, - "wherearewe": { - "version": "2.0.1", - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "libp2p-crypto": { - "version": "0.21.2", - "requires": { - "@noble/ed25519": "^1.5.1", - "@noble/secp256k1": "^1.3.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.0", - "multiformats": "^9.4.5", - "node-forge": "^1.2.1", - "protobufjs": "^6.11.2", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - }, - "node-forge": { - "version": "1.3.1" - } - } - }, - "libp2p-crypto-secp256k1": { - "version": "0.3.1", - "requires": { - "async": "^2.6.2", - "bs58": "^4.0.1", - "multihashing-async": "~0.6.0", - "nodeify": "^1.0.1", - "safe-buffer": "^5.1.2", - "secp256k1": "^3.6.2" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "multibase": { - "version": "0.7.0", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "multihashes": { - "version": "0.4.21", - "requires": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "multihashing-async": { - "version": "0.6.0", - "requires": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - } - }, - "secp256k1": { - "version": "3.8.0", - "requires": { - "bindings": "^1.5.0", - "bip66": "^1.1.5", - "bn.js": "^4.11.8", - "create-hash": "^1.2.0", - "drbg.js": "^1.0.1", - "elliptic": "^6.5.2", - "nan": "^2.14.0", - "safe-buffer": "^5.1.2" - } - }, - "varint": { - "version": "5.0.2" - } - } - }, - "libphonenumber-js": { - "version": "1.9.44" - }, - "lines-and-columns": { - "version": "1.2.4", - "dev": true - }, - "loader-runner": { - "version": "4.3.0" - }, - "loader-utils": { - "version": "2.0.4", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "dependencies": { - "json5": { - "version": "2.2.3" - } - } - }, - "lodash": { - "version": "4.17.21" - }, - "lodash.camelcase": { - "version": "4.3.0" - }, - "lodash.isequal": { - "version": "4.5.0", - "dev": true - }, - "lodash.memoize": { - "version": "4.1.2", - "dev": true - }, - "lodash.sortby": { - "version": "4.7.0", - "dev": true - }, - "log-symbols": { - "version": "4.1.0", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "logplease": { - "version": "1.2.15" - }, - "long": { - "version": "4.0.0" - }, - "longbits": { - "version": "1.1.0", - "requires": { - "byte-access": "^1.0.1", - "uint8arraylist": "^2.0.0" - } - }, - "lower-case": { - "version": "2.0.2", - "requires": { - "tslib": "^2.0.3" - } - }, - "lru": { - "version": "3.1.0", - "requires": { - "inherits": "^2.0.1" - } - }, - "lru-cache": { - "version": "6.0.0", - "requires": { - "yallist": "^4.0.0" - } - }, - "luxon": { - "version": "1.28.0" - }, - "macos-release": { - "version": "2.5.1", - "dev": true - }, - "magic-string": { - "version": "0.30.0", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } - }, - "make-dir": { - "version": "3.1.0", - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0" - } - } - }, - "make-error": { - "version": "1.3.6", - "dev": true - }, - "makeerror": { - "version": "1.0.12", - "requires": { - "tmpl": "1.0.5" - } - }, - "md5.js": { - "version": "1.3.5", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "media-typer": { - "version": "0.3.0" - }, - "memfs": { - "version": "3.5.3", - "dev": true, - "requires": { - "fs-monkey": "^1.0.4" - } - }, - "merge-descriptors": { - "version": "1.0.1" - }, - "merge-options": { - "version": "3.0.4", - "requires": { - "is-plain-obj": "^2.1.0" - } - }, - "merge-stream": { - "version": "2.0.0" - }, - "methods": { - "version": "1.1.2" - }, - "micromatch": { - "version": "4.0.4", - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - } - }, - "mime": { - "version": "1.6.0" - }, - "mime-db": { - "version": "1.51.0" - }, - "mime-types": { - "version": "2.1.34", - "requires": { - "mime-db": "1.51.0" - } - }, - "mimic-fn": { - "version": "2.1.0" - }, - "minimalistic-assert": { - "version": "1.0.1" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1" - }, - "minimatch": { - "version": "3.0.4", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8" - }, - "minipass": { - "version": "4.2.8" - }, - "minizlib": { - "version": "2.1.2", - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "mkdirp": { - "version": "0.5.5", - "requires": { - "minimist": "^1.2.5" - } - }, - "mock-fs": { - "version": "5.1.2", - "dev": true - }, - "module-error": { - "version": "1.0.2" - }, - "mortice": { - "version": "3.0.1", - "requires": { - "nanoid": "^4.0.0", - "observable-webworkers": "^2.0.1", - "p-queue": "^7.2.0", - "p-timeout": "^6.0.0" - }, - "dependencies": { - "nanoid": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.0", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "dependencies": { - "p-timeout": { - "version": "5.1.0" - } - } - }, - "p-timeout": { - "version": "6.0.0" - } - } - }, - "mri": { - "version": "1.1.4" - }, - "ms": { - "version": "2.1.2" - }, - "multer": { - "version": "1.4.4-lts.1", - "requires": { - "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", - "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" - } - }, - "multiaddr": { - "version": "10.0.1", - "requires": { - "dns-over-http-resolver": "^1.2.3", - "err-code": "^3.0.1", - "is-ip": "^3.1.0", - "multiformats": "^9.4.5", - "uint8arrays": "^3.0.0", - "varint": "^6.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "multibase": { - "version": "4.0.6", - "requires": { - "@multiformats/base-x": "^4.0.1" - } - }, - "multicast-dns": { - "version": "7.2.5", - "requires": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - } - }, - "multiformats": { - "version": "11.0.2" - }, - "multihashes": { - "version": "4.0.3", - "requires": { - "multibase": "^4.0.1", - "uint8arrays": "^3.0.0", - "varint": "^5.0.2" - }, - "dependencies": { - "varint": { - "version": "5.0.2" - } - } - }, - "multihashing-async": { - "version": "2.1.4", - "requires": { - "blakejs": "^1.1.0", - "err-code": "^3.0.0", - "js-sha3": "^0.8.0", - "multihashes": "^4.0.1", - "murmurhash3js-revisited": "^3.0.0", - "uint8arrays": "^3.0.0" - } - }, - "murmurhash3js": { - "version": "3.0.1" - }, - "murmurhash3js-revisited": { - "version": "3.0.0" - }, - "mute-stream": { - "version": "0.0.8", - "dev": true - }, - "nan": { - "version": "2.17.0" - }, - "nanoid": { - "version": "3.3.4" - }, - "napi-macros": { - "version": "2.0.0" - }, - "native-fetch": { - "version": "3.0.0", - "requires": {} - }, - "natural-compare": { - "version": "1.4.0", - "dev": true - }, - "ndjson": { - "version": "1.5.0", - "optional": true, - "requires": { - "json-stringify-safe": "^5.0.1", - "minimist": "^1.2.0", - "split2": "^2.1.0", - "through2": "^2.0.3" - } - }, - "negotiator": { - "version": "0.6.3" - }, - "neo-async": { - "version": "2.6.2" - }, - "netmask": { - "version": "2.0.2" - }, - "nice-try": { - "version": "1.0.5", - "dev": true - }, - "no-case": { - "version": "3.0.4", - "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node-abort-controller": { - "version": "3.1.1", - "dev": true - }, - "node-addon-api": { - "version": "2.0.2" - }, - "node-emoji": { - "version": "1.11.0", - "dev": true, - "requires": { - "lodash": "^4.17.21" - } - }, - "node-fetch": { - "version": "2.6.9", - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "node-forge": { - "version": "0.10.0" - }, - "node-gyp-build": { - "version": "4.3.0" - }, - "node-int64": { - "version": "0.4.0" - }, - "node-releases": { - "version": "1.1.77" - }, - "nodeify": { - "version": "1.0.1", - "requires": { - "is-promise": "~1.0.0", - "promise": "~1.3.0" - } - }, - "nopt": { - "version": "5.0.0", - "requires": { - "abbrev": "1" - } - }, - "normalize-path": { - "version": "3.0.0" - }, - "npm-run-path": { - "version": "4.0.1", - "requires": { - "path-key": "^3.0.0" - } - }, - "npmlog": { - "version": "5.0.1", - "requires": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "nugget": { - "version": "2.2.0", - "optional": true, - "requires": { - "debug": "^2.1.3", - "minimist": "^1.1.0", - "pretty-bytes": "^4.0.2", - "progress-stream": "^1.1.0", - "request": "^2.45.0", - "single-line-log": "^1.1.2", - "throttleit": "0.0.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - }, - "pretty-bytes": { - "version": "4.0.2", - "optional": true - } - } - }, - "number-is-nan": { - "version": "1.0.1", - "optional": true - }, - "oauth-sign": { - "version": "0.9.0", - "optional": true - }, - "object-assign": { - "version": "4.1.1" - }, - "object-inspect": { - "version": "1.11.1" - }, - "object-is": { - "version": "1.1.5", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "object-keys": { - "version": "0.4.0", - "optional": true - }, - "object.assign": { - "version": "4.1.2", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "dependencies": { - "object-keys": { - "version": "1.1.1" - } - } - }, - "observable-webworkers": { - "version": "2.0.1" - }, - "on-finished": { - "version": "2.4.1", - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "opener": { - "version": "1.5.2" - }, - "optimist": { - "version": "0.3.7", - "requires": { - "wordwrap": "~0.0.2" - } - }, - "ora": { - "version": "5.4.1", - "dev": true, - "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "bl": { - "version": "4.1.0", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "buffer": { - "version": "5.7.1", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "orbit-db": { - "version": "0.29.0", - "requires": { - "ipfs-pubsub-1on1": "^0.1.0", - "is-node": "^1.0.2", - "logplease": "^1.2.15", - "orbit-db-access-controllers": "^0.4.0", - "orbit-db-cache": "^0.5.0", - "orbit-db-counterstore": "^2.0.0", - "orbit-db-docstore": "^2.0.0", - "orbit-db-eventstore": "^2.0.0", - "orbit-db-feedstore": "^2.0.0", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "orbit-db-keystore": "^2.0.0", - "orbit-db-kvstore": "^2.0.0", - "orbit-db-pubsub": "^0.7.0", - "orbit-db-storage-adapter": "^0.9.0", - "orbit-db-store": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "aggregate-error": { - "version": "4.0.1", - "requires": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - } - }, - "clean-stack": { - "version": "4.2.0", - "requires": { - "escape-string-regexp": "5.0.0" - } - }, - "crdts": { - "version": "0.2.0" - }, - "escape-string-regexp": { - "version": "5.0.0" - }, - "indent-string": { - "version": "5.0.0" - }, - "ipfs-log": { - "version": "6.0.0", - "requires": { - "json-stringify-deterministic": "^1.0.8", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "p-do-whilst": "^2.0.0", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-whilst": "^3.0.0" - }, - "dependencies": { - "p-map": { - "version": "5.5.0", - "requires": { - "aggregate-error": "^4.0.0" - } - } - } - }, - "orbit-db-cache": { - "version": "0.5.0", - "requires": { - "logplease": "~1.2.15" - } - }, - "orbit-db-counterstore": { - "version": "2.0.0", - "requires": { - "crdts": "^0.2.0" - } - }, - "orbit-db-docstore": { - "version": "2.0.0", - "requires": { - "p-map": "~1.1.1" - } - }, - "orbit-db-eventstore": { - "version": "2.0.0", - "requires": {} - }, - "orbit-db-feedstore": { - "version": "2.0.0", - "requires": { - "orbit-db-eventstore": "*" - } - }, - "orbit-db-io": { - "version": "3.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - } - }, - "orbit-db-kvstore": { - "version": "2.0.0", - "requires": {} - }, - "orbit-db-pubsub": { - "version": "0.7.0", - "requires": { - "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "orbit-db-store": { - "version": "5.0.0", - "requires": { - "ipfs-log": "^6.0.0", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.15", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-queue": "^7.3.0", - "readable-stream": "~4.3.0" - }, - "dependencies": { - "p-map": { - "version": "5.5.0", - "requires": { - "aggregate-error": "^4.0.0" - } - } - } - }, - "p-do-whilst": { - "version": "2.0.0" - }, - "p-each-series": { - "version": "3.0.0" - }, - "p-map": { - "version": "1.1.1" - }, - "p-whilst": { - "version": "3.0.0" - }, - "readable-stream": { - "version": "4.3.0", - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - } - }, - "wherearewe": { - "version": "2.0.1", - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "orbit-db-access-controllers": { - "version": "0.4.0", - "requires": { - "orbit-db-io": "^3.0.0", - "p-map-series": "^3.0.0", - "safe-buffer": "^5.2.1" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.2", - "requires": { - "multiformats": "^11.0.0" - } - }, - "orbit-db-io": { - "version": "3.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - } - } - } - }, - "orbit-db-identity-provider": { - "version": "0.5.0", - "requires": { - "@ethersproject/wallet": "^5.7.0", - "assert": "^2.0.0", - "dids": "^3.4.0", - "lru": "^3.1.0", - "orbit-db-keystore": "^2.0.0", - "path-browserify": "^1.0.1", - "stream-browserify": "^3.0.0", - "uint8arrays": "^4.0.3" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "orbit-db-io": { - "version": "1.0.2", - "requires": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "orbit-db-keystore": { - "version": "2.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "elliptic": "^6.5.4", - "level": "8.0.0", - "lru": "^3.1.0", - "mkdirp": "^2.1.1", - "safe-buffer": "^5.2.1", - "secp256k1": "^5.0.0" - }, - "dependencies": { - "mkdirp": { - "version": "2.1.6" - }, - "node-addon-api": { - "version": "5.1.0" - }, - "secp256k1": { - "version": "5.0.0", - "requires": { - "elliptic": "^6.5.4", - "node-addon-api": "^5.0.0", - "node-gyp-build": "^4.2.0" - } - } - } - }, - "orbit-db-pubsub": { - "version": "0.6.0", - "requires": { - "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "orbit-db-storage-adapter": { - "version": "0.9.0", - "requires": { - "level": "8.0.0", - "mkdirp": "^2.1.1" - }, - "dependencies": { - "mkdirp": { - "version": "2.1.3" - } - } - }, - "orbit-db-store": { - "version": "4.3.4", - "requires": { - "ipfs-log": "^5.4.1", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.14", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-queue": "^6.6.2", - "readable-stream": "~3.6.0" - }, - "dependencies": { - "p-queue": { - "version": "6.6.2", - "requires": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - } - }, - "p-timeout": { - "version": "3.2.0", - "requires": { - "p-finally": "^1.0.0" - } - } - } - }, - "os-name": { - "version": "4.0.1", - "dev": true, - "requires": { - "macos-release": "^2.5.0", - "windows-release": "^4.0.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "dev": true - }, - "p-defer": { - "version": "3.0.0" - }, - "p-do-whilst": { - "version": "1.1.0" - }, - "p-each-series": { - "version": "2.2.0" - }, - "p-event": { - "version": "5.0.1", - "requires": { - "p-timeout": "^5.0.2" - } - }, - "p-fifo": { - "version": "1.0.0", - "requires": { - "fast-fifo": "^1.0.0", - "p-defer": "^3.0.0" - } - }, - "p-finally": { - "version": "1.0.0" - }, - "p-forever": { - "version": "2.1.0" - }, - "p-limit": { - "version": "2.3.0", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-map": { - "version": "4.0.0", - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-map-series": { - "version": "3.0.0" - }, - "p-queue": { - "version": "7.3.4", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "p-reduce": { - "version": "1.0.0" - }, - "p-reflect": { - "version": "3.1.0" - }, - "p-retry": { - "version": "5.1.1", - "requires": { - "@types/retry": "0.12.1", - "retry": "^0.13.1" - }, - "dependencies": { - "retry": { - "version": "0.13.1" - } - } - }, - "p-series": { - "version": "1.1.0", - "requires": { - "@sindresorhus/is": "^0.7.0", - "p-reduce": "^1.0.0" - }, - "dependencies": { - "@sindresorhus/is": { - "version": "0.7.0" - } - } - }, - "p-settle": { - "version": "5.1.0", - "requires": { - "p-limit": "^4.0.0", - "p-reflect": "^3.1.0" - }, - "dependencies": { - "p-limit": { - "version": "4.0.0", - "requires": { - "yocto-queue": "^1.0.0" - } - } - } - }, - "p-timeout": { - "version": "5.1.0" - }, - "p-try": { - "version": "2.2.0", - "dev": true - }, - "p-try-each": { - "version": "1.0.1" - }, - "p-wait-for": { - "version": "5.0.0", - "peer": true, - "requires": { - "p-timeout": "^6.0.0" - }, - "dependencies": { - "p-timeout": { - "version": "6.0.0", - "peer": true - } - } - }, - "p-whilst": { - "version": "2.1.0" - }, - "package-json": { - "version": "8.1.0", - "requires": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" - }, - "dependencies": { - "@sindresorhus/is": { - "version": "5.3.0" - }, - "@szmarczak/http-timer": { - "version": "5.0.1", - "requires": { - "defer-to-connect": "^2.0.1" - } - }, - "cacheable-lookup": { - "version": "7.0.0" - }, - "cacheable-request": { - "version": "10.2.3", - "requires": { - "@types/http-cache-semantics": "^4.0.1", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.0", - "keyv": "^4.5.2", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - } - }, - "got": { - "version": "12.5.3", - "requires": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.1", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - } - }, - "http2-wrapper": { - "version": "2.2.0", - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - } - }, - "lowercase-keys": { - "version": "3.0.0" - }, - "mimic-response": { - "version": "4.0.0" - }, - "normalize-url": { - "version": "8.0.0" - }, - "p-cancelable": { - "version": "3.0.0" - }, - "responselike": { - "version": "3.0.0", - "requires": { - "lowercase-keys": "^3.0.0" - } - } - } - }, - "pako": { - "version": "2.1.0" - }, - "param-case": { - "version": "3.0.4", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "parent-module": { - "version": "1.0.1", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-duration": { - "version": "1.0.2" - }, - "parseurl": { - "version": "1.3.3" - }, - "pascal-case": { - "version": "3.1.2", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-browserify": { - "version": "1.0.1" - }, - "path-case": { - "version": "3.0.4", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-exists": { - "version": "2.1.0", - "optional": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1" - }, - "path-key": { - "version": "3.1.1" - }, - "path-parse": { - "version": "1.0.7" - }, - "path-scurry": { - "version": "1.9.2", - "dev": true, - "requires": { - "lru-cache": "^9.1.1", - "minipass": "^5.0.0 || ^6.0.2" - }, - "dependencies": { - "lru-cache": { - "version": "9.1.2", - "dev": true - }, - "minipass": { - "version": "6.0.2", - "dev": true - } - } - }, - "path-to-regexp": { - "version": "2.4.0", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "dev": true - }, - "peek-readable": { - "version": "5.0.0" - }, - "peer-id": { - "version": "0.16.0", - "requires": { - "class-is": "^1.1.0", - "libp2p-crypto": "^0.21.0", - "multiformats": "^9.4.5", - "protobufjs": "^6.10.2", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "pem-jwk": { - "version": "2.0.0", - "requires": { - "asn1.js": "^5.0.1" - } - }, - "pend": { - "version": "1.2.0", - "optional": true - }, - "performance-now": { - "version": "2.1.0", - "optional": true - }, - "picomatch": { - "version": "2.3.0" - }, - "pinkie": { - "version": "2.0.4", - "optional": true - }, - "pinkie-promise": { - "version": "2.0.1", - "optional": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "pino": { - "version": "6.14.0", - "requires": { - "fast-redact": "^3.0.0", - "fast-safe-stringify": "^2.0.8", - "flatstr": "^1.0.12", - "pino-std-serializers": "^3.1.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "sonic-boom": "^1.0.2" - } - }, - "pino-pretty": { - "version": "4.8.0", - "requires": { - "@hapi/bourne": "^2.0.0", - "args": "^5.0.1", - "chalk": "^4.0.0", - "dateformat": "^4.5.1", - "fast-safe-stringify": "^2.0.7", - "jmespath": "^0.15.0", - "joycon": "^2.2.5", - "pump": "^3.0.0", - "readable-stream": "^3.6.0", - "rfdc": "^1.3.0", - "split2": "^3.1.1", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "split2": { - "version": "3.2.2", - "requires": { - "readable-stream": "^3.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "pino-std-serializers": { - "version": "3.2.0" - }, - "pirates": { - "version": "4.0.5", - "dev": true - }, - "pkijs": { - "version": "3.0.8", - "requires": { - "asn1js": "^3.0.5", - "bytestreamjs": "^2.0.0", - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - } - }, - "platform": { - "version": "1.3.6" - }, - "pluralize": { - "version": "8.0.0", - "dev": true - }, - "portfinder": { - "version": "1.0.28", - "requires": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "pretty-bytes": { - "version": "6.1.0" - }, - "pretty-format": { - "version": "27.5.1", - "requires": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0" - } - } - }, - "private-ip": { - "version": "2.3.3", - "requires": { - "ip-regex": "^4.3.0", - "ipaddr.js": "^2.0.1", - "is-ip": "^3.1.0", - "netmask": "^2.0.2" - }, - "dependencies": { - "ipaddr.js": { - "version": "2.0.1" - } - } - }, - "process": { - "version": "0.11.10" - }, - "process-nextick-args": { - "version": "2.0.1" - }, - "process-warning": { - "version": "1.0.0" - }, - "progress": { - "version": "2.0.3" - }, - "progress-stream": { - "version": "1.2.0", - "optional": true, - "requires": { - "speedometer": "~0.1.2", - "through2": "~0.2.3" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "optional": true - }, - "readable-stream": { - "version": "1.1.14", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "optional": true - }, - "through2": { - "version": "0.2.3", - "optional": true, - "requires": { - "readable-stream": "~1.1.9", - "xtend": "~2.1.1" - } - }, - "xtend": { - "version": "2.1.2", - "optional": true, - "requires": { - "object-keys": "~0.4.0" - } - } - } - }, - "prom-client": { - "version": "14.1.1", - "requires": { - "tdigest": "^0.1.1" - } - }, - "promise": { - "version": "1.3.0", - "requires": { - "is-promise": "~1" - } - }, - "prompts": { - "version": "2.4.2", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "proper-lockfile": { - "version": "4.1.2", - "requires": { - "graceful-fs": "^4.2.4", - "retry": "^0.12.0", - "signal-exit": "^3.0.2" - } - }, - "proto-list": { - "version": "1.2.4" - }, - "protobufjs": { - "version": "6.11.2", - "requires": { - "@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.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - } - }, - "protocol-buffers-schema": { - "version": "3.6.0" - }, - "protons": { - "version": "1.2.1", - "requires": { - "buffer": "^5.5.0", - "protocol-buffers-schema": "^3.3.1", - "signed-varint": "^2.0.1", - "varint": "^5.0.0" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "varint": { - "version": "5.0.2" - } - } - }, - "protons-runtime": { - "version": "4.0.1", - "requires": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.3.2" - }, - "dependencies": { - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.1.2", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - } - } - }, - "proxy-addr": { - "version": "2.0.7", - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "dependencies": { - "forwarded": { - "version": "0.2.0" - } - } - }, - "prr": { - "version": "1.0.1" - }, - "pseudomap": { - "version": "1.0.2", - "optional": true - }, - "psl": { - "version": "1.9.0", - "optional": true - }, - "pump": { - "version": "3.0.0", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "2.1.1" - }, - "pupa": { - "version": "3.1.0", - "requires": { - "escape-goat": "^4.0.0" - } - }, - "pvtsutils": { - "version": "1.3.2", - "requires": { - "tslib": "^2.4.0" - } - }, - "pvutils": { - "version": "1.1.3" - }, - "qs": { - "version": "6.11.0", - "requires": { - "side-channel": "^1.0.4" - } - }, - "querystring": { - "version": "0.2.1", - "dev": true - }, - "queue": { - "version": "6.0.2", - "requires": { - "inherits": "~2.0.3" - } - }, - "queue-microtask": { - "version": "1.2.3" - }, - "quick-format-unescaped": { - "version": "4.0.4" - }, - "quick-lru": { - "version": "5.1.1" - }, - "rabin-wasm": { - "version": "0.1.5", - "requires": { - "@assemblyscript/loader": "^0.9.4", - "bl": "^5.0.0", - "debug": "^4.3.1", - "minimist": "^1.2.5", - "node-fetch": "^2.6.1", - "readable-stream": "^3.6.0" - } - }, - "randombytes": { - "version": "2.1.0", - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.1" - }, - "rate-limiter-flexible": { - "version": "2.4.1" - }, - "raw-body": { - "version": "2.5.1", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "rc": { - "version": "1.2.8", - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "strip-json-comments": { - "version": "2.0.1" - } - } - }, - "react-is": { - "version": "17.0.2" - }, - "react-native-fetch-api": { - "version": "3.0.0", - "requires": { - "p-defer": "^3.0.0" - } - }, - "readable-stream": { - "version": "3.6.0", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readable-web-to-node-stream": { - "version": "3.0.2", - "requires": { - "readable-stream": "^3.6.0" - } - }, - "readdirp": { - "version": "3.6.0", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "receptacle": { - "version": "1.3.2", - "requires": { - "ms": "^2.1.1" - } - }, - "rechoir": { - "version": "0.8.0", - "dev": true, - "requires": { - "resolve": "^1.20.0" - } - }, - "reflect-metadata": { - "version": "0.1.13" - }, - "regenerator-runtime": { - "version": "0.13.11", - "dev": true - }, - "registry-auth-token": { - "version": "5.0.1", - "requires": { - "@pnpm/npm-conf": "^1.0.4" - } - }, - "registry-url": { - "version": "6.0.1", - "requires": { - "rc": "1.2.8" - } - }, - "repeat-string": { - "version": "1.6.1", - "dev": true - }, - "request": { - "version": "2.88.2", - "optional": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "form-data": { - "version": "2.3.3", - "optional": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "qs": { - "version": "6.5.3", - "optional": true - } - } - }, - "require-directory": { - "version": "2.1.1" - }, - "require-from-string": { - "version": "2.0.2", - "dev": true - }, - "requires-port": { - "version": "1.0.0" - }, - "resolve": { - "version": "1.20.0", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "resolve-alpn": { - "version": "1.2.1" - }, - "resolve-cwd": { - "version": "3.0.0", - "dev": true, - "requires": { - "resolve-from": "^5.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "5.0.0", - "dev": true - } - } - }, - "resolve-from": { - "version": "4.0.0", - "dev": true - }, - "resolve.exports": { - "version": "1.1.0" - }, - "restore-cursor": { - "version": "3.1.0", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "retimer": { - "version": "3.0.0" - }, - "retry": { - "version": "0.12.0" - }, - "rfdc": { - "version": "1.3.0" - }, - "rimraf": { - "version": "3.0.2", - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "rpc-utils": { - "version": "0.6.2", - "requires": { - "nanoid": "^3.3.1" - } - }, - "rsa-pem-to-jwk": { - "version": "1.1.3", - "requires": { - "object-assign": "^2.0.0", - "rsa-unpack": "0.0.6" - }, - "dependencies": { - "object-assign": { - "version": "2.1.1" - } - } - }, - "rsa-unpack": { - "version": "0.0.6", - "requires": { - "optimist": "~0.3.5" - } - }, - "run-async": { - "version": "2.4.1", - "dev": true - }, - "run-parallel-limit": { - "version": "1.1.0", - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "run-script-os": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz", - "integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==", - "dev": true - }, - "rxjs": { - "version": "7.8.1", - "requires": { - "tslib": "^2.1.0" - } - }, - "safe-buffer": { - "version": "5.2.1" - }, - "safer-buffer": { - "version": "2.1.2" - }, - "sanitize-filename": { - "version": "1.6.3", - "requires": { - "truncate-utf8-bytes": "^1.0.0" - } - }, - "sax": { - "version": "1.2.4" - }, - "schema-utils": { - "version": "3.2.0", - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "scrypt-js": { - "version": "3.0.1" - }, - "secp256k1": { - "version": "4.0.3", - "requires": { - "elliptic": "^6.5.4", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - } - }, - "secure-compare": { - "version": "3.0.1" - }, - "semver": { - "version": "7.3.8", - "requires": { - "lru-cache": "^6.0.0" - } - }, - "semver-diff": { - "version": "4.0.0", - "requires": { - "semver": "^7.3.5" - } - }, - "send": { - "version": "0.18.0", - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0" - } - } - }, - "ms": { - "version": "2.1.3" - } - } - }, - "sentence-case": { - "version": "3.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "serialize-javascript": { - "version": "6.0.1", - "requires": { - "randombytes": "^2.1.0" - } - }, - "serve-static": { - "version": "1.15.0", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "set-blocking": { - "version": "2.0.0" - }, - "set-delayed-interval": { - "version": "1.0.0" - }, - "setprototypeof": { - "version": "1.2.0" - }, - "sha.js": { - "version": "2.4.11", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shallow-clone": { - "version": "3.0.1", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - } - }, - "shebang-command": { - "version": "2.0.0", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0" - }, - "shelljs": { - "version": "0.8.5", - "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "dependencies": { - "interpret": { - "version": "1.4.0", - "dev": true - }, - "rechoir": { - "version": "0.6.2", - "dev": true, - "requires": { - "resolve": "^1.1.6" - } - } - } - }, - "side-channel": { - "version": "1.0.4", - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "3.0.7" - }, - "signed-varint": { - "version": "2.0.1", - "requires": { - "varint": "~5.0.0" - }, - "dependencies": { - "varint": { - "version": "5.0.2" - } - } - }, - "single-line-log": { - "version": "1.1.2", - "optional": true, - "requires": { - "string-width": "^1.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "sisteransi": { - "version": "1.0.5", - "dev": true - }, - "slash": { - "version": "3.0.0" - }, - "smart-buffer": { - "version": "4.2.0" - }, - "snake-case": { - "version": "3.0.4", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "socket.io": { - "version": "4.6.0", - "requires": { - "accepts": "~1.3.4", - "base64id": "~2.0.0", - "debug": "~4.3.2", - "engine.io": "~6.4.0", - "socket.io-adapter": "~2.5.2", - "socket.io-parser": "~4.2.1" - } - }, - "socket.io-adapter": { - "version": "2.5.2", - "requires": { - "ws": "~8.11.0" - } - }, - "socket.io-client": { - "version": "4.5.4", - "requires": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.2", - "engine.io-client": "~6.2.3", - "socket.io-parser": "~4.2.1" - } - }, - "socket.io-parser": { - "version": "4.2.1", - "requires": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1" - } - }, - "socks": { - "version": "2.6.1", - "requires": { - "ip": "^1.1.5", - "smart-buffer": "^4.1.0" - } - }, - "socks-proxy-agent": { - "version": "5.0.1", - "requires": { - "agent-base": "^6.0.2", - "debug": "4", - "socks": "^2.3.3" - } - }, - "sonic-boom": { - "version": "1.4.1", - "requires": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" - } - }, - "sort-keys": { - "version": "5.0.0", - "requires": { - "is-plain-obj": "^4.0.0" - }, - "dependencies": { - "is-plain-obj": { - "version": "4.1.0" - } - } - }, - "source-map": { - "version": "0.6.1" - }, - "source-map-support": { - "version": "0.5.21", - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "buffer-from": { - "version": "1.1.2" - } - } - }, - "sparse-array": { - "version": "1.3.2" - }, - "speedometer": { - "version": "0.1.4", - "optional": true - }, - "split2": { - "version": "2.2.0", - "optional": true, - "requires": { - "through2": "^2.0.2" - } - }, - "sprintf-js": { - "version": "1.1.2" - }, - "sshpk": { - "version": "1.17.0", - "optional": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "dependencies": { - "jsbn": { - "version": "0.1.1", - "optional": true - } - } - }, - "stack-utils": { - "version": "2.0.6", - "dev": true, - "requires": { - "escape-string-regexp": "^2.0.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "2.0.0", - "dev": true - } - } - }, - "statuses": { - "version": "2.0.1" - }, - "stream-browserify": { - "version": "3.0.0", - "requires": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "stream-to-it": { - "version": "0.2.4", - "requires": { - "get-iterator": "^1.0.2" - } - }, - "streamsearch": { - "version": "1.1.0" - }, - "string_decoder": { - "version": "1.3.0", - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-length": { - "version": "4.0.2", - "dev": true, - "requires": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - } - }, - "string-replace-loader": { - "version": "3.1.0", - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - } - }, - "string-width": { - "version": "4.2.3", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "strip-ansi": { - "version": "6.0.1", - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0" - }, - "strip-json-comments": { - "version": "3.1.1" - }, - "strtok3": { - "version": "7.0.0", - "requires": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - } - }, - "sumchecker": { - "version": "1.3.1", - "optional": true, - "requires": { - "debug": "^2.2.0", - "es6-promise": "^4.0.5" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - } - } - }, - "super-regex": { - "version": "0.2.0", - "requires": { - "clone-regexp": "^3.0.0", - "function-timeout": "^0.1.0", - "time-span": "^5.1.0" - } - }, - "supports-color": { - "version": "5.5.0", - "requires": { - "has-flag": "^3.0.0" - } - }, - "symbol-observable": { - "version": "4.0.0", - "dev": true - }, - "tapable": { - "version": "2.2.1" - }, - "tar": { - "version": "6.1.13", - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4" - } - } - }, - "tdigest": { - "version": "0.1.2", - "requires": { - "bintrees": "1.0.2" - } - }, - "temp-dir": { - "version": "2.0.0", - "peer": true - }, - "temp-write": { - "version": "5.0.0", - "peer": true, - "requires": { - "graceful-fs": "^4.2.6", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "uuid": "^8.3.2" - }, - "dependencies": { - "uuid": { - "version": "8.3.2", - "peer": true - } - } - }, - "terser": { - "version": "5.18.0", - "requires": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "dependencies": { - "acorn": { - "version": "8.8.2" - }, - "commander": { - "version": "2.20.3" - } - } - }, - "terser-webpack-plugin": { - "version": "5.3.9", - "requires": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0" - }, - "jest-worker": { - "version": "27.5.1", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - } - }, - "supports-color": { - "version": "8.1.1", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "test-exclude": { - "version": "6.0.0", - "dev": true, - "requires": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - } - }, - "throttleit": { - "version": "0.0.2", - "optional": true - }, - "through": { - "version": "2.3.8", - "dev": true - }, - "through2": { - "version": "2.0.5", - "optional": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "thunky": { - "version": "1.1.0" - }, - "time-span": { - "version": "5.1.0", - "requires": { - "convert-hrtime": "^5.0.0" - } - }, - "timeout-abort-controller": { - "version": "3.0.0", - "requires": { - "retimer": "^3.0.0" - } - }, - "timestamp-nano": { - "version": "1.0.1" - }, - "tmp": { - "version": "0.2.1", - "dev": true, - "requires": { - "rimraf": "^3.0.0" - } - }, - "tmpl": { - "version": "1.0.5" - }, - "to-fast-properties": { - "version": "2.0.0", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "requires": { - "is-number": "^7.0.0" - } - }, - "toidentifier": { - "version": "1.0.1" - }, - "token-types": { - "version": "5.0.1", - "requires": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - } - }, - "tough-cookie": { - "version": "2.5.0", - "optional": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "0.0.3" - }, - "tree-kill": { - "version": "1.2.2", - "dev": true - }, - "truncate-utf8-bytes": { - "version": "1.0.2", - "requires": { - "utf8-byte-length": "^1.0.1" - } - }, - "ts-jest": { - "version": "29.0.5", - "dev": true, - "requires": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "7.x", - "yargs-parser": "^21.0.1" - }, - "dependencies": { - "json5": { - "version": "2.2.3", - "dev": true - }, - "yargs-parser": { - "version": "21.1.1", - "dev": true - } - } - }, - "ts-jest-resolver": { - "version": "2.0.0", - "requires": { - "jest-resolve": "^27.2.5" - }, - "dependencies": { - "@jest/types": { - "version": "27.5.1", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.5", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "6.3.0" - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "jest-haste-map": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - } - }, - "jest-regex-util": { - "version": "27.5.1" - }, - "jest-resolve": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - } - }, - "jest-util": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-validate": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - } - }, - "jest-worker": { - "version": "27.5.1", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "leven": { - "version": "3.1.0" - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "ts-loader": { - "version": "9.4.2", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "ts-node": { - "version": "10.9.1", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "dependencies": { - "acorn": { - "version": "8.8.1", - "dev": true - } - } - }, - "tsconfig-paths-webpack-plugin": { - "version": "4.0.1", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.1.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "json5": { - "version": "2.2.3", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "requires": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - } - } - }, - "tslib": { - "version": "2.5.3" - }, - "tunnel-agent": { - "version": "0.6.0", - "optional": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "optional": true - }, - "type-detect": { - "version": "4.0.8", - "dev": true - }, - "type-fest": { - "version": "2.19.0" - }, - "type-is": { - "version": "1.6.18", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedarray": { - "version": "0.0.6" - }, - "typedarray-to-buffer": { - "version": "3.1.5", - "requires": { - "is-typedarray": "^1.0.0" - } - }, - "typescript": { - "version": "4.9.5", - "dev": true - }, - "uid": { - "version": "2.0.2", - "requires": { - "@lukeed/csprng": "^1.0.0" - } - }, - "uint8-varint": { - "version": "1.0.4", - "requires": { - "byte-access": "^1.0.0", - "longbits": "^1.1.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "uint8arraylist": { - "version": "2.4.2", - "requires": { - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "uint8arrays": { - "version": "3.0.0", - "requires": { - "multiformats": "^9.4.2" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "unbox-primitive": { - "version": "1.0.1", - "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - } - }, - "undici": { - "version": "5.12.0", - "peer": true, - "requires": { - "busboy": "^1.6.0" - } - }, - "union": { - "version": "0.5.0", - "requires": { - "qs": "^6.4.0" - } - }, - "unique-string": { - "version": "3.0.0", - "requires": { - "crypto-random-string": "^4.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "dev": true - }, - "unpipe": { - "version": "1.0.0" - }, - "update-notifier": { - "version": "6.0.2", - "requires": { - "boxen": "^7.0.0", - "chalk": "^5.0.1", - "configstore": "^6.0.0", - "has-yarn": "^3.0.0", - "import-lazy": "^4.0.0", - "is-ci": "^3.0.1", - "is-installed-globally": "^0.4.0", - "is-npm": "^6.0.0", - "is-yarn-global": "^0.4.0", - "latest-version": "^7.0.0", - "pupa": "^3.1.0", - "semver": "^7.3.7", - "semver-diff": "^4.0.0", - "xdg-basedir": "^5.1.0" - }, - "dependencies": { - "chalk": { - "version": "5.1.2" - }, - "is-ci": { - "version": "3.0.1", - "requires": { - "ci-info": "^3.2.0" - } - } - } - }, - "upper-case": { - "version": "2.0.2", - "requires": { - "tslib": "^2.0.3" - } - }, - "upper-case-first": { - "version": "2.0.2", - "requires": { - "tslib": "^2.0.3" - } - }, - "uri-js": { - "version": "4.4.1", - "requires": { - "punycode": "^2.1.0" - } - }, - "url-join": { - "version": "2.0.5" - }, - "ursa-optional": { - "version": "0.10.2", - "requires": { - "bindings": "^1.5.0", - "nan": "^2.14.2" - } - }, - "utf8-byte-length": { - "version": "1.0.4" - }, - "util": { - "version": "0.12.4", - "requires": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - }, - "util-deprecate": { - "version": "1.0.2" - }, - "utils-merge": { - "version": "1.0.1" - }, - "uuid": { - "version": "3.4.0", - "optional": true - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "dev": true - }, - "v8-to-istanbul": { - "version": "9.0.1", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - } - }, - "validator": { - "version": "13.7.0" - }, - "varint": { - "version": "6.0.0" - }, - "varint-decoder": { - "version": "1.0.0", - "requires": { - "varint": "^5.0.0" - }, - "dependencies": { - "varint": { - "version": "5.0.2" - } - } - }, - "vary": { - "version": "1.1.2" - }, - "verror": { - "version": "1.10.0", - "optional": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "wait-for-expect": { - "version": "3.0.2", - "dev": true - }, - "walker": { - "version": "1.0.8", - "requires": { - "makeerror": "1.0.12" - } - }, - "watchpack": { - "version": "2.4.0", - "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - } - }, - "wcwidth": { - "version": "1.0.1", - "dev": true, - "requires": { - "defaults": "^1.0.3" - } - }, - "webcrypto-core": { - "version": "1.7.7", - "requires": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "asn1js": "^3.0.1", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "webidl-conversions": { - "version": "3.0.1" - }, - "webpack": { - "version": "5.75.0", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "dependencies": { - "acorn": { - "version": "8.8.2" - }, - "acorn-import-assertions": { - "version": "1.8.0", - "requires": {} - } - } - }, - "webpack-cli": { - "version": "5.0.1", - "dev": true, - "requires": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.0.1", - "@webpack-cli/info": "^2.0.1", - "@webpack-cli/serve": "^2.0.1", - "colorette": "^2.0.14", - "commander": "^9.4.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" - }, - "dependencies": { - "colorette": { - "version": "2.0.19", - "dev": true - }, - "commander": { - "version": "9.5.0", - "dev": true - } - } - }, - "webpack-merge": { - "version": "5.8.0", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - } - }, - "webpack-node-externals": { - "version": "3.0.0", - "dev": true - }, - "webpack-sources": { - "version": "3.2.3" - }, - "whatwg-url": { - "version": "5.0.0", - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "which": { - "version": "2.0.2", - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "which-typed-array": { - "version": "1.1.7", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.7" - }, - "dependencies": { - "es-abstract": { - "version": "1.19.1", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - } - }, - "object-keys": { - "version": "1.1.1" - } - } - }, - "wide-align": { - "version": "1.1.5", - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "widest-line": { - "version": "4.0.1", - "requires": { - "string-width": "^5.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1" - }, - "emoji-regex": { - "version": "9.2.2" - }, - "string-width": { - "version": "5.1.2", - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.0.1", - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, - "wildcard": { - "version": "2.0.0", - "dev": true - }, - "windows-release": { - "version": "4.0.0", - "dev": true, - "requires": { - "execa": "^4.0.2" - }, - "dependencies": { - "execa": { - "version": "4.1.0", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "human-signals": { - "version": "1.1.1", - "dev": true - } - } - }, - "wordwrap": { - "version": "0.0.3" - }, - "wrap-ansi": { - "version": "7.0.0", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - } - } - }, - "wrappy": { - "version": "1.0.2" - }, - "write-file-atomic": { - "version": "3.0.3", - "requires": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "wrtc": { - "version": "0.4.7", - "optional": true, - "requires": { - "domexception": "^1.0.1", - "node-pre-gyp": "^0.13.0" - } - }, - "ws": { - "version": "8.11.0", - "requires": {} - }, - "xdg-basedir": { - "version": "5.1.0" - }, - "xml2js": { - "version": "0.4.23", - "requires": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - } - }, - "xmlbuilder": { - "version": "11.0.1" - }, - "xmlhttprequest-ssl": { - "version": "2.0.0" - }, - "xsalsa20": { - "version": "1.2.0" - }, - "xtend": { - "version": "4.0.2" - }, - "y18n": { - "version": "5.0.8" - }, - "yallist": { - "version": "4.0.0" - }, - "yaml": { - "version": "1.10.2", - "dev": true - }, - "yargs": { - "version": "17.6.2", - "requires": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "dependencies": { - "yargs-parser": { - "version": "21.1.1" - } - } - }, - "yargs-parser": { - "version": "20.2.9" - }, - "yauzl": { - "version": "2.10.0", - "optional": true, - "requires": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "yn": { - "version": "3.1.1", - "dev": true - }, - "yocto-queue": { - "version": "1.0.0" - } - } + "name": "@quiet/backend", + "version": "2.0.1-alpha.3", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "@quiet/backend", + "version": "2.0.1-alpha.3", + "license": "MIT", + "dependencies": { + "@chainsafe/libp2p-gossipsub": "6.1.0", + "@chainsafe/libp2p-noise": "11.0.0", + "@nestjs/common": "^10.0.0", + "@nestjs/core": "^10.0.0", + "@nestjs/platform-express": "^10.0.0", + "@peculiar/webcrypto": "1.4.3", + "abortable-iterator": "^3.0.0", + "class-transformer": "^0.5.1", + "class-validator": "^0.13.1", + "cli-table": "^0.3.6", + "commander": "^7.2.0", + "cors": "^2.8.5", + "crypto-js": "^4.1.1", + "debug": "^4.3.1", + "dotenv": "8.2.0", + "events": "^3.2.0", + "express": "^4.17.1", + "get-port": "^5.1.1", + "go-ipfs": "npm:mocked-go-ipfs@0.17.0", + "http-server": "^0.12.3", + "https-proxy-agent": "^5.0.0", + "image-size": "^1.0.1", + "ipfs": "0.66.0", + "ipfs-log": "^5.4.2", + "it-ws": "5.0.6", + "joi": "^17.8.1", + "level": "8.0.0", + "libp2p": "0.42.2", + "luxon": "^1.11.4", + "multiaddr": "^10.0.1", + "orbit-db": "0.29.0", + "orbit-db-access-controllers": "^0.4.0", + "orbit-db-identity-provider": "0.5.0", + "orbit-db-io": "1.0.2", + "orbit-db-pubsub": "0.6.0", + "orbit-db-store": "4.3.4", + "p-queue": "7.3.4", + "peer-id": "^0.16.0", + "pkijs": "3.0.8", + "reflect-metadata": "^0.1.13", + "rimraf": "^3.0.2", + "rxjs": "^7.2.0", + "secp256k1": "4.0.3", + "socket.io": "4.6.0", + "socks-proxy-agent": "^5.0.0", + "string-replace-loader": "3.1.0", + "ts-jest-resolver": "^2.0.0", + "validator": "^13.6.0" + }, + "devDependencies": { + "@nestjs/cli": "^10.0.0", + "@nestjs/schematics": "^10.0.0", + "@nestjs/testing": "^10.0.0", + "@types/crypto-js": "^4.0.2", + "@types/express": "^4.17.9", + "@types/jest": "28.1.8", + "@types/luxon": "^3.3.0", + "@types/mock-fs": "^4.13.1", + "@types/node": "18.11.9", + "@types/node-fetch": "^2.5.11", + "@types/orbit-db": "git+https://github.com/orbitdb/orbit-db-types.git", + "@types/supertest": "^2.0.11", + "@types/tmp": "^0.2.3", + "@types/validator": "^13.1.4", + "@types/ws": "8.5.3", + "babel-jest": "^29.3.1", + "cross-env": "^5.2.0", + "fetch-mock-jest": "^1.5.1", + "jest": "^29.4.2", + "mock-fs": "^5.1.2", + "tmp": "^0.2.1", + "ts-jest": "^29.0.3", + "ts-loader": "9.4.2", + "ts-node": "10.9.1", + "typescript": "^4.9.3", + "wait-for-expect": "^3.0.2", + "webpack": "5.75.0", + "webpack-cli": "5.0.1", + "yargs": "^17.1.0" + } + }, + "../common": { + "name": "@quiet/common", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "@quiet/types": "^1.4.0-alpha.0", + "cross-env": "^5.2.0", + "debug": "^4.3.1" + }, + "devDependencies": { + "@quiet/eslint-config": "^1.0.0", + "@types/jest": "^26.0.23", + "@types/node": "^17.0.21", + "jest": "^26.6.3", + "ts-jest": "^26.5.2", + "typescript": "^4.9.3" + } + }, + "../eslint-config-custom": { + "name": "@quiet/eslint-config", + "version": "1.0.0", + "extraneous": true, + "devDependencies": { + "@typescript-eslint/eslint-plugin": "5.59.11", + "@typescript-eslint/parser": "^5.59.11", + "eslint": "^8.42.0", + "eslint-config-prettier": "^8.8.0", + "eslint-config-standard": "^17.1.0", + "eslint-config-standard-with-typescript": "^35.0.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jest": "^27.2.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react-hooks": "^4.6.0", + "prettier": "^2.8.8" + } + }, + "../identity": { + "name": "@quiet/identity", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "MIT", + "dependencies": { + "@peculiar/webcrypto": "1.4.3", + "@quiet/eslint-config": "^1.0.0", + "@quiet/logger": "^1.4.0-alpha.0", + "@quiet/types": "^1.4.0-alpha.0", + "pkijs": "^3.0.8" + }, + "devDependencies": { + "@babel/runtime": "^7.12.5", + "@types/jest": "^26.0.23", + "@types/node": "^14.17.6", + "babel-jest": "^29.3.1", + "jest": "^26.6.3", + "ts-jest": "^26.5.6", + "typescript": "^4.9.3" + } + }, + "../logger": { + "name": "@quiet/logger", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "cross-env": "^5.2.0", + "debug": "^4.3.1" + }, + "devDependencies": { + "@quiet/eslint-config": "^1.0.0", + "@types/debug": "^4.1.7", + "@types/node": "^17.0.21", + "typescript": "^4.9.3" + } + }, + "../state-manager": { + "name": "@quiet/state-manager", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "@quiet/common": "^1.4.0-alpha.0", + "@quiet/logger": "^1.4.0-alpha.0", + "@quiet/types": "^1.4.0-alpha.0", + "@reduxjs/toolkit": "^1.9.1", + "factory-girl": "^5.0.4", + "get-port": "^5.1.1", + "luxon": "^2.0.2", + "redux": "^4.1.1", + "redux-persist": "^6.0.0", + "redux-saga": "^1.1.3", + "redux-thunk": "^2.4.0", + "reselect": "^4.1.4", + "socket.io-client": "^4.1.3", + "typed-redux-saga": "^1.3.1", + "wait-for-expect": "^3.0.2" + }, + "devDependencies": { + "@babel/core": "^7.22.5", + "@babel/preset-env": "^7.22.5", + "@babel/preset-typescript": "^7.22.5", + "@peculiar/webcrypto": "1.4.3", + "@quiet/eslint-config": "^1.0.0", + "@quiet/identity": "^1.4.0-alpha.0", + "@types/factory-girl": "^5.0.8", + "@types/jest": "^26.0.24", + "@types/luxon": "^2.0.0", + "@types/redux-saga": "^0.10.5", + "babel-jest": "^29.3.1", + "cross-env": "^7.0.3", + "factory-girl": "^5.0.4", + "jest": "^27.0.6", + "libp2p-websockets": "*", + "pkijs": "^3.0.8", + "pvutils": "*", + "redux-saga-test-plan": "^4.0.3", + "tmp": "^0.2.1", + "typescript": "^4.9.3" + } + }, + "../types": { + "name": "@quiet/types", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "cross-env": "^5.2.0", + "debug": "^4.3.1" + }, + "devDependencies": { + "@quiet/eslint-config": "^1.0.0", + "@reduxjs/toolkit": "^1.9.1", + "@types/jest": "^26.0.23", + "@types/node": "^17.0.21", + "jest": "^26.6.3", + "ts-jest": "^26.5.2", + "typescript": "^4.9.3" + } + }, + "node_modules/@achingbrain/ip-address": { + "version": "8.1.0", + "license": "MIT", + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "1.1.2" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@achingbrain/nat-port-mapper": { + "version": "1.0.7", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@achingbrain/ssdp": "^4.0.1", + "@libp2p/logger": "^2.0.0", + "default-gateway": "^6.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.7", + "p-defer": "^4.0.0", + "p-timeout": "^5.0.2", + "xml2js": "^0.4.23" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@achingbrain/nat-port-mapper/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@achingbrain/ssdp": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "event-iterator": "^2.0.0", + "freeport-promise": "^2.0.0", + "merge-options": "^3.0.4", + "uuid": "^8.3.2", + "xml2js": "^0.4.23" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@achingbrain/ssdp/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@angular-devkit/core": { + "version": "16.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "rxjs": "7.8.1", + "source-map": "0.7.4" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "chokidar": "^3.5.2" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/@angular-devkit/core/node_modules/ajv": { + "version": "8.12.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@angular-devkit/core/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@angular-devkit/core/node_modules/source-map": { + "version": "0.7.4", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@angular-devkit/schematics": { + "version": "16.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "jsonc-parser": "3.2.0", + "magic-string": "0.30.0", + "ora": "5.4.1", + "rxjs": "7.8.1" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular-devkit/schematics-cli": { + "version": "16.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "ansi-colors": "4.1.3", + "inquirer": "8.2.4", + "symbol-observable": "4.0.0", + "yargs-parser": "21.1.1" + }, + "bin": { + "schematics": "bin/schematics.js" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/inquirer": { + "version": "8.2.4", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/@assemblyscript/loader": { + "version": "0.9.4", + "license": "Apache-2.0" + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.14.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/core": { + "version": "7.14.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.3", + "@babel/helper-compilation-targets": "^7.13.16", + "@babel/helper-module-transforms": "^7.14.2", + "@babel/helpers": "^7.14.0", + "@babel/parser": "^7.14.3", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/core/node_modules/json5": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/core/node_modules/source-map": { + "version": "0.5.7", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.14.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.14.2", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "node_modules/@babel/generator/node_modules/source-map": { + "version": "0.5.7", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.14.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.14.4", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.14.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.14.2" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.13.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.13.12" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.13.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.13.12" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.14.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.13.12", + "@babel/helper-replace-supers": "^7.13.12", + "@babel/helper-simple-access": "^7.13.12", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.14.0", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.14.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.13.12", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.4" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.13.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.13.12" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.12.17", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/helpers": { + "version": "7.14.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.14.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.20.13", + "dev": true, + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.20.13", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/template/node_modules/@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/traverse": { + "version": "7.14.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.2", + "@babel/helper-function-name": "^7.14.2", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.14.2", + "@babel/types": "^7.14.2", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.20.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@chainsafe/is-ip": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/@chainsafe/libp2p-gossipsub": { + "version": "6.1.0", + "license": "Apache-2.0", + "dependencies": { + "@libp2p/crypto": "^1.0.3", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.3.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/pubsub": "^6.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "denque": "^1.5.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "protobufjs": "^6.11.2", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "npm": ">=8.7.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/peer-record": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise": { + "version": "11.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection-encrypter": "^3.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/hkdf": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.1", + "it-length-prefixed": "^8.0.2", + "it-pair": "^2.0.2", + "it-pb-stream": "^2.0.2", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { + "version": "11.0.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@didtools/cacao": { + "version": "1.1.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@ipld/dag-cbor": "^7.0.1", + "apg-js": "^4.1.1", + "caip": "^1.1.0", + "multiformats": "^9.5.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@didtools/cacao/node_modules/@ipld/dag-cbor": { + "version": "7.0.3", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "node_modules/@didtools/cacao/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@didtools/cacao/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@didtools/cacao/node_modules/uint8arrays/node_modules/multiformats": { + "version": "11.0.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@didtools/pkh-ethereum": { + "version": "0.0.1", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@didtools/cacao": "^1.0.0", + "@ethersproject/wallet": "^5.7.0", + "@stablelib/random": "^1.0.2", + "caip": "^1.1.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@ethersproject/abi": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/abstract-provider": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-signer": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/address": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/base64": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0" + } + }, + "node_modules/@ethersproject/basex": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/bignumber": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + } + }, + "node_modules/@ethersproject/bignumber/node_modules/bn.js": { + "version": "5.2.1", + "license": "MIT" + }, + "node_modules/@ethersproject/bytes": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/constants": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0" + } + }, + "node_modules/@ethersproject/contracts": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "^5.7.0", + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0" + } + }, + "node_modules/@ethersproject/hash": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/hdnode": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/json-wallets": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "node_modules/@ethersproject/keccak256": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "js-sha3": "0.8.0" + } + }, + "node_modules/@ethersproject/logger": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/networks": { + "version": "5.7.1", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/pbkdf2": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/sha2": "^5.7.0" + } + }, + "node_modules/@ethersproject/properties": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/providers": { + "version": "5.7.2", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0", + "bech32": "1.1.4", + "ws": "7.4.6" + } + }, + "node_modules/@ethersproject/providers/node_modules/ws": { + "version": "7.4.6", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@ethersproject/random": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/rlp": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/sha2": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/signing-key": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/signing-key/node_modules/bn.js": { + "version": "5.2.1", + "license": "MIT" + }, + "node_modules/@ethersproject/solidity": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/strings": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/transactions": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/units": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/wallet": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/json-wallets": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/web": { + "version": "5.7.1", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/wordlists": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@grpc/grpc-js": { + "version": "1.8.7", + "license": "Apache-2.0", + "dependencies": { + "@grpc/proto-loader": "^0.7.0", + "@types/node": ">=12.12.47" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.7.4", + "license": "Apache-2.0", + "dependencies": { + "@types/long": "^4.0.1", + "lodash.camelcase": "^4.3.0", + "long": "^4.0.0", + "protobufjs": "^7.0.0", + "yargs": "^16.2.0" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@grpc/proto-loader/node_modules/cliui": { + "version": "7.0.4", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/@grpc/proto-loader/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@grpc/proto-loader/node_modules/protobufjs/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/@grpc/proto-loader/node_modules/yargs": { + "version": "16.2.0", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@hapi/accept": { + "version": "5.0.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/address": { + "version": "5.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^11.0.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@hapi/address/node_modules/@hapi/hoek": { + "version": "11.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/ammo": { + "version": "5.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/b64": { + "version": "5.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/boom": { + "version": "9.1.4", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/bounce": { + "version": "2.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/bourne": { + "version": "2.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/call": { + "version": "8.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/catbox": { + "version": "11.1.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/podium": "4.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/catbox-memory": { + "version": "5.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/content": { + "version": "5.0.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x" + } + }, + "node_modules/@hapi/cryptiles": { + "version": "5.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/file": { + "version": "2.0.0", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/formula": { + "version": "3.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/hapi": { + "version": "20.2.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/accept": "^5.0.1", + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/bounce": "^2.0.0", + "@hapi/call": "^8.0.0", + "@hapi/catbox": "^11.1.1", + "@hapi/catbox-memory": "^5.0.0", + "@hapi/heavy": "^7.0.1", + "@hapi/hoek": "^9.0.4", + "@hapi/mimos": "^6.0.0", + "@hapi/podium": "^4.1.1", + "@hapi/shot": "^5.0.5", + "@hapi/somever": "^3.0.0", + "@hapi/statehood": "^7.0.4", + "@hapi/subtext": "^7.0.3", + "@hapi/teamwork": "^5.1.1", + "@hapi/topo": "^5.0.0", + "@hapi/validate": "^1.1.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/heavy": { + "version": "7.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.1.1", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/iron": { + "version": "6.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/mimos": { + "version": "6.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x", + "mime-db": "1.x.x" + } + }, + "node_modules/@hapi/nigel": { + "version": "4.0.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.4", + "@hapi/vise": "^4.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/pez": { + "version": "5.0.3", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/content": "^5.0.2", + "@hapi/hoek": "9.x.x", + "@hapi/nigel": "4.x.x" + } + }, + "node_modules/@hapi/pinpoint": { + "version": "2.0.1", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/podium": { + "version": "4.1.3", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x", + "@hapi/teamwork": "5.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/shot": { + "version": "5.0.5", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/somever": { + "version": "3.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/bounce": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/statehood": { + "version": "7.0.4", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/bounce": "2.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/iron": "6.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/subtext": { + "version": "7.0.4", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/content": "^5.0.2", + "@hapi/file": "2.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/pez": "^5.0.1", + "@hapi/wreck": "17.x.x" + } + }, + "node_modules/@hapi/teamwork": { + "version": "5.1.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/tlds": { + "version": "1.0.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@hapi/topo": { + "version": "5.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@hapi/validate": { + "version": "1.1.3", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0" + } + }, + "node_modules/@hapi/vise": { + "version": "4.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/wreck": { + "version": "17.2.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@ipld/car": { + "version": "5.1.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "cborg": "^1.9.0", + "multiformats": "^11.0.0", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/car/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/dag-cbor": { + "version": "6.0.13", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "cborg": "^1.2.1", + "multiformats": "^9.0.0" + } + }, + "node_modules/@ipld/dag-cbor/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@ipld/dag-json": { + "version": "10.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/dag-pb": { + "version": "2.1.13", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "multiformats": "^9.0.0" + } + }, + "node_modules/@ipld/dag-pb/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.4.2", + "@jest/reporters": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.4.2", + "jest-config": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-resolve-dependencies": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "jest-watcher": "^29.4.2", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.4.2", + "jest-snapshot": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/types": "^29.4.2", + "jest-mock": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/write-file-atomic": { + "version": "4.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.3", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "license": "MIT" + }, + "node_modules/@libp2p/bootstrap": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-info": "^1.0.7", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/crypto": { + "version": "1.0.11", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-keys": "^1.0.2", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^4.0.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/crypto/node_modules/node-forge": { + "version": "1.3.1", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/@libp2p/crypto/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/crypto/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "it-drain": "^2.0.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/delegated-peer-routing": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.1", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-peer-routing/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-peer-routing/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/delegated-peer-routing/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/floodsub": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/pubsub": "^6.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.3" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/floodsub/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/floodsub/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-address-manager": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-connection": { + "version": "3.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-connection-encrypter": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-connection-manager": { + "version": "1.3.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-content-routing": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-dht": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-dht/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-keychain": { + "version": "2.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-keychain/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-keys": { + "version": "1.0.7", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-libp2p": { + "version": "1.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interface-peer-store": "^1.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-libp2p/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-metrics": { + "version": "4.0.5", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-discovery": { + "version": "1.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-id": { + "version": "1.0.6", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-info": { + "version": "1.0.8", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-info/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-routing": { + "version": "1.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-store": { + "version": "1.2.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-record": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-pubsub": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-pushable": "^3.0.0", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-pubsub/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/interface-record": { + "version": "2.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-registrar": { + "version": "2.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-stream-muxer": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-stream-types": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-transport": { + "version": "2.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interfaces": { + "version": "3.3.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht": { + "version": "7.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-first": "^2.0.0", + "it-length": "^2.0.0", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "it-take": "^2.0.0", + "k-bucket": "^5.1.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/kad-dht/node_modules/ip-regex": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/ipaddr.js": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/kad-dht/node_modules/it-take": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/p-queue": { + "version": "7.3.0", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/private-ip": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/logger": { + "version": "2.0.5", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "debug": "^4.3.3", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/logger/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mdns": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/multicast-dns": "^7.2.1", + "multicast-dns": "^7.2.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mdns/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mplex": { + "version": "7.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "benchmark": "^2.1.4", + "err-code": "^3.0.1", + "it-batched-bytes": "^1.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.4", + "rate-limiter-flexible": "^2.3.9", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mplex/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/mplex/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/mplex/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/mplex/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mplex/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/multistream-select": { + "version": "3.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.6", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-merge": "^1.0.4", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/multistream-select/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/multistream-select/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-collections": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-collections/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id-factory": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id-factory/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id-factory/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/@libp2p/peer-record": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/prometheus-metrics": { + "version": "1.1.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/logger": "^2.0.2", + "it-foreach": "^1.0.0", + "it-stream-types": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "peerDependencies": { + "prom-client": "^14.1.0" + } + }, + "node_modules/@libp2p/pubsub": { + "version": "6.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.2.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/pubsub/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/pubsub/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/pubsub/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/pubsub/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/pubsub/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/pubsub/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/record": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-dht": "^2.0.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/record/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/tcp": { + "version": "6.1.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "stream-to-it": "^0.2.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/topology": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/logger": "^2.0.1", + "it-all": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/topology/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/topology/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/tracked-map": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-metrics": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/utils": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@achingbrain/ip-address": "^8.1.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-peer-store": "^1.2.1", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "is-loopback-addr": "^2.0.1", + "it-stream-types": "^1.0.4", + "private-ip": "^2.1.1", + "uint8arraylist": "^2.3.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/utils/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/utils/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/utils/node_modules/is-loopback-addr": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/@libp2p/webrtc-peer": { + "version": "2.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "it-pushable": "^3.0.0", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "p-event": "^5.0.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-peer/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-peer/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/webrtc-peer/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.1", + "@libp2p/webrtc-peer": "^2.0.0", + "@libp2p/webrtc-star-protocol": "^3.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "socket.io-client": "^4.1.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star-protocol": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0", + "socket.io-client": "^4.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/webrtc-star/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/websockets": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.2", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-ws": "^5.0.0", + "p-defer": "^4.0.0", + "p-timeout": "^6.0.0", + "wherearewe": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/websockets/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/websockets/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/websockets/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/websockets/node_modules/p-timeout": { + "version": "6.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/websockets/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lukeed/csprng": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.10", + "license": "BSD-3-Clause", + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/@multiformats/base-x": { + "version": "4.0.1", + "license": "MIT" + }, + "node_modules/@multiformats/mafmt": { + "version": "11.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr": { + "version": "11.4.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@chainsafe/is-ip": "^2.0.1", + "dns-over-http-resolver": "^2.1.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr-to-uri": { + "version": "9.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/dns-over-http-resolver": { + "version": "2.1.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "debug": "^4.3.1", + "native-fetch": "^4.0.2", + "receptacle": "^1.3.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/native-fetch": { + "version": "4.0.2", + "license": "MIT", + "peerDependencies": { + "undici": "*" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/murmur3": { + "version": "2.1.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0", + "murmurhash3js-revisited": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/uri-to-multiaddr": { + "version": "7.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0", + "is-ip": "^5.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/uri-to-multiaddr/node_modules/ip-regex": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@multiformats/uri-to-multiaddr/node_modules/is-ip": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "ip-regex": "^5.0.0", + "super-regex": "^0.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@nestjs/cli": { + "version": "10.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "@angular-devkit/schematics-cli": "16.1.0", + "@nestjs/schematics": "^10.0.1", + "chalk": "4.1.2", + "chokidar": "3.5.3", + "cli-table3": "0.6.3", + "commander": "4.1.1", + "fork-ts-checker-webpack-plugin": "8.0.0", + "inquirer": "8.2.5", + "node-emoji": "1.11.0", + "ora": "5.4.1", + "os-name": "4.0.1", + "rimraf": "4.4.1", + "shelljs": "0.8.5", + "source-map-support": "0.5.21", + "tree-kill": "1.2.2", + "tsconfig-paths": "4.2.0", + "tsconfig-paths-webpack-plugin": "4.0.1", + "typescript": "5.1.3", + "webpack": "5.87.0", + "webpack-node-externals": "3.0.0" + }, + "bin": { + "nest": "bin/nest.js" + }, + "engines": { + "node": ">= 16" + }, + "peerDependencies": { + "@swc/cli": "^0.1.62", + "@swc/core": "^1.3.62" + }, + "peerDependenciesMeta": { + "@swc/cli": { + "optional": true + }, + "@swc/core": { + "optional": true + } + } + }, + "node_modules/@nestjs/cli/node_modules/@types/estree": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@nestjs/cli/node_modules/acorn": { + "version": "8.9.0", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@nestjs/cli/node_modules/acorn-import-assertions": { + "version": "1.9.0", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/@nestjs/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@nestjs/cli/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@nestjs/cli/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@nestjs/cli/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@nestjs/cli/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/commander": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@nestjs/cli/node_modules/es-module-lexer": { + "version": "1.3.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/glob": { + "version": "9.3.5", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@nestjs/cli/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@nestjs/cli/node_modules/minimatch": { + "version": "8.0.4", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/rimraf": { + "version": "4.4.1", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^9.2.0" + }, + "bin": { + "rimraf": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@nestjs/cli/node_modules/tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@nestjs/cli/node_modules/typescript": { + "version": "5.1.3", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@nestjs/cli/node_modules/webpack": { + "version": "5.87.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/@nestjs/common": { + "version": "10.0.2", + "license": "MIT", + "dependencies": { + "iterare": "1.2.1", + "tslib": "2.5.3", + "uid": "2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "class-transformer": "*", + "class-validator": "*", + "reflect-metadata": "^0.1.12", + "rxjs": "^7.1.0" + }, + "peerDependenciesMeta": { + "class-transformer": { + "optional": true + }, + "class-validator": { + "optional": true + } + } + }, + "node_modules/@nestjs/core": { + "version": "10.0.2", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "@nuxtjs/opencollective": "0.3.2", + "fast-safe-stringify": "2.1.1", + "iterare": "1.2.1", + "path-to-regexp": "3.2.0", + "tslib": "2.5.3", + "uid": "2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "@nestjs/common": "^10.0.0", + "@nestjs/microservices": "^10.0.0", + "@nestjs/platform-express": "^10.0.0", + "@nestjs/websockets": "^10.0.0", + "reflect-metadata": "^0.1.12", + "rxjs": "^7.1.0" + }, + "peerDependenciesMeta": { + "@nestjs/microservices": { + "optional": true + }, + "@nestjs/platform-express": { + "optional": true + }, + "@nestjs/websockets": { + "optional": true + } + } + }, + "node_modules/@nestjs/core/node_modules/path-to-regexp": { + "version": "3.2.0", + "license": "MIT" + }, + "node_modules/@nestjs/platform-express": { + "version": "10.0.2", + "license": "MIT", + "dependencies": { + "body-parser": "1.20.2", + "cors": "2.8.5", + "express": "4.18.2", + "multer": "1.4.4-lts.1", + "tslib": "2.5.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "@nestjs/common": "^10.0.0", + "@nestjs/core": "^10.0.0" + } + }, + "node_modules/@nestjs/platform-express/node_modules/body-parser": { + "version": "1.20.2", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/@nestjs/platform-express/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@nestjs/platform-express/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@nestjs/platform-express/node_modules/raw-body": { + "version": "2.5.2", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@nestjs/schematics": { + "version": "10.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "comment-json": "4.2.3", + "jsonc-parser": "3.2.0", + "pluralize": "8.0.0" + }, + "peerDependencies": { + "typescript": ">=4.8.2" + } + }, + "node_modules/@nestjs/testing": { + "version": "10.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "2.5.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "@nestjs/common": "^10.0.0", + "@nestjs/core": "^10.0.0", + "@nestjs/microservices": "^10.0.0", + "@nestjs/platform-express": "^10.0.0" + }, + "peerDependenciesMeta": { + "@nestjs/microservices": { + "optional": true + }, + "@nestjs/platform-express": { + "optional": true + } + } + }, + "node_modules/@noble/ed25519": { + "version": "1.7.1", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/@noble/secp256k1": { + "version": "1.7.0", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/@nuxtjs/opencollective": { + "version": "0.3.2", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "consola": "^2.15.0", + "node-fetch": "^2.6.1" + }, + "bin": { + "opencollective": "bin/opencollective.js" + }, + "engines": { + "node": ">=8.0.0", + "npm": ">=5.0.0" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/@nuxtjs/opencollective/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@peculiar/asn1-schema": { + "version": "2.3.6", + "license": "MIT", + "dependencies": { + "asn1js": "^3.0.5", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@peculiar/json-schema": { + "version": "1.1.12", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@peculiar/webcrypto": { + "version": "1.4.3", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "pvtsutils": "^1.3.2", + "tslib": "^2.5.0", + "webcrypto-core": "^1.7.7" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/npm-conf": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.21", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0" + } + }, + "node_modules/@socket.io/component-emitter": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@stablelib/aead": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/binary": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/int": "^1.0.1" + } + }, + "node_modules/@stablelib/bytes": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/chacha": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/chacha20poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/aead": "^1.0.1", + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/poly1305": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/constant-time": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/ed25519": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "@stablelib/random": "^1.0.2", + "@stablelib/sha512": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/hash": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/hkdf": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/hash": "^1.0.1", + "@stablelib/hmac": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/hmac": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/int": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/keyagreement": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/bytes": "^1.0.1" + } + }, + "node_modules/@stablelib/poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/random": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/sha256": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/sha512": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/wipe": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/x25519": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "@stablelib/keyagreement": "^1.0.1", + "@stablelib/random": "^1.0.2", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/xchacha20": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/xchacha20poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/aead": "^1.0.1", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1", + "@stablelib/xchacha20": "^1.0.1" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "license": "MIT" + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.11.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/bn.js": { + "version": "5.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.34", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cookie": { + "version": "0.4.1", + "license": "MIT" + }, + "node_modules/@types/cookiejar": { + "version": "2.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/cors": { + "version": "2.8.13", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/crypto-js": { + "version": "4.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/dns-packet": { + "version": "5.2.4", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/elliptic": { + "version": "6.4.14", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/bn.js": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.4.10", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.51", + "license": "MIT" + }, + "node_modules/@types/events": { + "version": "1.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/express": { + "version": "4.17.15", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.31", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.32", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.1", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.3", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "28.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^28.0.0", + "pretty-format": "^28.0.0" + } + }, + "node_modules/@types/jest/node_modules/@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/expect-utils": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^28.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/schemas": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/types": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@types/jest/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/jest/node_modules/diff-sequences": { + "version": "28.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/expect": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/jest/node_modules/jest-diff": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-get-type": { + "version": "28.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-matcher-utils": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-message-util": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-util": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/jest/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "license": "MIT" + }, + "node_modules/@types/long": { + "version": "4.0.1", + "license": "MIT" + }, + "node_modules/@types/luxon": { + "version": "3.3.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mime": { + "version": "2.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "license": "MIT" + }, + "node_modules/@types/mock-fs": { + "version": "4.13.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/multicast-dns": { + "version": "7.2.1", + "license": "MIT", + "dependencies": { + "@types/dns-packet": "*", + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "18.11.9", + "license": "MIT" + }, + "node_modules/@types/node-fetch": { + "version": "2.5.11", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/orbit-db": { + "version": "1.0.1", + "resolved": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/elliptic": "^6.4.6", + "@types/events": "^1.2.0", + "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", + "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" + } + }, + "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", + "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", + "dev": true, + "dependencies": { + "cborg": "^2.0.1", + "multiformats": "^12.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor/node_modules/multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/@libp2p/crypto": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", + "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", + "dev": true, + "dependencies": { + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interfaces": "^3.2.0", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^5.0.0", + "uint8arraylist": "^2.4.3", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/@types/ipfs": { + "version": "0.23.6", + "resolved": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/orbit-db/node_modules/cborg": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", + "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", + "dev": true, + "bin": { + "cborg": "cli.js" + } + }, + "node_modules/@types/orbit-db/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "dev": true + }, + "node_modules/@types/orbit-db/node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/@types/orbit-db/node_modules/orbit-db": { + "name": "@orbitdb/core", + "version": "0.30.1", + "resolved": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", + "dev": true, + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@libp2p/crypto": "^1.0.12", + "it-pipe": "^2.0.5", + "level": "^8.0.0", + "lru": "^3.1.0", + "multiformats": "^11.0.1", + "p-queue": "^7.3.4", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.3" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/protobufjs": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", + "dev": true, + "hasInstallScript": true, + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/protons-runtime": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", + "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", + "dev": true, + "dependencies": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.4.3" + }, + "peerDependencies": { + "uint8arraylist": "^2.3.2" + } + }, + "node_modules/@types/orbit-db/node_modules/uint8arraylist": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", + "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", + "dev": true, + "dependencies": { + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/uint8arrays": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", + "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", + "dev": true, + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@types/orbit-db/node_modules/uint8arrays/node_modules/multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prettier": { + "version": "2.7.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.9.5", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/retry": { + "version": "0.12.1", + "license": "MIT" + }, + "node_modules/@types/serve-static": { + "version": "1.15.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/superagent": { + "version": "4.1.18", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/cookiejar": "*", + "@types/node": "*" + } + }, + "node_modules/@types/supertest": { + "version": "2.0.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/superagent": "*" + } + }, + "node_modules/@types/tmp": { + "version": "0.2.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/validator": { + "version": "13.1.4", + "license": "MIT" + }, + "node_modules/@types/ws": { + "version": "8.5.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.15", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "license": "MIT" + }, + "node_modules/@vascosantos/moving-average": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "license": "Apache-2.0" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "license": "ISC" + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/abortable-iterator": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^1.0.2" + } + }, + "node_modules/abstract-level": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/abstract-level/node_modules/level-supports": { + "version": "4.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/abstract-leveldown": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "catering": "^2.0.0", + "is-buffer": "^2.0.5", + "level-concat-iterator": "^3.0.0", + "level-supports": "^2.0.1", + "queue-microtask": "^1.2.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/abstract-logging": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/accepts": { + "version": "1.3.8", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aes-js": { + "version": "3.0.0", + "license": "MIT" + }, + "node_modules/agent-base": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-signal": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.2", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/apg-js": { + "version": "4.1.3", + "license": "BSD-2-Clause" + }, + "node_modules/append-field": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/aproba": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/argparse/node_modules/sprintf-js": { + "version": "1.0.3", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/args": { + "version": "5.0.3", + "license": "MIT", + "dependencies": { + "camelcase": "5.0.0", + "chalk": "2.4.2", + "leven": "2.1.0", + "mri": "1.1.4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/args/node_modules/camelcase": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/array-shuffle": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/array-timsort": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/asap": { + "version": "2.0.6", + "license": "MIT" + }, + "node_modules/asmcrypto.js": { + "version": "2.3.2", + "license": "MIT" + }, + "node_modules/asn1": { + "version": "0.2.6", + "license": "MIT", + "optional": true, + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1js": { + "version": "3.0.5", + "license": "BSD-3-Clause", + "dependencies": { + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/assert": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "es6-object-assign": "^1.1.0", + "is-nan": "^1.2.1", + "object-is": "^1.0.1", + "util": "^0.12.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/async": { + "version": "2.6.3", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "devOptional": true, + "license": "MIT" + }, + "node_modules/atomic-sleep": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.12.0", + "license": "MIT", + "optional": true + }, + "node_modules/babel-jest": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/transform": "^29.4.2", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.4.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^29.4.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/base-x": { + "version": "3.0.9", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/base64-js": { + "version": "1.3.1", + "license": "MIT" + }, + "node_modules/base64id": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": "^4.5.0 || >= 5.9" + } + }, + "node_modules/basic-auth": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bech32": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/benchmark": { + "version": "2.1.4", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.4", + "platform": "^1.3.3" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "license": "MIT", + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bintrees": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/bip66": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/bl": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/blakejs": { + "version": "1.1.0", + "license": "CC0-1.0" + }, + "node_modules/blob-to-it": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "browser-readablestream-to-it": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-store": "^3.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-take": "^2.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-take": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-datastore-adapter": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "blockstore-core": "^3.0.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-drain": "^2.0.0", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-datastore-adapter/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-datastore-adapter/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/bn.js": { + "version": "4.11.9", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/boxen": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^7.0.0", + "chalk": "^5.0.1", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-regex": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "6.2.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "5.1.2", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/emoji-regex": { + "version": "9.2.2", + "license": "MIT" + }, + "node_modules/boxen/node_modules/string-width": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/strip-ansi": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/boxen/node_modules/wrap-ansi": { + "version": "8.0.1", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/browser-level": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "abstract-level": "^1.0.2", + "catering": "^2.1.1", + "module-error": "^1.0.2", + "run-parallel-limit": "^1.1.0" + } + }, + "node_modules/browser-readablestream-to-it": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserslist": { + "version": "4.16.6", + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bs58": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "base-x": "^3.0.2" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "license": "MIT", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "license": "MIT" + }, + "node_modules/busboy": { + "version": "1.6.0", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/byte-access": { + "version": "1.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/byteman": { + "version": "1.3.5", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/bytestreamjs": { + "version": "2.0.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/caip": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/call-bind": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001235", + "license": "CC-BY-4.0", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/canonicalize": { + "version": "1.0.8", + "license": "Apache-2.0" + }, + "node_modules/capital-case": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "license": "Apache-2.0", + "optional": true + }, + "node_modules/catering": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cborg": { + "version": "1.10.0", + "license": "Apache-2.0", + "bin": { + "cborg": "cli.js" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/change-case": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.7.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "dev": true, + "license": "MIT" + }, + "node_modules/class-is": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/class-transformer": { + "version": "0.5.1", + "license": "MIT" + }, + "node_modules/class-validator": { + "version": "0.13.1", + "license": "MIT", + "dependencies": { + "@types/validator": "^13.1.3", + "libphonenumber-js": "^1.9.7", + "validator": "^13.5.2" + } + }, + "node_modules/classic-level": { + "version": "1.2.0", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "abstract-level": "^1.0.2", + "catering": "^2.1.0", + "module-error": "^1.0.1", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-table": { + "version": "0.3.6", + "dependencies": { + "colors": "1.0.3" + }, + "engines": { + "node": ">= 0.2.0" + } + }, + "node_modules/cli-table/node_modules/colors": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/cli-table3": { + "version": "0.6.3", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-regexp": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "is-regexp": "^3.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/co": { + "version": "4.6.0", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coercer": { + "version": "1.1.2", + "license": "ISC" + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/color-support": { + "version": "1.1.3", + "license": "ISC", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colorette": { + "version": "1.2.2", + "license": "MIT" + }, + "node_modules/colors": { + "version": "1.4.0", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "devOptional": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "7.2.0", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/comment-json": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/comment-json/node_modules/core-util-is": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/buffer-from": { + "version": "1.1.2", + "license": "MIT" + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.7", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "license": "MIT", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/configstore": { + "version": "6.0.0", + "license": "BSD-2-Clause", + "dependencies": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/yeoman/configstore?sponsor=1" + } + }, + "node_modules/consola": { + "version": "2.15.3", + "license": "MIT" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "license": "ISC" + }, + "node_modules/constant-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-hrtime": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/convert-source-map": { + "version": "1.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/convert-source-map/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.4.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "license": "MIT" + }, + "node_modules/core-js": { + "version": "3.27.2", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/cors": { + "version": "2.8.5", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/corser": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cosmiconfig/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/create-hash": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-env": { + "version": "5.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.5" + }, + "bin": { + "cross-env": "dist/bin/cross-env.js", + "cross-env-shell": "dist/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/cross-env/node_modules/cross-spawn": { + "version": "6.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/cross-env/node_modules/path-key": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/cross-env/node_modules/semver": { + "version": "5.7.1", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/cross-env/node_modules/shebang-command": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cross-env/node_modules/shebang-regex": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cross-env/node_modules/which": { + "version": "1.3.1", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-js": { + "version": "4.1.1", + "license": "MIT" + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dag-jose": { + "version": "4.0.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "multiformats": "^11.0.0" + } + }, + "node_modules/dag-jose-utils": { + "version": "2.0.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@ipld/dag-cbor": "^7.0.1", + "multiformats": "^9.5.1" + } + }, + "node_modules/dag-jose-utils/node_modules/@ipld/dag-cbor": { + "version": "7.0.3", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "node_modules/dag-jose-utils/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/dag-jose/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/datastore-core": { + "version": "8.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^1.0.4", + "it-drain": "^1.0.4", + "it-filter": "^1.0.2", + "it-map": "^1.0.5", + "it-merge": "^1.0.1", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-take": "^1.0.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-core/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/datastore-core/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-core/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-fs": { + "version": "8.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "datastore-core": "^8.0.1", + "fast-write-atomic": "^0.2.0", + "interface-datastore": "^7.0.0", + "it-glob": "^1.0.1", + "it-map": "^1.0.5", + "it-parallel-batch": "^1.0.9", + "mkdirp": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-fs/node_modules/mkdirp": { + "version": "1.0.4", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/datastore-level": { + "version": "9.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "abstract-level": "^1.0.3", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "it-filter": "^2.0.0", + "it-map": "^2.0.0", + "it-sort": "^2.0.0", + "it-take": "^2.0.0", + "level": "^8.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-level/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-level/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-level/node_modules/it-take": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-pubsub": { + "version": "7.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-pubsub/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/dateformat": { + "version": "4.6.3", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/deferred-leveldown": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "abstract-leveldown": "~6.0.0", + "inherits": "^2.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deferred-leveldown/node_modules/abstract-leveldown": { + "version": "6.0.3", + "license": "MIT", + "dependencies": { + "level-concat-iterator": "~2.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deferred-leveldown/node_modules/level-concat-iterator": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/delay": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/denque": { + "version": "1.5.1", + "license": "Apache-2.0", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "2.0.1", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/dezalgo": { + "version": "1.0.4", + "license": "ISC", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "node_modules/did-jwt": { + "version": "6.11.0", + "license": "Apache-2.0", + "dependencies": { + "@stablelib/ed25519": "^1.0.2", + "@stablelib/random": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.2", + "@stablelib/xchacha20poly1305": "^1.0.1", + "bech32": "^2.0.0", + "canonicalize": "^1.0.8", + "did-resolver": "^4.0.0", + "elliptic": "^6.5.4", + "js-sha3": "^0.8.0", + "multiformats": "^9.6.5", + "uint8arrays": "^3.0.0" + } + }, + "node_modules/did-jwt/node_modules/bech32": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/did-jwt/node_modules/did-resolver": { + "version": "4.0.1", + "license": "Apache-2.0" + }, + "node_modules/did-jwt/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/did-resolver": { + "version": "3.2.2", + "license": "Apache-2.0" + }, + "node_modules/dids": { + "version": "3.4.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@didtools/cacao": "^1.0.0", + "@didtools/pkh-ethereum": "^0.0.1", + "@stablelib/random": "^1.0.1", + "dag-jose-utils": "^2.0.0", + "did-jwt": "^6.0.0", + "did-resolver": "^3.1.5", + "multiformats": "^9.4.10", + "rpc-utils": "^0.6.1", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/dids/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/diff": { + "version": "4.0.2", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-match-patch": { + "version": "1.0.5", + "license": "Apache-2.0" + }, + "node_modules/diff-sequences": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/dns-over-http-resolver": { + "version": "1.2.3", + "license": "MIT", + "dependencies": { + "debug": "^4.3.1", + "native-fetch": "^3.0.0", + "receptacle": "^1.3.2" + } + }, + "node_modules/dns-packet": { + "version": "5.4.0", + "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/domexception": { + "version": "1.0.1", + "license": "MIT", + "optional": true, + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "4.0.2", + "license": "BSD-2-Clause", + "optional": true + }, + "node_modules/dot-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dotenv": { + "version": "8.2.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/drbg.js": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "browserify-aes": "^1.0.6", + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "license": "MIT" + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "license": "MIT", + "optional": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ecc-jsbn/node_modules/jsbn": { + "version": "0.1.1", + "license": "MIT", + "optional": true + }, + "node_modules/ecstatic": { + "version": "3.3.2", + "license": "MIT", + "dependencies": { + "he": "^1.1.1", + "mime": "^1.6.0", + "minimist": "^1.1.0", + "url-join": "^2.0.5" + }, + "bin": { + "ecstatic": "lib/ecstatic.js" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/ejs": { + "version": "3.1.8", + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron": { + "version": "1.8.8", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "^8.0.24", + "electron-download": "^3.0.1", + "extract-zip": "^1.0.3" + }, + "bin": { + "electron": "cli.js" + } + }, + "node_modules/electron-download": { + "version": "3.3.0", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "debug": "^2.2.0", + "fs-extra": "^0.30.0", + "home-path": "^1.0.1", + "minimist": "^1.2.0", + "nugget": "^2.0.0", + "path-exists": "^2.1.0", + "rc": "^1.1.2", + "semver": "^5.3.0", + "sumchecker": "^1.2.0" + }, + "bin": { + "electron-download": "build/cli.js" + } + }, + "node_modules/electron-download/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/electron-download/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/electron-download/node_modules/semver": { + "version": "5.7.1", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/electron-eval": { + "version": "0.9.10", + "license": "MIT", + "optional": true, + "dependencies": { + "cross-spawn": "^5.1.0", + "electron": "^1.6.11", + "ndjson": "^1.5.0" + }, + "optionalDependencies": { + "headless": "https://github.com/paulkernfeld/node-headless/tarball/master" + } + }, + "node_modules/electron-eval/node_modules/cross-spawn": { + "version": "5.1.0", + "license": "MIT", + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/electron-eval/node_modules/lru-cache": { + "version": "4.1.5", + "license": "ISC", + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/electron-eval/node_modules/shebang-command": { + "version": "1.2.0", + "license": "MIT", + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-eval/node_modules/shebang-regex": { + "version": "1.0.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-eval/node_modules/which": { + "version": "1.3.1", + "license": "ISC", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/electron-eval/node_modules/yallist": { + "version": "2.1.2", + "license": "ISC", + "optional": true + }, + "node_modules/electron-fetch": { + "version": "1.7.4", + "license": "MIT", + "dependencies": { + "encoding": "^0.1.13" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.3.749", + "license": "ISC" + }, + "node_modules/electron-webrtc": { + "version": "0.3.0", + "license": "MIT", + "optional": true, + "dependencies": { + "debug": "^2.2.0", + "electron-eval": "^0.9.0", + "get-browser-rtc": "^1.0.2", + "hat": "^0.0.3" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/electron-webrtc/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/electron-webrtc/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/electron/node_modules/@types/node": { + "version": "8.10.66", + "license": "MIT", + "optional": true + }, + "node_modules/elliptic": { + "version": "6.5.4", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/emittery": { + "version": "0.13.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "license": "MIT", + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.2", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/engine.io": { + "version": "6.4.0", + "license": "MIT", + "dependencies": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.11.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/engine.io-client": { + "version": "6.2.3", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.2.3", + "xmlhttprequest-ssl": "~2.0.0" + } + }, + "node_modules/engine.io-client/node_modules/ws": { + "version": "8.2.3", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/engine.io-parser": { + "version": "5.0.4", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/envinfo": { + "version": "7.8.1", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/err-code": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/errno": { + "version": "0.1.8", + "license": "MIT", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "license": "MIT" + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es6-object-assign": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/es6-promise": { + "version": "4.2.8", + "license": "MIT", + "optional": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-goat": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ethers": { + "version": "5.7.2", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/base64": "5.7.0", + "@ethersproject/basex": "5.7.0", + "@ethersproject/bignumber": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/constants": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/networks": "5.7.1", + "@ethersproject/pbkdf2": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/rlp": "5.7.0", + "@ethersproject/sha2": "5.7.0", + "@ethersproject/signing-key": "5.7.0", + "@ethersproject/solidity": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/units": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/web": "5.7.1", + "@ethersproject/wordlists": "5.7.0" + } + }, + "node_modules/event-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/cookie": { + "version": "0.5.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.7", + "license": "MIT" + }, + "node_modules/extend": { + "version": "3.0.2", + "license": "MIT", + "optional": true + }, + "node_modules/external-editor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "dev": true, + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/extract-zip": { + "version": "1.7.0", + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + } + }, + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "optional": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "license": "MIT" + }, + "node_modules/fast-fifo": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "license": "MIT" + }, + "node_modules/fast-redact": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "license": "MIT" + }, + "node_modules/fast-write-atomic": { + "version": "0.2.1", + "license": "MIT" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "license": "MIT", + "optional": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/fetch-mock": { + "version": "9.11.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.0.0", + "@babel/runtime": "^7.0.0", + "core-js": "^3.0.0", + "debug": "^4.1.1", + "glob-to-regexp": "^0.4.0", + "is-subset": "^0.1.1", + "lodash.isequal": "^4.5.0", + "path-to-regexp": "^2.2.1", + "querystring": "^0.2.0", + "whatwg-url": "^6.5.0" + }, + "engines": { + "node": ">=4.0.0" + }, + "funding": { + "type": "charity", + "url": "https://www.justgiving.com/refugee-support-europe" + }, + "peerDependencies": { + "node-fetch": "*" + }, + "peerDependenciesMeta": { + "node-fetch": { + "optional": true + } + } + }, + "node_modules/fetch-mock-jest": { + "version": "1.5.1", + "dev": true, + "license": "MIT", + "dependencies": { + "fetch-mock": "^9.11.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "funding": { + "type": "charity", + "url": "https://www.justgiving.com/refugee-support-europe" + }, + "peerDependencies": { + "node-fetch": "*" + }, + "peerDependenciesMeta": { + "node-fetch": { + "optional": true + } + } + }, + "node_modules/fetch-mock/node_modules/tr46": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/fetch-mock/node_modules/webidl-conversions": { + "version": "4.0.2", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/fetch-mock/node_modules/whatwg-url": { + "version": "6.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-type": { + "version": "18.2.0", + "license": "MIT", + "dependencies": { + "readable-web-to-node-stream": "^3.0.2", + "strtok3": "^7.0.0", + "token-types": "^5.0.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/filelist": { + "version": "1.0.4", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "10.0.6", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 10.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/flatstr": { + "version": "1.0.12", + "license": "MIT" + }, + "node_modules/fnv1a": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/follow-redirects": { + "version": "1.14.1", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreach": { + "version": "2.0.5", + "license": "MIT" + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "8.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">=12.13.0", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "typescript": ">3.6.0", + "webpack": "^5.11.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/jsonfile": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/form-data": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "2.1.4", + "license": "MIT", + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/formidable": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "dezalgo": "^1.0.4", + "hexoid": "^1.0.0", + "once": "^1.4.0", + "qs": "^6.11.0" + }, + "funding": { + "url": "https://ko-fi.com/tunnckoCore/commissions" + } + }, + "node_modules/freeport-promise": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "0.30.0", + "license": "MIT", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" + } + }, + "node_modules/fs-extra/node_modules/rimraf": { + "version": "2.7.1", + "license": "ISC", + "optional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.4", + "dev": true, + "license": "Unlicense" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/function-timeout": { + "version": "0.1.1", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gar": { + "version": "1.0.4", + "license": "MIT" + }, + "node_modules/gauge": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-browser-rtc": { + "version": "1.1.0", + "license": "MIT", + "optional": true + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-folder-size": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "gar": "^1.0.4" + }, + "bin": { + "get-folder-size": "bin/get-folder-size.js" + }, + "engines": { + "node": ">=14.13.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-iterator": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-port": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "license": "BSD-2-Clause" + }, + "node_modules/global-dirs": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/go-ipfs": { + "name": "mocked-go-ipfs", + "version": "0.17.0", + "license": "ISC" + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "license": "ISC" + }, + "node_modules/hamt-sharding": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "sparse-array": "^1.3.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/hamt-sharding/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/hapi-pino": { + "version": "8.5.0", + "license": "MIT", + "dependencies": { + "@hapi/hoek": "^9.0.0", + "abstract-logging": "^2.0.0", + "pino": "^6.0.0", + "pino-pretty": "^4.0.0" + } + }, + "node_modules/har-schema": { + "version": "2.0.0", + "license": "ISC", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "license": "MIT", + "optional": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-own-prop": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "license": "ISC" + }, + "node_modules/has-yarn": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hashlru": { + "version": "2.3.0", + "license": "MIT" + }, + "node_modules/hat": { + "version": "0.0.3", + "license": "MIT/X11", + "optional": true + }, + "node_modules/he": { + "version": "1.2.0", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/header-case": { + "version": "2.0.4", + "license": "MIT", + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/headless": { + "version": "1.1.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/hexoid": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/home-path": { + "version": "1.0.7", + "license": "MIT", + "optional": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/http-cache-semantics": { + "version": "4.1.0", + "license": "BSD-2-Clause" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-server": { + "version": "0.12.3", + "license": "MIT", + "dependencies": { + "basic-auth": "^1.0.3", + "colors": "^1.4.0", + "corser": "^2.0.1", + "ecstatic": "^3.3.2", + "http-proxy": "^1.18.0", + "minimist": "^1.2.5", + "opener": "^1.5.1", + "portfinder": "^1.0.25", + "secure-compare": "3.0.1", + "union": "~0.5.0" + }, + "bin": { + "hs": "bin/http-server", + "http-server": "bin/http-server" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/image-size": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-lazy": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/path-exists": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "license": "ISC" + }, + "node_modules/inquirer": { + "version": "8.2.5", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/interface-blockstore": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "interface-store": "^3.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/interface-datastore": { + "version": "7.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "interface-store": "^3.0.0", + "nanoid": "^4.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/interface-datastore/node_modules/nanoid": { + "version": "4.0.0", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/interface-datastore/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/interface-store": { + "version": "3.0.4", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "license": "MIT" + }, + "node_modules/ip-regex": { + "version": "4.3.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ipfs": { + "version": "0.66.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "ipfs-cli": "^0.16.0", + "ipfs-core": "^0.18.0", + "semver": "^7.3.2", + "update-notifier": "^6.0.0" + }, + "bin": { + "jsipfs": "src/cli.js" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "optionalDependencies": { + "electron-webrtc": "^0.3.0", + "wrtc": "^0.4.6" + } + }, + "node_modules/ipfs-bitswap": { + "version": "15.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/topology": "^4.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@vascosantos/moving-average": "^1.1.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "blockstore-core": "^3.0.0", + "interface-blockstore": "^4.0.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "just-debounce-it": "^3.0.1", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "readable-stream": "^4.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0", + "varint-decoder": "^1.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/ipfs-bitswap/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/ipfs-bitswap/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-bitswap/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/readable-stream": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli": { + "version": "0.16.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "byteman": "^1.3.5", + "execa": "^6.1.0", + "get-folder-size": "^4.0.0", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-daemon": "^0.16.0", + "ipfs-http-client": "^60.0.0", + "ipfs-utils": "^9.0.13", + "it-concat": "^3.0.1", + "it-merge": "^2.0.0", + "it-pipe": "^2.0.3", + "it-split": "^2.0.0", + "it-tar": "^6.0.0", + "jsondiffpatch": "^0.4.1", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "pretty-bytes": "^6.0.0", + "progress": "^2.0.3", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2", + "yargs": "^17.4.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/execa": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/ipfs-cli/node_modules/human-signals": { + "version": "3.0.1", + "license": "Apache-2.0", + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/ipfs-cli/node_modules/is-stream": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/mimic-fn": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/npm-run-path": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/onetime": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/path-key": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/strip-final-newline": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core": { + "version": "0.18.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@chainsafe/libp2p-noise": "^11.0.0", + "@ipld/car": "^5.0.0", + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/bootstrap": "^6.0.0", + "@libp2p/crypto": "^1.0.0", + "@libp2p/delegated-content-routing": "^4.0.0", + "@libp2p/delegated-peer-routing": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.6", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/kad-dht": "^7.0.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/mplex": "^7.1.1", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/websockets": "^5.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.1.5", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "@multiformats/murmur3": "^2.0.0", + "any-signal": "^3.0.0", + "array-shuffle": "^3.0.0", + "blockstore-core": "^3.0.0", + "browser-readablestream-to-it": "^2.0.0", + "dag-jose": "^4.0.0", + "datastore-core": "^8.0.1", + "datastore-pubsub": "^7.0.0", + "dlv": "^1.1.3", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "hashlru": "^2.3.0", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-bitswap": "^15.0.0", + "ipfs-core-config": "^0.7.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-client": "^60.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-unixfs-exporter": "^10.0.0", + "ipfs-unixfs-importer": "^12.0.0", + "ipfs-utils": "^9.0.9", + "ipns": "^5.0.1", + "is-domain-name": "^1.0.1", + "is-ipfs": "^8.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-tar": "^6.0.0", + "it-to-buffer": "^3.0.0", + "just-safe-set": "^4.0.2", + "libp2p": "^0.42.0", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "pako": "^2.0.4", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config": { + "version": "0.7.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@chainsafe/libp2p-gossipsub": "^6.0.0", + "@libp2p/floodsub": "^6.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/mdns": "^6.0.0", + "@libp2p/prometheus-metrics": "^1.0.1", + "@libp2p/tcp": "^6.0.2", + "@libp2p/webrtc-star": "^6.0.0", + "blockstore-datastore-adapter": "^5.0.0", + "datastore-core": "^8.0.1", + "datastore-fs": "^8.0.0", + "datastore-level": "^9.0.0", + "err-code": "^3.0.1", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-utils": "^9.0.13", + "is-ipfs": "^8.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-foreach": "^1.0.0", + "p-queue": "^7.2.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-core-config/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types": { + "version": "0.14.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/node": "^18.0.0", + "interface-datastore": "^7.0.0", + "ipfs-unixfs": "^9.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types/node_modules/@types/node": { + "version": "18.11.19", + "license": "MIT" + }, + "node_modules/ipfs-core-utils": { + "version": "0.18.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "any-signal": "^3.0.0", + "blob-to-it": "^2.0.0", + "browser-readablestream-to-it": "^2.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-utils": "^9.0.13", + "it-all": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "nanoid": "^4.0.0", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-utils/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-utils/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-utils/node_modules/nanoid": { + "version": "4.0.1", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/ipfs-core-utils/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-daemon": { + "version": "0.16.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "@libp2p/webrtc-star": "^6.0.0", + "@mapbox/node-pre-gyp": "^1.0.5", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-server": "^0.12.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-http-server": "^0.15.0", + "ipfs-utils": "^9.0.13", + "libp2p": "^0.42.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "optionalDependencies": { + "electron-webrtc": "^0.3.0", + "prom-client": "^14.0.1", + "wrtc": "^0.4.6" + } + }, + "node_modules/ipfs-grpc-protocol": { + "version": "0.8.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server": { + "version": "0.12.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@grpc/grpc-js": "^1.1.8", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "change-case": "^4.1.1", + "coercer": "^1.1.2", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-protocol": "^0.8.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "nanoid": "^4.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "ws": "^8.5.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-grpc-server/node_modules/nanoid": { + "version": "4.0.1", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/ipfs-grpc-server/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client": { + "version": "60.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "any-signal": "^3.0.0", + "dag-jose": "^4.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-utils": "^9.0.13", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-gateway": { + "version": "0.13.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/logger": "^2.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-http-response": "^6.0.0", + "is-ipfs": "^8.0.0", + "it-last": "^2.0.0", + "it-to-stream": "^1.0.0", + "joi": "^17.2.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-gateway/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-response": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "ejs": "^3.1.6", + "file-type": "^18.0.0", + "filesize": "^10.0.5", + "it-map": "^2.0.0", + "it-reader": "^6.0.1", + "it-to-stream": "^1.0.0", + "mime-types": "^2.1.30", + "p-try-each": "^1.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-response/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server": { + "version": "0.15.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@hapi/boom": "^9.1.0", + "@hapi/content": "^5.0.2", + "@hapi/hapi": "^20.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "any-signal": "^3.0.0", + "dlv": "^1.1.3", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-multipart": "^3.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reduce": "^2.0.0", + "joi": "^17.2.1", + "just-safe-set": "^4.0.2", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "stream-to-it": "^0.2.2", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "optionalDependencies": { + "prom-client": "^14.0.1" + } + }, + "node_modules/ipfs-http-server/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-log": { + "version": "5.4.2", + "license": "MIT", + "dependencies": { + "json-stringify-deterministic": "^1.0.1", + "multihashing-async": "^2.0.1", + "orbit-db-identity-provider": "^0.3.1", + "orbit-db-io": "^1.1.2", + "p-do-whilst": "^1.1.0", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-whilst": "^2.1.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/ipfs-log/node_modules/iso-random-stream": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "readable-stream": "^3.4.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ipfs-log/node_modules/libp2p-crypto": { + "version": "0.16.4", + "license": "MIT", + "dependencies": { + "asmcrypto.js": "^2.3.2", + "asn1.js": "^5.0.1", + "async": "^2.6.1", + "bn.js": "^4.11.8", + "browserify-aes": "^1.2.0", + "bs58": "^4.0.1", + "iso-random-stream": "^1.1.0", + "keypair": "^1.0.1", + "libp2p-crypto-secp256k1": "~0.3.0", + "multihashing-async": "~0.5.1", + "node-forge": "^0.10.0", + "pem-jwk": "^2.0.0", + "protons": "^1.0.1", + "rsa-pem-to-jwk": "^1.1.3", + "tweetnacl": "^1.0.0", + "ursa-optional": "~0.10.0" + }, + "engines": { + "node": ">=10.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/ipfs-log/node_modules/libp2p-crypto/node_modules/multihashing-async": { + "version": "0.5.2", + "license": "MIT", + "dependencies": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/ipfs-log/node_modules/multibase": { + "version": "0.7.0", + "license": "MIT", + "dependencies": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "node_modules/ipfs-log/node_modules/multibase/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/ipfs-log/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/ipfs-log/node_modules/multihashes": { + "version": "0.4.21", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + } + }, + "node_modules/ipfs-log/node_modules/multihashes/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/ipfs-log/node_modules/orbit-db-identity-provider": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "ethers": "^5.0.8", + "orbit-db-keystore": "~0.3.5" + } + }, + "node_modules/ipfs-log/node_modules/orbit-db-io": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/ipfs-log/node_modules/orbit-db-keystore": { + "version": "0.3.5", + "license": "MIT", + "dependencies": { + "elliptic": "^6.5.3", + "level": "~5.0.1", + "leveldown": "~5.1.1", + "levelup": "~4.1.0", + "libp2p-crypto": "^0.16.0", + "libp2p-crypto-secp256k1": "^0.3.0", + "lru": "^3.1.0", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1" + } + }, + "node_modules/ipfs-log/node_modules/tweetnacl": { + "version": "1.0.3", + "license": "Unlicense" + }, + "node_modules/ipfs-log/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/ipfs-pubsub-1on1": { + "version": "0.1.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.1" + } + }, + "node_modules/ipfs-pubsub-peer-monitor": { + "version": "0.0.10", + "license": "MIT", + "dependencies": { + "p-forever": "^2.1.0" + } + }, + "node_modules/ipfs-repo": { + "version": "17.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "bytes": "^3.1.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-repo-migrations": "^15.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "just-safe-get": "^4.1.1", + "just-safe-set": "^4.1.1", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "proper-lockfile": "^4.0.0", + "quick-lru": "^6.1.1", + "sort-keys": "^5.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo-migrations": { + "version": "15.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "fnv1a": "^1.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-length": "^2.0.0", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo-migrations/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo-migrations/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-repo-migrations/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-repo-migrations/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-parallel-batch": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-batch": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-repo/node_modules/quick-lru": { + "version": "6.1.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-repo/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "err-code": "^3.0.1", + "protobufjs": "^7.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter": { + "version": "10.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer": { + "version": "12.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-batch": "^2.0.0", + "it-first": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "rabin-wasm": "^0.1.4", + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/it-parallel-batch": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-batch": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-unixfs/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-utils": { + "version": "9.0.14", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "any-signal": "^3.0.0", + "browser-readablestream-to-it": "^1.0.0", + "buffer": "^6.0.1", + "electron-fetch": "^1.7.2", + "err-code": "^3.0.1", + "is-electron": "^2.2.0", + "iso-url": "^1.1.5", + "it-all": "^1.0.4", + "it-glob": "^1.0.1", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "nanoid": "^3.1.20", + "native-fetch": "^3.0.0", + "node-fetch": "^2.6.8", + "react-native-fetch-api": "^3.0.0", + "stream-to-it": "^0.2.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-utils/node_modules/browser-readablestream-to-it": { + "version": "1.0.3", + "license": "ISC" + }, + "node_modules/ipfsd-ctl": { + "version": "12.2.2", + "license": "Apache-2.0 OR MIT", + "peer": true, + "dependencies": { + "@hapi/boom": "^10.0.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/interface-peer-id": "^1.0.4", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "execa": "^6.1.0", + "ipfs-utils": "^9.0.1", + "joi": "^17.2.1", + "merge-options": "^3.0.1", + "nanoid": "^4.0.0", + "p-wait-for": "^5.0.0", + "temp-write": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfsd-ctl/node_modules/@hapi/boom": { + "version": "10.0.0", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "@hapi/hoek": "10.x.x" + } + }, + "node_modules/ipfsd-ctl/node_modules/@hapi/hoek": { + "version": "10.0.1", + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/ipfsd-ctl/node_modules/execa": { + "version": "6.1.0", + "license": "MIT", + "peer": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/ipfsd-ctl/node_modules/human-signals": { + "version": "3.0.1", + "license": "Apache-2.0", + "peer": true, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/ipfsd-ctl/node_modules/is-stream": { + "version": "3.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/mimic-fn": { + "version": "4.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/nanoid": { + "version": "4.0.0", + "license": "MIT", + "peer": true, + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/ipfsd-ctl/node_modules/npm-run-path": { + "version": "5.1.0", + "license": "MIT", + "peer": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/onetime": { + "version": "6.0.0", + "license": "MIT", + "peer": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/path-key": { + "version": "4.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/strip-final-newline": { + "version": "3.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "peer": true, + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipns": { + "version": "5.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "cborg": "^1.3.3", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "timestamp-nano": "^1.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipns/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipns/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "dev": true, + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/is-callable": { + "version": "1.2.4", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-domain-name": { + "version": "1.0.1", + "license": "ISC" + }, + "node_modules/is-electron": { + "version": "2.2.1", + "license": "MIT" + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "license": "MIT", + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-ip": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "ip-regex": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-ipfs": { + "version": "8.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "iso-url": "^1.1.3", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/is-ipfs/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/is-nan": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-node": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-npm": { + "version": "6.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-promise": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-subset": { + "version": "0.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.8", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array/node_modules/es-abstract": { + "version": "1.19.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakref": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-yarn-global": { + "version": "0.4.1", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/iso-constants": { + "version": "0.1.2", + "hasInstallScript": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/iso-random-stream": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "events": "^3.3.0", + "readable-stream": "^3.4.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/iso-url": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/isobject": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "license": "MIT", + "optional": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/it-all": { + "version": "1.0.6", + "license": "ISC" + }, + "node_modules/it-batch": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-batched-bytes": { + "version": "1.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.4.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-batched-bytes/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-concat": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-concat/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-drain": { + "version": "1.0.5", + "license": "ISC" + }, + "node_modules/it-filter": { + "version": "1.0.3", + "license": "ISC" + }, + "node_modules/it-first": { + "version": "1.0.7", + "license": "ISC" + }, + "node_modules/it-foreach": { + "version": "1.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-glob": { + "version": "1.0.2", + "license": "ISC", + "dependencies": { + "@types/minimatch": "^3.0.4", + "minimatch": "^3.0.4" + } + }, + "node_modules/it-handshake": { + "version": "4.1.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-handshake/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/it-handshake/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-last": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-length": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-length-prefixed": { + "version": "8.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "err-code": "^3.0.1", + "it-stream-types": "^1.0.4", + "uint8-varint": "^1.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-length-prefixed/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-map": { + "version": "1.0.6", + "license": "ISC" + }, + "node_modules/it-merge": { + "version": "1.0.4", + "license": "ISC", + "dependencies": { + "it-pushable": "^1.4.0" + } + }, + "node_modules/it-multipart": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "formidable": "^2.0.1", + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-multipart/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pair": { + "version": "2.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-stream-types": "^1.0.3", + "p-defer": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pair/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-parallel": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "p-defer": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-parallel-batch": { + "version": "1.0.11", + "license": "ISC", + "dependencies": { + "it-batch": "^1.0.9" + } + }, + "node_modules/it-parallel-batch/node_modules/it-batch": { + "version": "1.0.9", + "license": "ISC" + }, + "node_modules/it-parallel/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-pb-stream": { + "version": "2.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-peekable": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pipe": { + "version": "2.0.5", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-merge": "^2.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.3" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pipe/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pipe/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pushable": { + "version": "1.4.2", + "license": "MIT", + "dependencies": { + "fast-fifo": "^1.0.0" + } + }, + "node_modules/it-reader": { + "version": "6.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-reduce": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-sort": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-all": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-sort/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-split": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arraylist": "^2.4.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-stream-types": { + "version": "1.0.4", + "license": "Apache-2.0 OR MIT" + }, + "node_modules/it-take": { + "version": "1.0.2", + "license": "ISC" + }, + "node_modules/it-tar": { + "version": "6.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "iso-constants": "^0.1.2", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "it-to-buffer": "^3.0.0", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-tar/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-tar/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-to-buffer": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-to-buffer/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-to-stream": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "fast-fifo": "^1.0.0", + "get-iterator": "^1.0.2", + "p-defer": "^3.0.0", + "p-fifo": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "node_modules/it-ws": { + "version": "5.0.6", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "event-iterator": "^2.0.0", + "iso-url": "^1.1.2", + "it-stream-types": "^1.0.2", + "uint8arrays": "^4.0.2", + "ws": "^8.4.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-ws/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-ws/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/iterare": { + "version": "1.2.1", + "license": "ISC", + "engines": { + "node": ">=6" + } + }, + "node_modules/jake": { + "version": "10.8.5", + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/async": { + "version": "3.2.4", + "license": "MIT" + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.4.2", + "@jest/types": "^29.4.2", + "import-local": "^3.0.2", + "jest-cli": "^29.4.2" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "p-limit": "^3.1.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.4.2", + "@jest/types": "^29.4.2", + "babel-jest": "^29.4.2", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-config/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "jest-util": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-matcher-utils": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.4.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/@babel/code-frame": { + "version": "7.18.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-regex-util": "^29.4.2", + "jest-snapshot": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/resolve.exports": { + "version": "2.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.4.2", + "@jest/environment": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-leak-detector": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-util": "^29.4.2", + "jest-watcher": "^29.4.2", + "jest-worker": "^29.4.2", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/buffer-from": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runtime": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/globals": "^29.4.2", + "@jest/source-map": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "semver": "^7.3.5", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/strip-bom": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "natural-compare": "^1.4.0", + "pretty-format": "^29.4.2", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "leven": "^3.1.0", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/jest-get-type": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/leven": { + "version": "3.1.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.2.0", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.4.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.4.2", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jmespath": { + "version": "0.15.0", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/joi": { + "version": "17.8.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/address": "^5.1.0", + "@hapi/formula": "^3.0.2", + "@hapi/hoek": "^11.0.2", + "@hapi/pinpoint": "^2.0.1", + "@hapi/tlds": "^1.0.1", + "@hapi/topo": "^6.0.1" + } + }, + "node_modules/joi/node_modules/@hapi/hoek": { + "version": "11.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/joi/node_modules/@hapi/topo": { + "version": "6.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^11.0.2" + } + }, + "node_modules/joycon": { + "version": "2.2.5", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "2.5.2", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "license": "MIT" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "license": "(AFL-2.1 OR BSD-3-Clause)", + "optional": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "license": "MIT" + }, + "node_modules/json-stringify-deterministic": { + "version": "1.0.8", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "license": "ISC", + "optional": true + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jsondiffpatch": { + "version": "0.4.1", + "license": "MIT", + "dependencies": { + "chalk": "^2.3.0", + "diff-match-patch": "^1.0.0" + }, + "bin": { + "jsondiffpatch": "bin/jsondiffpatch" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/jsonfile": { + "version": "2.4.0", + "license": "MIT", + "optional": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/just-debounce-it": { + "version": "3.2.0", + "license": "MIT" + }, + "node_modules/just-safe-get": { + "version": "4.2.0", + "license": "MIT" + }, + "node_modules/just-safe-set": { + "version": "4.2.1", + "license": "MIT" + }, + "node_modules/k-bucket": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/keypair": { + "version": "1.0.4", + "license": "BSD / GPL" + }, + "node_modules/keyv": { + "version": "4.5.2", + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klaw": { + "version": "1.3.1", + "license": "MIT", + "optional": true, + "optionalDependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/latest-version": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "package-json": "^8.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/level": { + "version": "8.0.0", + "license": "MIT", + "dependencies": { + "browser-level": "^1.0.1", + "classic-level": "^1.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/level" + } + }, + "node_modules/level-concat-iterator": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "catering": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/level-errors": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "errno": "~0.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-iterator-stream": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.4.0", + "xtend": "^4.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-supports": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/level-transcoder": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "module-error": "^1.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/leveldown": { + "version": "6.1.1", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "abstract-leveldown": "^7.2.0", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/levelup": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "deferred-leveldown": "~5.1.0", + "level-errors": "~2.0.0", + "level-iterator-stream": "~4.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/libp2p": { + "version": "0.42.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@achingbrain/nat-port-mapper": "^1.0.3", + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-encrypter": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-libp2p": "^1.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-routing": "^1.0.1", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/multistream-select": "^3.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/peer-store": "^6.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-foreach": "^1.0.0", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-pair": "^2.0.2", + "it-pipe": "^2.0.3", + "it-sort": "^2.0.0", + "it-stream-types": "^1.0.4", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "node-forge": "^1.3.1", + "p-fifo": "^1.0.0", + "p-retry": "^5.0.0", + "p-settle": "^5.0.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "rate-limiter-flexible": "^2.3.11", + "retimer": "^3.0.0", + "sanitize-filename": "^1.6.3", + "set-delayed-interval": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2", + "wherearewe": "^2.0.0", + "xsalsa20": "^1.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p-crypto": { + "version": "0.21.2", + "license": "MIT", + "dependencies": { + "@noble/ed25519": "^1.5.1", + "@noble/secp256k1": "^1.3.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.0", + "multiformats": "^9.4.5", + "node-forge": "^1.2.1", + "protobufjs": "^6.11.2", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "async": "^2.6.2", + "bs58": "^4.0.1", + "multihashing-async": "~0.6.0", + "nodeify": "^1.0.1", + "safe-buffer": "^5.1.2", + "secp256k1": "^3.6.2" + }, + "engines": { + "node": ">=6.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/multibase": { + "version": "0.7.0", + "license": "MIT", + "dependencies": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/multihashes": { + "version": "0.4.21", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/multihashing-async": { + "version": "0.6.0", + "license": "MIT", + "dependencies": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/secp256k1": { + "version": "3.8.0", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "bindings": "^1.5.0", + "bip66": "^1.1.5", + "bn.js": "^4.11.8", + "create-hash": "^1.2.0", + "drbg.js": "^1.0.1", + "elliptic": "^6.5.2", + "nan": "^2.14.0", + "safe-buffer": "^5.1.2" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/libp2p-crypto/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/libp2p-crypto/node_modules/node-forge": { + "version": "1.3.1", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/libp2p/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/@libp2p/peer-record": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/libp2p/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/libp2p/node_modules/ip-regex": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/libp2p/node_modules/ipaddr.js": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/libp2p/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/libp2p/node_modules/node-forge": { + "version": "1.3.1", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/libp2p/node_modules/private-ip": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/libp2p/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libphonenumber-js": { + "version": "1.9.44", + "license": "MIT" + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "dev": true, + "license": "MIT" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "license": "MIT", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "2.2.3", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "license": "MIT" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logplease": { + "version": "1.2.15", + "license": "MIT" + }, + "node_modules/long": { + "version": "4.0.0", + "license": "Apache-2.0" + }, + "node_modules/longbits": { + "version": "1.1.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "byte-access": "^1.0.1", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/luxon": { + "version": "1.28.0", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/macos-release": { + "version": "2.5.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/magic-string": { + "version": "0.30.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "dev": true, + "license": "ISC" + }, + "node_modules/makeerror": { + "version": "1.0.12", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "dev": true, + "license": "Unlicense", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/merge-options": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/methods": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "license": "MIT", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.51.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.34", + "license": "MIT", + "dependencies": { + "mime-db": "1.51.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.0.4", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "4.2.8", + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mock-fs": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/module-error": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/mortice": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "nanoid": "^4.0.0", + "observable-webworkers": "^2.0.1", + "p-queue": "^7.2.0", + "p-timeout": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/mortice/node_modules/nanoid": { + "version": "4.0.0", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/mortice/node_modules/p-queue": { + "version": "7.3.0", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mortice/node_modules/p-queue/node_modules/p-timeout": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mortice/node_modules/p-timeout": { + "version": "6.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mri": { + "version": "1.1.4", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "license": "MIT" + }, + "node_modules/multer": { + "version": "1.4.4-lts.1", + "license": "MIT", + "dependencies": { + "append-field": "^1.0.0", + "busboy": "^1.0.0", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.4", + "object-assign": "^4.1.1", + "type-is": "^1.6.4", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/multiaddr": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "dns-over-http-resolver": "^1.2.3", + "err-code": "^3.0.1", + "is-ip": "^3.1.0", + "multiformats": "^9.4.5", + "uint8arrays": "^3.0.0", + "varint": "^6.0.0" + } + }, + "node_modules/multiaddr/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/multibase": { + "version": "4.0.6", + "license": "MIT", + "dependencies": { + "@multiformats/base-x": "^4.0.1" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multiformats": { + "version": "11.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/multihashes": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "multibase": "^4.0.1", + "uint8arrays": "^3.0.0", + "varint": "^5.0.2" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/multihashes/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/multihashing-async": { + "version": "2.1.4", + "license": "MIT", + "dependencies": { + "blakejs": "^1.1.0", + "err-code": "^3.0.0", + "js-sha3": "^0.8.0", + "multihashes": "^4.0.1", + "murmurhash3js-revisited": "^3.0.0", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/murmurhash3js": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/murmurhash3js-revisited": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "dev": true, + "license": "ISC" + }, + "node_modules/nan": { + "version": "2.17.0", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.4", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-macros": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/native-fetch": { + "version": "3.0.0", + "license": "MIT", + "peerDependencies": { + "node-fetch": "*" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/ndjson": { + "version": "1.5.0", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "json-stringify-safe": "^5.0.1", + "minimist": "^1.2.0", + "split2": "^2.1.0", + "through2": "^2.0.3" + }, + "bin": { + "ndjson": "cli.js" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "license": "MIT" + }, + "node_modules/netmask": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/no-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/node-addon-api": { + "version": "2.0.2", + "license": "MIT" + }, + "node_modules/node-emoji": { + "version": "1.11.0", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/node-fetch": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-gyp-build": { + "version": "4.3.0", + "license": "MIT", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "1.1.77", + "license": "MIT" + }, + "node_modules/nodeify": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "is-promise": "~1.0.0", + "promise": "~1.3.0" + } + }, + "node_modules/nopt": { + "version": "5.0.0", + "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npmlog": { + "version": "5.0.1", + "license": "ISC", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/nugget": { + "version": "2.2.0", + "license": "BSD", + "optional": true, + "dependencies": { + "debug": "^2.1.3", + "minimist": "^1.1.0", + "pretty-bytes": "^4.0.2", + "progress-stream": "^1.1.0", + "request": "^2.45.0", + "single-line-log": "^1.1.2", + "throttleit": "0.0.2" + }, + "bin": { + "nugget": "bin.js" + } + }, + "node_modules/nugget/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/nugget/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/nugget/node_modules/pretty-bytes": { + "version": "4.0.2", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.11.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "0.4.0", + "license": "MIT", + "optional": true + }, + "node_modules/object.assign": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.assign/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/observable-webworkers": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optimist": { + "version": "0.3.7", + "license": "MIT/X11", + "dependencies": { + "wordwrap": "~0.0.2" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ora/node_modules/bl": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/ora/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ora/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/orbit-db": { + "version": "0.29.0", + "license": "MIT", + "dependencies": { + "ipfs-pubsub-1on1": "^0.1.0", + "is-node": "^1.0.2", + "logplease": "^1.2.15", + "orbit-db-access-controllers": "^0.4.0", + "orbit-db-cache": "^0.5.0", + "orbit-db-counterstore": "^2.0.0", + "orbit-db-docstore": "^2.0.0", + "orbit-db-eventstore": "^2.0.0", + "orbit-db-feedstore": "^2.0.0", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "orbit-db-keystore": "^2.0.0", + "orbit-db-kvstore": "^2.0.0", + "orbit-db-pubsub": "^0.7.0", + "orbit-db-storage-adapter": "^0.9.0", + "orbit-db-store": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/orbit-db-access-controllers": { + "version": "0.4.0", + "license": "MIT", + "dependencies": { + "orbit-db-io": "^3.0.0", + "p-map-series": "^3.0.0", + "safe-buffer": "^5.2.1" + } + }, + "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-pb": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db-access-controllers/node_modules/orbit-db-io": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/orbit-db-identity-provider": { + "version": "0.5.0", + "license": "MIT", + "dependencies": { + "@ethersproject/wallet": "^5.7.0", + "assert": "^2.0.0", + "dids": "^3.4.0", + "lru": "^3.1.0", + "orbit-db-keystore": "^2.0.0", + "path-browserify": "^1.0.1", + "stream-browserify": "^3.0.0", + "uint8arrays": "^4.0.3" + } + }, + "node_modules/orbit-db-identity-provider/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db-io": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/orbit-db-io/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/orbit-db-keystore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "elliptic": "^6.5.4", + "level": "^8.0.0", + "lru": "^3.1.0", + "mkdirp": "^2.1.1", + "safe-buffer": "^5.2.1", + "secp256k1": "^5.0.0" + } + }, + "node_modules/orbit-db-keystore/node_modules/mkdirp": { + "version": "2.1.6", + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/orbit-db-keystore/node_modules/node-addon-api": { + "version": "5.1.0", + "license": "MIT" + }, + "node_modules/orbit-db-keystore/node_modules/secp256k1": { + "version": "5.0.0", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "elliptic": "^6.5.4", + "node-addon-api": "^5.0.0", + "node-gyp-build": "^4.2.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/orbit-db-pubsub": { + "version": "0.6.0", + "license": "MIT", + "dependencies": { + "ipfs-pubsub-peer-monitor": "~0.0.5", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "node_modules/orbit-db-storage-adapter": { + "version": "0.9.0", + "license": "MIT", + "dependencies": { + "level": "^8.0.0", + "mkdirp": "^2.1.1" + } + }, + "node_modules/orbit-db-storage-adapter/node_modules/mkdirp": { + "version": "2.1.3", + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/orbit-db-store": { + "version": "4.3.4", + "license": "MIT", + "dependencies": { + "ipfs-log": "^5.4.1", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.14", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-queue": "^6.6.2", + "readable-stream": "~3.6.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "orbit-db-io": "*" + } + }, + "node_modules/orbit-db-store/node_modules/p-queue": { + "version": "6.6.2", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db-store/node_modules/p-timeout": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/orbit-db/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db/node_modules/aggregate-error": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/clean-stack": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/crdts": { + "version": "0.2.0", + "license": "MIT" + }, + "node_modules/orbit-db/node_modules/escape-string-regexp": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/indent-string": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/ipfs-log": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "json-stringify-deterministic": "^1.0.8", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "p-do-whilst": "^2.0.0", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-whilst": "^3.0.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/orbit-db/node_modules/ipfs-log/node_modules/p-map": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "aggregate-error": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-cache": { + "version": "0.5.0", + "license": "MIT", + "dependencies": { + "logplease": "~1.2.15" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-counterstore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "crdts": "^0.2.0" + }, + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-docstore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "p-map": "~1.1.1" + }, + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-eventstore": { + "version": "2.0.0", + "license": "MIT", + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-feedstore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "orbit-db-eventstore": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-io": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-kvstore": { + "version": "2.0.0", + "license": "MIT", + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-pubsub": { + "version": "0.7.0", + "license": "MIT", + "dependencies": { + "ipfs-pubsub-peer-monitor": "^0.1.0", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-store": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "ipfs-log": "^6.0.0", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.15", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-queue": "^7.3.0", + "readable-stream": "~4.3.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "orbit-db-io": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-store/node_modules/p-map": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "aggregate-error": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/p-do-whilst": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/p-each-series": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/p-map": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/orbit-db/node_modules/p-whilst": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/readable-stream": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/orbit-db/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/os-name": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "macos-release": "^2.5.0", + "windows-release": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-defer": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-do-whilst": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-each-series": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-event": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "p-timeout": "^5.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-fifo": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "fast-fifo": "^1.0.0", + "p-defer": "^3.0.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-forever": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map-series": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-queue": { + "version": "7.3.4", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-reflect": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.1", + "retry": "^0.13.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry/node_modules/retry": { + "version": "0.13.1", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/p-series": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-series/node_modules/@sindresorhus/is": { + "version": "0.7.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-settle": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^4.0.0", + "p-reflect": "^3.1.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-settle/node_modules/p-limit": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-timeout": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try-each": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/p-wait-for": { + "version": "5.0.0", + "license": "MIT", + "peer": true, + "dependencies": { + "p-timeout": "^6.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-wait-for/node_modules/p-timeout": { + "version": "6.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-whilst": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/package-json": { + "version": "8.1.0", + "license": "MIT", + "dependencies": { + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/@sindresorhus/is": { + "version": "5.3.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/package-json/node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "defer-to-connect": "^2.0.1" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/cacheable-lookup": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/cacheable-request": { + "version": "10.2.3", + "license": "MIT", + "dependencies": { + "@types/http-cache-semantics": "^4.0.1", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.0", + "keyv": "^4.5.2", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/got": { + "version": "12.5.3", + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.1", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/package-json/node_modules/http2-wrapper": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/package-json/node_modules/lowercase-keys": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/mimic-response": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/normalize-url": { + "version": "8.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/p-cancelable": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/package-json/node_modules/responselike": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "lowercase-keys": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pako": { + "version": "2.1.0", + "license": "(MIT AND Zlib)" + }, + "node_modules/param-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-duration": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/path-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "2.1.0", + "license": "MIT", + "optional": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.9.2", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^9.1.1", + "minipass": "^5.0.0 || ^6.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "9.1.2", + "dev": true, + "license": "ISC", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-scurry/node_modules/minipass": { + "version": "6.0.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/path-to-regexp": { + "version": "2.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/peek-readable": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/peer-id": { + "version": "0.16.0", + "license": "MIT", + "dependencies": { + "class-is": "^1.1.0", + "libp2p-crypto": "^0.21.0", + "multiformats": "^9.4.5", + "protobufjs": "^6.10.2", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=15.0.0" + } + }, + "node_modules/peer-id/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/pem-jwk": { + "version": "2.0.0", + "license": "MPL-2.0", + "dependencies": { + "asn1.js": "^5.0.1" + }, + "bin": { + "pem-jwk": "bin/pem-jwk.js" + }, + "engines": { + "node": ">=5.10.0" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "license": "MIT", + "optional": true + }, + "node_modules/performance-now": { + "version": "2.1.0", + "license": "MIT", + "optional": true + }, + "node_modules/picomatch": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "license": "MIT", + "optional": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pino": { + "version": "6.14.0", + "license": "MIT", + "dependencies": { + "fast-redact": "^3.0.0", + "fast-safe-stringify": "^2.0.8", + "flatstr": "^1.0.12", + "pino-std-serializers": "^3.1.0", + "process-warning": "^1.0.0", + "quick-format-unescaped": "^4.0.3", + "sonic-boom": "^1.0.2" + }, + "bin": { + "pino": "bin.js" + } + }, + "node_modules/pino-pretty": { + "version": "4.8.0", + "license": "MIT", + "dependencies": { + "@hapi/bourne": "^2.0.0", + "args": "^5.0.1", + "chalk": "^4.0.0", + "dateformat": "^4.5.1", + "fast-safe-stringify": "^2.0.7", + "jmespath": "^0.15.0", + "joycon": "^2.2.5", + "pump": "^3.0.0", + "readable-stream": "^3.6.0", + "rfdc": "^1.3.0", + "split2": "^3.1.1", + "strip-json-comments": "^3.1.1" + }, + "bin": { + "pino-pretty": "bin.js" + } + }, + "node_modules/pino-pretty/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pino-pretty/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/pino-pretty/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/pino-pretty/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/pino-pretty/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pino-pretty/node_modules/split2": { + "version": "3.2.2", + "license": "ISC", + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/pino-pretty/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pino-std-serializers": { + "version": "3.2.0", + "license": "MIT" + }, + "node_modules/pirates": { + "version": "4.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkijs": { + "version": "3.0.8", + "license": "BSD-3-Clause", + "dependencies": { + "asn1js": "^3.0.5", + "bytestreamjs": "^2.0.0", + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/platform": { + "version": "1.3.6", + "license": "MIT" + }, + "node_modules/pluralize": { + "version": "8.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "license": "MIT", + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/pretty-bytes": { + "version": "6.1.0", + "license": "MIT", + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/private-ip": { + "version": "2.3.3", + "license": "MIT", + "dependencies": { + "ip-regex": "^4.3.0", + "ipaddr.js": "^2.0.1", + "is-ip": "^3.1.0", + "netmask": "^2.0.2" + } + }, + "node_modules/private-ip/node_modules/ipaddr.js": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/process": { + "version": "0.11.10", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/process-warning": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/progress": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/progress-stream": { + "version": "1.2.0", + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "speedometer": "~0.1.2", + "through2": "~0.2.3" + } + }, + "node_modules/progress-stream/node_modules/isarray": { + "version": "0.0.1", + "license": "MIT", + "optional": true + }, + "node_modules/progress-stream/node_modules/readable-stream": { + "version": "1.1.14", + "license": "MIT", + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/progress-stream/node_modules/string_decoder": { + "version": "0.10.31", + "license": "MIT", + "optional": true + }, + "node_modules/progress-stream/node_modules/through2": { + "version": "0.2.3", + "license": "MIT", + "optional": true, + "dependencies": { + "readable-stream": "~1.1.9", + "xtend": "~2.1.1" + } + }, + "node_modules/progress-stream/node_modules/xtend": { + "version": "2.1.2", + "optional": true, + "dependencies": { + "object-keys": "~0.4.0" + }, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/prom-client": { + "version": "14.1.1", + "license": "Apache-2.0", + "dependencies": { + "tdigest": "^0.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/promise": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "is-promise": "~1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/proper-lockfile": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "license": "ISC" + }, + "node_modules/protobufjs": { + "version": "6.11.2", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + } + }, + "node_modules/protocol-buffers-schema": { + "version": "3.6.0", + "license": "MIT" + }, + "node_modules/protons": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "protocol-buffers-schema": "^3.3.1", + "signed-varint": "^2.0.1", + "varint": "^5.0.0" + } + }, + "node_modules/protons-runtime": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.3.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "peerDependencies": { + "uint8arraylist": "^2.3.2" + } + }, + "node_modules/protons-runtime/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/protons-runtime/node_modules/protobufjs": { + "version": "7.1.2", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/protons/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/protons/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/forwarded": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "license": "ISC", + "optional": true + }, + "node_modules/psl": { + "version": "1.9.0", + "license": "MIT", + "optional": true + }, + "node_modules/pump": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pupa": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "escape-goat": "^4.0.0" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pvtsutils": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/pvutils": { + "version": "1.1.3", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/quick-format-unescaped": { + "version": "4.0.4", + "license": "MIT" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rabin-wasm": { + "version": "0.1.5", + "license": "MIT", + "dependencies": { + "@assemblyscript/loader": "^0.9.4", + "bl": "^5.0.0", + "debug": "^4.3.1", + "minimist": "^1.2.5", + "node-fetch": "^2.6.1", + "readable-stream": "^3.6.0" + }, + "bin": { + "rabin-wasm": "cli/bin.js" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rate-limiter-flexible": { + "version": "2.4.1", + "license": "ISC" + }, + "node_modules/raw-body": { + "version": "2.5.1", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "node_modules/react-native-fetch-api": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "p-defer": "^3.0.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/receptacle": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/rechoir": { + "version": "0.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/reflect-metadata": { + "version": "0.1.13", + "license": "Apache-2.0" + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "dev": true, + "license": "MIT" + }, + "node_modules/registry-auth-token": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "@pnpm/npm-conf": "^1.0.4" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/registry-url": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "rc": "1.2.8" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "license": "MIT", + "optional": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.20.0", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "license": "MIT" + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/retimer": { + "version": "3.0.0", + "license": "MIT" + }, + "node_modules/retry": { + "version": "0.12.0", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/rfdc": { + "version": "1.3.0", + "license": "MIT" + }, + "node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rpc-utils": { + "version": "0.6.2", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "nanoid": "^3.3.1" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/rsa-pem-to-jwk": { + "version": "1.1.3", + "license": "Apache 2.0", + "dependencies": { + "object-assign": "^2.0.0", + "rsa-unpack": "0.0.6" + } + }, + "node_modules/rsa-pem-to-jwk/node_modules/object-assign": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rsa-unpack": { + "version": "0.0.6", + "license": "MIT", + "dependencies": { + "optimist": "~0.3.5" + }, + "bin": { + "rsa-unpack": "bin/cmd.js" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel-limit": { + "version": "1.1.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "license": "MIT" + }, + "node_modules/sanitize-filename": { + "version": "1.6.3", + "license": "WTFPL OR ISC", + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "license": "ISC" + }, + "node_modules/schema-utils": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scrypt-js": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/secp256k1": { + "version": "4.0.3", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "elliptic": "^6.5.4", + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/secure-compare": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/semver": { + "version": "7.3.8", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-diff": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/send": { + "version": "0.18.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/set-delayed-interval": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "license": "ISC" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "license": "(MIT AND BSD-3-Clause)", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/shelljs/node_modules/interpret": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/shelljs/node_modules/rechoir": { + "version": "0.6.2", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "license": "ISC" + }, + "node_modules/signed-varint": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "varint": "~5.0.0" + } + }, + "node_modules/signed-varint/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/single-line-log": { + "version": "1.1.2", + "license": "MIT", + "optional": true, + "dependencies": { + "string-width": "^1.0.1" + } + }, + "node_modules/single-line-log/node_modules/ansi-regex": { + "version": "2.1.1", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "license": "MIT", + "optional": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/string-width": { + "version": "1.0.2", + "license": "MIT", + "optional": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/strip-ansi": { + "version": "3.0.1", + "license": "MIT", + "optional": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/socket.io": { + "version": "4.6.0", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "debug": "~4.3.2", + "engine.io": "~6.4.0", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-adapter": { + "version": "2.5.2", + "license": "MIT", + "dependencies": { + "ws": "~8.11.0" + } + }, + "node_modules/socket.io-client": { + "version": "4.5.4", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.2.3", + "socket.io-parser": "~4.2.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-parser": { + "version": "4.2.1", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socks": { + "version": "2.6.1", + "license": "MIT", + "dependencies": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "4", + "socks": "^2.3.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sonic-boom": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0", + "flatstr": "^1.0.12" + } + }, + "node_modules/sort-keys": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sort-keys/node_modules/is-plain-obj": { + "version": "4.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/buffer-from": { + "version": "1.1.2", + "license": "MIT" + }, + "node_modules/sparse-array": { + "version": "1.3.2", + "license": "ISC" + }, + "node_modules/speedometer": { + "version": "0.1.4", + "optional": true + }, + "node_modules/split2": { + "version": "2.2.0", + "license": "ISC", + "optional": true, + "dependencies": { + "through2": "^2.0.2" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/sshpk": { + "version": "1.17.0", + "license": "MIT", + "optional": true, + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sshpk/node_modules/jsbn": { + "version": "0.1.1", + "license": "MIT", + "optional": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-browserify": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "node_modules/stream-to-it": { + "version": "0.2.4", + "license": "MIT", + "dependencies": { + "get-iterator": "^1.0.2" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-replace-loader": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^5" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strtok3": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/sumchecker": { + "version": "1.3.1", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "debug": "^2.2.0", + "es6-promise": "^4.0.5" + } + }, + "node_modules/sumchecker/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/sumchecker/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/super-regex": { + "version": "0.2.0", + "license": "MIT", + "dependencies": { + "clone-regexp": "^3.0.0", + "function-timeout": "^0.1.0", + "time-span": "^5.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/symbol-observable": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.1.13", + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^4.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tdigest": { + "version": "0.1.2", + "license": "MIT", + "dependencies": { + "bintrees": "1.0.2" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/temp-write": { + "version": "5.0.0", + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.6", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/temp-write/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "peer": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/terser": { + "version": "5.18.0", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/acorn": { + "version": "8.8.2", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "license": "MIT" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/throttleit": { + "version": "0.0.2", + "license": "MIT", + "optional": true + }, + "node_modules/through": { + "version": "2.3.8", + "dev": true, + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "license": "MIT", + "optional": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.7", + "license": "MIT", + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT", + "optional": true + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/time-span": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "convert-hrtime": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/timeout-abort-controller": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "retimer": "^3.0.0" + } + }, + "node_modules/timestamp-nano": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/tmp": { + "version": "0.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "license": "BSD-3-Clause" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/token-types": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/truncate-utf8-bytes": { + "version": "1.0.2", + "license": "WTFPL", + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, + "node_modules/ts-jest": { + "version": "29.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest-resolver": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "jest-resolve": "^27.2.5" + } + }, + "node_modules/ts-jest-resolver/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/@types/yargs": { + "version": "16.0.5", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/ts-jest-resolver/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-jest-resolver/node_modules/camelcase": { + "version": "6.3.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ts-jest-resolver/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-jest-resolver/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/ts-jest-resolver/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-haste-map": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-regex-util": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-resolve": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-util": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-validate": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-worker": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/ts-jest-resolver/node_modules/leven": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-jest-resolver/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-jest/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-jest/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/ts-loader": { + "version": "9.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" + } + }, + "node_modules/ts-loader/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ts-loader/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/ts-loader/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-loader/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-node": { + "version": "10.9.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/acorn": { + "version": "8.8.1", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.7.0", + "tsconfig-paths": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tslib": { + "version": "2.5.3", + "license": "0BSD" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "license": "Unlicense", + "optional": true + }, + "node_modules/type-detect": { + "version": "4.0.8", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "2.19.0", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "license": "MIT" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/uid": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "@lukeed/csprng": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/uint8-varint": { + "version": "1.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "byte-access": "^1.0.0", + "longbits": "^1.1.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8-varint/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8-varint/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arraylist": { + "version": "2.4.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arraylist/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arraylist/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arrays": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "multiformats": "^9.4.2" + } + }, + "node_modules/uint8arrays/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici": { + "version": "5.12.0", + "license": "MIT", + "peer": true, + "dependencies": { + "busboy": "^1.6.0" + }, + "engines": { + "node": ">=12.18" + } + }, + "node_modules/union": { + "version": "0.5.0", + "dependencies": { + "qs": "^6.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/unique-string": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-notifier": { + "version": "6.0.2", + "license": "BSD-2-Clause", + "dependencies": { + "boxen": "^7.0.0", + "chalk": "^5.0.1", + "configstore": "^6.0.0", + "has-yarn": "^3.0.0", + "import-lazy": "^4.0.0", + "is-ci": "^3.0.1", + "is-installed-globally": "^0.4.0", + "is-npm": "^6.0.0", + "is-yarn-global": "^0.4.0", + "latest-version": "^7.0.0", + "pupa": "^3.1.0", + "semver": "^7.3.7", + "semver-diff": "^4.0.0", + "xdg-basedir": "^5.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/chalk": { + "version": "5.1.2", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/is-ci": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-join": { + "version": "2.0.5", + "license": "MIT" + }, + "node_modules/ursa-optional": { + "version": "0.10.2", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.14.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/utf8-byte-length": { + "version": "1.0.4", + "license": "WTFPL" + }, + "node_modules/util": { + "version": "0.12.4", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "safe-buffer": "^5.1.2", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "license": "MIT", + "optional": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-to-istanbul": { + "version": "9.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validator": { + "version": "13.7.0", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/varint": { + "version": "6.0.0", + "license": "MIT" + }, + "node_modules/varint-decoder": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "varint": "^5.0.0" + }, + "engines": { + "node": ">=4.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/varint-decoder/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/vary": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/wait-for-expect": { + "version": "3.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/walker": { + "version": "1.0.8", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webcrypto-core": { + "version": "1.7.7", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "asn1js": "^3.0.1", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "node_modules/webpack": { + "version": "5.75.0", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.0.1", + "@webpack-cli/info": "^2.0.1", + "@webpack-cli/serve": "^2.0.1", + "colorette": "^2.0.14", + "commander": "^9.4.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/colorette": { + "version": "2.0.19", + "dev": true, + "license": "MIT" + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "9.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-node-externals": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.8.2", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.8.0", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.7", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array/node_modules/es-abstract": { + "version": "1.19.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "license": "ISC", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/widest-line": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "string-width": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/widest-line/node_modules/ansi-regex": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/widest-line/node_modules/emoji-regex": { + "version": "9.2.2", + "license": "MIT" + }, + "node_modules/widest-line/node_modules/string-width": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/widest-line/node_modules/strip-ansi": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wildcard": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/windows-release": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^4.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/windows-release/node_modules/execa": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/windows-release/node_modules/get-stream": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/windows-release/node_modules/human-signals": { + "version": "1.1.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/wordwrap": { + "version": "0.0.3", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/wrtc": { + "version": "0.4.7", + "bundleDependencies": [ + "node-pre-gyp" + ], + "hasInstallScript": true, + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "node-pre-gyp": "^0.13.0" + }, + "engines": { + "node": "^8.11.2 || >=10.0.0" + }, + "optionalDependencies": { + "domexception": "^1.0.1" + } + }, + "node_modules/ws": { + "version": "8.11.0", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/xml2js": { + "version": "0.4.23", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlhttprequest-ssl": { + "version": "2.0.0", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xsalsa20": { + "version": "1.2.0", + "license": "MIT" + }, + "node_modules/xtend": { + "version": "4.0.2", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.6.2", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "license": "MIT", + "optional": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@achingbrain/ip-address": { + "version": "8.1.0", + "requires": { + "jsbn": "1.1.0", + "sprintf-js": "1.1.2" + } + }, + "@achingbrain/nat-port-mapper": { + "version": "1.0.7", + "requires": { + "@achingbrain/ssdp": "^4.0.1", + "@libp2p/logger": "^2.0.0", + "default-gateway": "^6.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.7", + "p-defer": "^4.0.0", + "p-timeout": "^5.0.2", + "xml2js": "^0.4.23" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "@achingbrain/ssdp": { + "version": "4.0.1", + "requires": { + "event-iterator": "^2.0.0", + "freeport-promise": "^2.0.0", + "merge-options": "^3.0.4", + "uuid": "^8.3.2", + "xml2js": "^0.4.23" + }, + "dependencies": { + "uuid": { + "version": "8.3.2" + } + } + }, + "@angular-devkit/core": { + "version": "16.1.0", + "dev": true, + "requires": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "rxjs": "7.8.1", + "source-map": "0.7.4" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "dev": true + }, + "source-map": { + "version": "0.7.4", + "dev": true + } + } + }, + "@angular-devkit/schematics": { + "version": "16.1.0", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "jsonc-parser": "3.2.0", + "magic-string": "0.30.0", + "ora": "5.4.1", + "rxjs": "7.8.1" + } + }, + "@angular-devkit/schematics-cli": { + "version": "16.1.0", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "ansi-colors": "4.1.3", + "inquirer": "8.2.4", + "symbol-observable": "4.0.0", + "yargs-parser": "21.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "inquirer": { + "version": "8.2.4", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yargs-parser": { + "version": "21.1.1", + "dev": true + } + } + }, + "@assemblyscript/loader": { + "version": "0.9.4" + }, + "@babel/code-frame": { + "version": "7.12.11", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/compat-data": { + "version": "7.14.4", + "dev": true + }, + "@babel/core": { + "version": "7.14.3", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.3", + "@babel/helper-compilation-targets": "^7.13.16", + "@babel/helper-module-transforms": "^7.14.2", + "@babel/helpers": "^7.14.0", + "@babel/parser": "^7.14.3", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "json5": { + "version": "2.2.0", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "semver": { + "version": "6.3.0", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.14.3", + "dev": true, + "requires": { + "@babel/types": "^7.14.2", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "dev": true + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.14.4", + "dev": true, + "requires": { + "@babel/compat-data": "^7.14.4", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "dev": true + } + } + }, + "@babel/helper-function-name": { + "version": "7.14.2", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.14.2" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.13.12", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-module-imports": { + "version": "7.13.12", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-module-transforms": { + "version": "7.14.2", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.13.12", + "@babel/helper-replace-supers": "^7.13.12", + "@babel/helper-simple-access": "^7.13.12", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.14.0", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.14.4", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.13.12", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.13.12", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.22.5", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.12.17", + "dev": true + }, + "@babel/helpers": { + "version": "7.14.0", + "dev": true, + "requires": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.14.0" + } + }, + "@babel/highlight": { + "version": "7.22.5", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.20.13", + "dev": true + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/runtime": { + "version": "7.20.13", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@babel/template": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + } + } + }, + "@babel/traverse": { + "version": "7.14.2", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.2", + "@babel/helper-function-name": "^7.14.2", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.14.2", + "@babel/types": "^7.14.2", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "globals": { + "version": "11.12.0", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.20.7", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "dev": true + }, + "@chainsafe/is-ip": { + "version": "2.0.1" + }, + "@chainsafe/libp2p-gossipsub": { + "version": "6.1.0", + "requires": { + "@libp2p/crypto": "^1.0.3", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.3.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/pubsub": "^6.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "denque": "^1.5.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "protobufjs": "^6.11.2", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/peer-record": { + "version": "5.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-all": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.0" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@chainsafe/libp2p-noise": { + "version": "11.0.0", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection-encrypter": "^3.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/hkdf": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.1", + "it-length-prefixed": "^8.0.2", + "it-pair": "^2.0.2", + "it-pb-stream": "^2.0.2", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1" + } + } + }, + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "@colors/colors": { + "version": "1.5.0", + "dev": true, + "optional": true + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "dependencies": { + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + } + } + }, + "@didtools/cacao": { + "version": "1.1.0", + "requires": { + "@ipld/dag-cbor": "^7.0.1", + "apg-js": "^4.1.1", + "caip": "^1.1.0", + "multiformats": "^9.5.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "7.0.3", + "requires": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "multiformats": { + "version": "9.9.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1" + } + } + } + } + }, + "@didtools/pkh-ethereum": { + "version": "0.0.1", + "requires": { + "@didtools/cacao": "^1.0.0", + "@ethersproject/wallet": "^5.7.0", + "@stablelib/random": "^1.0.2", + "caip": "^1.1.0" + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "dev": true + }, + "@ethersproject/abi": { + "version": "5.7.0", + "requires": { + "@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": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0" + } + }, + "@ethersproject/abstract-signer": { + "version": "5.7.0", + "requires": { + "@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": { + "version": "5.7.0", + "requires": { + "@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": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0" + } + }, + "@ethersproject/basex": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "@ethersproject/bignumber": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + }, + "dependencies": { + "bn.js": { + "version": "5.2.1" + } + } + }, + "@ethersproject/bytes": { + "version": "5.7.0", + "requires": { + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/constants": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0" + } + }, + "@ethersproject/contracts": { + "version": "5.7.0", + "requires": { + "@ethersproject/abi": "^5.7.0", + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0" + } + }, + "@ethersproject/hash": { + "version": "5.7.0", + "requires": { + "@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/hdnode": { + "version": "5.7.0", + "requires": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "@ethersproject/json-wallets": { + "version": "5.7.0", + "requires": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "@ethersproject/keccak256": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "js-sha3": "0.8.0" + } + }, + "@ethersproject/logger": { + "version": "5.7.0" + }, + "@ethersproject/networks": { + "version": "5.7.1", + "requires": { + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/pbkdf2": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/sha2": "^5.7.0" + } + }, + "@ethersproject/properties": { + "version": "5.7.0", + "requires": { + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/providers": { + "version": "5.7.2", + "requires": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0", + "bech32": "1.1.4", + "ws": "7.4.6" + }, + "dependencies": { + "ws": { + "version": "7.4.6", + "requires": {} + } + } + }, + "@ethersproject/random": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/rlp": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/sha2": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "hash.js": "1.1.7" + } + }, + "@ethersproject/signing-key": { + "version": "5.7.0", + "requires": { + "@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" + }, + "dependencies": { + "bn.js": { + "version": "5.2.1" + } + } + }, + "@ethersproject/solidity": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "@ethersproject/strings": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/transactions": { + "version": "5.7.0", + "requires": { + "@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/units": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/wallet": { + "version": "5.7.0", + "requires": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/json-wallets": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "@ethersproject/web": { + "version": "5.7.1", + "requires": { + "@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" + } + }, + "@ethersproject/wordlists": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "@grpc/grpc-js": { + "version": "1.8.7", + "requires": { + "@grpc/proto-loader": "^0.7.0", + "@types/node": ">=12.12.47" + } + }, + "@grpc/proto-loader": { + "version": "0.7.4", + "requires": { + "@types/long": "^4.0.1", + "lodash.camelcase": "^4.3.0", + "long": "^4.0.0", + "protobufjs": "^7.0.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + }, + "dependencies": { + "long": { + "version": "5.2.1" + } + } + }, + "yargs": { + "version": "16.2.0", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "@hapi/accept": { + "version": "5.0.2", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/address": { + "version": "5.1.0", + "requires": { + "@hapi/hoek": "^11.0.2" + }, + "dependencies": { + "@hapi/hoek": { + "version": "11.0.2" + } + } + }, + "@hapi/ammo": { + "version": "5.0.1", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/b64": { + "version": "5.0.0", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/boom": { + "version": "9.1.4", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/bounce": { + "version": "2.0.0", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/bourne": { + "version": "2.1.0" + }, + "@hapi/call": { + "version": "8.0.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/catbox": { + "version": "11.1.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/podium": "4.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/catbox-memory": { + "version": "5.0.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/content": { + "version": "5.0.2", + "requires": { + "@hapi/boom": "9.x.x" + } + }, + "@hapi/cryptiles": { + "version": "5.1.0", + "requires": { + "@hapi/boom": "9.x.x" + } + }, + "@hapi/file": { + "version": "2.0.0" + }, + "@hapi/formula": { + "version": "3.0.2" + }, + "@hapi/hapi": { + "version": "20.2.2", + "requires": { + "@hapi/accept": "^5.0.1", + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/bounce": "^2.0.0", + "@hapi/call": "^8.0.0", + "@hapi/catbox": "^11.1.1", + "@hapi/catbox-memory": "^5.0.0", + "@hapi/heavy": "^7.0.1", + "@hapi/hoek": "^9.0.4", + "@hapi/mimos": "^6.0.0", + "@hapi/podium": "^4.1.1", + "@hapi/shot": "^5.0.5", + "@hapi/somever": "^3.0.0", + "@hapi/statehood": "^7.0.4", + "@hapi/subtext": "^7.0.3", + "@hapi/teamwork": "^5.1.1", + "@hapi/topo": "^5.0.0", + "@hapi/validate": "^1.1.1" + } + }, + "@hapi/heavy": { + "version": "7.0.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/hoek": { + "version": "9.1.1" + }, + "@hapi/iron": { + "version": "6.0.0", + "requires": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/mimos": { + "version": "6.0.0", + "requires": { + "@hapi/hoek": "9.x.x", + "mime-db": "1.x.x" + } + }, + "@hapi/nigel": { + "version": "4.0.2", + "requires": { + "@hapi/hoek": "^9.0.4", + "@hapi/vise": "^4.0.0" + } + }, + "@hapi/pez": { + "version": "5.0.3", + "requires": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/content": "^5.0.2", + "@hapi/hoek": "9.x.x", + "@hapi/nigel": "4.x.x" + } + }, + "@hapi/pinpoint": { + "version": "2.0.1" + }, + "@hapi/podium": { + "version": "4.1.3", + "requires": { + "@hapi/hoek": "9.x.x", + "@hapi/teamwork": "5.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/shot": { + "version": "5.0.5", + "requires": { + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/somever": { + "version": "3.0.1", + "requires": { + "@hapi/bounce": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/statehood": { + "version": "7.0.4", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/bounce": "2.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/iron": "6.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/subtext": { + "version": "7.0.4", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/content": "^5.0.2", + "@hapi/file": "2.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/pez": "^5.0.1", + "@hapi/wreck": "17.x.x" + } + }, + "@hapi/teamwork": { + "version": "5.1.1" + }, + "@hapi/tlds": { + "version": "1.0.1" + }, + "@hapi/topo": { + "version": "5.0.0", + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@hapi/validate": { + "version": "1.1.3", + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0" + } + }, + "@hapi/vise": { + "version": "4.0.0", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/wreck": { + "version": "17.2.0", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@ipld/car": { + "version": "5.1.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "cborg": "^1.9.0", + "multiformats": "^11.0.0", + "varint": "^6.0.0" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + } + } + }, + "@ipld/dag-cbor": { + "version": "6.0.13", + "requires": { + "cborg": "^1.2.1", + "multiformats": "^9.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "@ipld/dag-json": { + "version": "10.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "2.1.13", + "requires": { + "multiformats": "^9.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "dev": true + }, + "resolve-from": { + "version": "5.0.0", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "dev": true + }, + "@jest/console": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/console": "^29.4.2", + "@jest/reporters": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.4.2", + "jest-config": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-resolve-dependencies": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "jest-watcher": "^29.4.2", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2" + } + }, + "@jest/expect": { + "version": "29.4.2", + "dev": true, + "requires": { + "expect": "^29.4.2", + "jest-snapshot": "^29.4.2" + } + }, + "@jest/expect-utils": { + "version": "29.4.2", + "dev": true, + "requires": { + "jest-get-type": "^29.4.2" + }, + "dependencies": { + "jest-get-type": { + "version": "29.4.2", + "dev": true + } + } + }, + "@jest/fake-timers": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + } + }, + "@jest/globals": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/types": "^29.4.2", + "jest-mock": "^29.4.2" + } + }, + "@jest/reporters": { + "version": "29.4.2", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/schemas": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@sinclair/typebox": "^0.25.16" + } + }, + "@jest/source-map": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + } + }, + "@jest/test-result": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/console": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/test-result": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "slash": "^3.0.0" + } + }, + "@jest/transform": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "convert-source-map": { + "version": "2.0.0", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "write-file-atomic": { + "version": "4.0.2", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + } + } + }, + "@jest/types": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/schemas": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.1", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0" + }, + "@jridgewell/set-array": { + "version": "1.1.2" + }, + "@jridgewell/source-map": { + "version": "0.3.3", + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "@leichtgewicht/ip-codec": { + "version": "2.0.4" + }, + "@libp2p/bootstrap": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-info": "^1.0.7", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/crypto": { + "version": "1.0.11", + "requires": { + "@libp2p/interface-keys": "^1.0.2", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^4.0.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "node-forge": { + "version": "1.3.1" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@libp2p/delegated-content-routing": { + "version": "4.0.0", + "requires": { + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "it-drain": "^2.0.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-drain": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + } + } + }, + "@libp2p/delegated-peer-routing": { + "version": "4.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.1", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "p-defer": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + } + } + }, + "@libp2p/floodsub": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/pubsub": "^6.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.3" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-address-manager": { + "version": "2.0.1", + "requires": { + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/interface-connection": { + "version": "3.0.3", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interface-connection-encrypter": { + "version": "3.0.2", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interface-connection-manager": { + "version": "1.3.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/interface-content-routing": { + "version": "2.0.1", + "requires": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + } + }, + "@libp2p/interface-dht": { + "version": "2.0.1", + "requires": { + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-keychain": { + "version": "2.0.4", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-keys": { + "version": "1.0.7" + }, + "@libp2p/interface-libp2p": { + "version": "1.1.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interface-peer-store": "^1.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-metrics": { + "version": "4.0.5", + "requires": { + "@libp2p/interface-connection": "^3.0.0" + } + }, + "@libp2p/interface-peer-discovery": { + "version": "1.0.2", + "requires": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + } + }, + "@libp2p/interface-peer-id": { + "version": "1.0.6", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + } + } + }, + "@libp2p/interface-peer-info": { + "version": "1.0.8", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-peer-routing": { + "version": "1.0.2", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + } + }, + "@libp2p/interface-peer-store": { + "version": "1.2.3", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-record": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/interface-pubsub": { + "version": "3.0.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-pushable": "^3.0.0", + "uint8arraylist": "^2.1.2" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.0" + } + } + }, + "@libp2p/interface-record": { + "version": "2.0.2", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interface-registrar": { + "version": "2.0.4", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0" + } + }, + "@libp2p/interface-stream-muxer": { + "version": "3.0.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-stream-types": "^1.0.4" + } + }, + "@libp2p/interface-transport": { + "version": "2.1.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4" + } + }, + "@libp2p/interfaces": { + "version": "3.3.1" + }, + "@libp2p/kad-dht": { + "version": "7.0.0", + "requires": { + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-first": "^2.0.0", + "it-length": "^2.0.0", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "it-take": "^2.0.0", + "k-bucket": "^5.1.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "ip-regex": { + "version": "5.0.0" + }, + "ipaddr.js": { + "version": "2.0.1" + }, + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.0" + }, + "it-take": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.0", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "private-ip": { + "version": "3.0.0", + "requires": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + } + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@libp2p/logger": { + "version": "2.0.5", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "debug": "^4.3.3", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/mdns": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/multicast-dns": "^7.2.1", + "multicast-dns": "^7.2.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/mplex": { + "version": "7.1.1", + "requires": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "benchmark": "^2.1.4", + "err-code": "^3.0.1", + "it-batched-bytes": "^1.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.4", + "rate-limiter-flexible": "^2.3.9", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.0" + }, + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "@libp2p/multistream-select": { + "version": "3.1.1", + "requires": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.6", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-merge": "^1.0.4", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.0" + }, + "multiformats": { + "version": "10.0.2" + }, + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "@libp2p/peer-collections": { + "version": "3.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/peer-id": { + "version": "2.0.1", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@libp2p/peer-id-factory": { + "version": "2.0.1", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/peer-store": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/peer-record": { + "version": "5.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + } + }, + "it-all": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/prometheus-metrics": { + "version": "1.1.3", + "requires": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/logger": "^2.0.2", + "it-foreach": "^1.0.0", + "it-stream-types": "^1.0.4" + } + }, + "@libp2p/pubsub": { + "version": "6.0.1", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.2.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/record": { + "version": "3.0.0", + "requires": { + "@libp2p/interface-dht": "^2.0.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/tcp": { + "version": "6.1.2", + "requires": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "stream-to-it": "^0.2.2" + } + }, + "@libp2p/topology": { + "version": "4.0.1", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/logger": "^2.0.1", + "it-all": "^2.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-all": { + "version": "2.0.0" + } + } + }, + "@libp2p/tracked-map": { + "version": "3.0.2", + "requires": { + "@libp2p/interface-metrics": "^4.0.0" + } + }, + "@libp2p/utils": { + "version": "3.0.2", + "requires": { + "@achingbrain/ip-address": "^8.1.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-peer-store": "^1.2.1", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "is-loopback-addr": "^2.0.1", + "it-stream-types": "^1.0.4", + "private-ip": "^2.1.1", + "uint8arraylist": "^2.3.2" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "is-loopback-addr": { + "version": "2.0.1" + } + } + }, + "@libp2p/webrtc-peer": { + "version": "2.0.2", + "requires": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "it-pushable": "^3.0.0", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "p-event": "^5.0.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.2" + }, + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/webrtc-star": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.1", + "@libp2p/webrtc-peer": "^2.0.0", + "@libp2p/webrtc-star-protocol": "^3.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "socket.io-client": "^4.1.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/webrtc-star-protocol": { + "version": "3.0.0", + "requires": { + "@multiformats/multiaddr": "^11.0.0", + "socket.io-client": "^4.1.2" + } + }, + "@libp2p/websockets": { + "version": "5.0.0", + "requires": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.2", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-ws": "^5.0.0", + "p-defer": "^4.0.0", + "p-timeout": "^6.0.0", + "wherearewe": "^2.0.1" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "p-timeout": { + "version": "6.0.0" + }, + "wherearewe": { + "version": "2.0.1", + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "@lukeed/csprng": { + "version": "1.1.0" + }, + "@mapbox/node-pre-gyp": { + "version": "1.0.10", + "requires": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + } + }, + "@multiformats/base-x": { + "version": "4.0.1" + }, + "@multiformats/mafmt": { + "version": "11.0.3", + "requires": { + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@multiformats/multiaddr": { + "version": "11.4.0", + "requires": { + "@chainsafe/is-ip": "^2.0.1", + "dns-over-http-resolver": "^2.1.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "dns-over-http-resolver": { + "version": "2.1.0", + "requires": { + "debug": "^4.3.1", + "native-fetch": "^4.0.2", + "receptacle": "^1.3.2" + } + }, + "native-fetch": { + "version": "4.0.2", + "requires": {} + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@multiformats/multiaddr-to-uri": { + "version": "9.0.2", + "requires": { + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@multiformats/murmur3": { + "version": "2.1.2", + "requires": { + "multiformats": "^11.0.0", + "murmurhash3js-revisited": "^3.0.0" + } + }, + "@multiformats/uri-to-multiaddr": { + "version": "7.0.0", + "requires": { + "@multiformats/multiaddr": "^11.0.0", + "is-ip": "^5.0.0" + }, + "dependencies": { + "ip-regex": { + "version": "5.0.0" + }, + "is-ip": { + "version": "5.0.0", + "requires": { + "ip-regex": "^5.0.0", + "super-regex": "^0.2.0" + } + } + } + }, + "@nestjs/cli": { + "version": "10.0.3", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "@angular-devkit/schematics-cli": "16.1.0", + "@nestjs/schematics": "^10.0.1", + "chalk": "4.1.2", + "chokidar": "3.5.3", + "cli-table3": "0.6.3", + "commander": "4.1.1", + "fork-ts-checker-webpack-plugin": "8.0.0", + "inquirer": "8.2.5", + "node-emoji": "1.11.0", + "ora": "5.4.1", + "os-name": "4.0.1", + "rimraf": "4.4.1", + "shelljs": "0.8.5", + "source-map-support": "0.5.21", + "tree-kill": "1.2.2", + "tsconfig-paths": "4.2.0", + "tsconfig-paths-webpack-plugin": "4.0.1", + "typescript": "5.1.3", + "webpack": "5.87.0", + "webpack-node-externals": "3.0.0" + }, + "dependencies": { + "@types/estree": { + "version": "1.0.1", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.6", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.6", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "acorn": { + "version": "8.9.0", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.9.0", + "dev": true, + "requires": {} + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "brace-expansion": { + "version": "2.0.1", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "commander": { + "version": "4.1.1", + "dev": true + }, + "es-module-lexer": { + "version": "1.3.0", + "dev": true + }, + "glob": { + "version": "9.3.5", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "json5": { + "version": "2.2.3", + "dev": true + }, + "minimatch": { + "version": "8.0.4", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "rimraf": { + "version": "4.4.1", + "dev": true, + "requires": { + "glob": "^9.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "requires": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "typescript": { + "version": "5.1.3", + "dev": true + }, + "webpack": { + "version": "5.87.0", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + } + } + } + }, + "@nestjs/common": { + "version": "10.0.2", + "requires": { + "iterare": "1.2.1", + "tslib": "2.5.3", + "uid": "2.0.2" + } + }, + "@nestjs/core": { + "version": "10.0.2", + "requires": { + "@nuxtjs/opencollective": "0.3.2", + "fast-safe-stringify": "2.1.1", + "iterare": "1.2.1", + "path-to-regexp": "3.2.0", + "tslib": "2.5.3", + "uid": "2.0.2" + }, + "dependencies": { + "path-to-regexp": { + "version": "3.2.0" + } + } + }, + "@nestjs/platform-express": { + "version": "10.0.2", + "requires": { + "body-parser": "1.20.2", + "cors": "2.8.5", + "express": "4.18.2", + "multer": "1.4.4-lts.1", + "tslib": "2.5.3" + }, + "dependencies": { + "body-parser": { + "version": "1.20.2", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + }, + "raw-body": { + "version": "2.5.2", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + } + } + }, + "@nestjs/schematics": { + "version": "10.0.1", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "comment-json": "4.2.3", + "jsonc-parser": "3.2.0", + "pluralize": "8.0.0" + } + }, + "@nestjs/testing": { + "version": "10.0.2", + "dev": true, + "requires": { + "tslib": "2.5.3" + } + }, + "@noble/ed25519": { + "version": "1.7.1" + }, + "@noble/secp256k1": { + "version": "1.7.0" + }, + "@nuxtjs/opencollective": { + "version": "0.3.2", + "requires": { + "chalk": "^4.1.0", + "consola": "^2.15.0", + "node-fetch": "^2.6.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@peculiar/asn1-schema": { + "version": "2.3.6", + "requires": { + "asn1js": "^3.0.5", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "@peculiar/json-schema": { + "version": "1.1.12", + "requires": { + "tslib": "^2.0.0" + } + }, + "@peculiar/webcrypto": { + "version": "1.4.3", + "requires": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "pvtsutils": "^1.3.2", + "tslib": "^2.5.0", + "webcrypto-core": "^1.7.7" + } + }, + "@pnpm/network.ca-file": { + "version": "1.0.2", + "requires": { + "graceful-fs": "4.2.10" + } + }, + "@pnpm/npm-conf": { + "version": "1.0.5", + "requires": { + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + } + }, + "@protobufjs/aspromise": { + "version": "1.1.2" + }, + "@protobufjs/base64": { + "version": "1.1.2" + }, + "@protobufjs/codegen": { + "version": "2.0.4" + }, + "@protobufjs/eventemitter": { + "version": "1.1.0" + }, + "@protobufjs/fetch": { + "version": "1.1.0", + "requires": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "@protobufjs/float": { + "version": "1.0.2" + }, + "@protobufjs/inquire": { + "version": "1.1.0" + }, + "@protobufjs/path": { + "version": "1.1.2" + }, + "@protobufjs/pool": { + "version": "1.1.0" + }, + "@protobufjs/utf8": { + "version": "1.1.0" + }, + "@sinclair/typebox": { + "version": "0.25.21", + "devOptional": true + }, + "@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0" + } + }, + "@socket.io/component-emitter": { + "version": "3.1.0" + }, + "@stablelib/aead": { + "version": "1.0.1" + }, + "@stablelib/binary": { + "version": "1.0.1", + "requires": { + "@stablelib/int": "^1.0.1" + } + }, + "@stablelib/bytes": { + "version": "1.0.1" + }, + "@stablelib/chacha": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/chacha20poly1305": { + "version": "1.0.1", + "requires": { + "@stablelib/aead": "^1.0.1", + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/poly1305": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/constant-time": { + "version": "1.0.1" + }, + "@stablelib/ed25519": { + "version": "1.0.3", + "requires": { + "@stablelib/random": "^1.0.2", + "@stablelib/sha512": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/hash": { + "version": "1.0.1" + }, + "@stablelib/hkdf": { + "version": "1.0.1", + "requires": { + "@stablelib/hash": "^1.0.1", + "@stablelib/hmac": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/hmac": { + "version": "1.0.1", + "requires": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/int": { + "version": "1.0.1" + }, + "@stablelib/keyagreement": { + "version": "1.0.1", + "requires": { + "@stablelib/bytes": "^1.0.1" + } + }, + "@stablelib/poly1305": { + "version": "1.0.1", + "requires": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/random": { + "version": "1.0.2", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/sha256": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/sha512": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/wipe": { + "version": "1.0.1" + }, + "@stablelib/x25519": { + "version": "1.0.3", + "requires": { + "@stablelib/keyagreement": "^1.0.1", + "@stablelib/random": "^1.0.2", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/xchacha20": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/xchacha20poly1305": { + "version": "1.0.1", + "requires": { + "@stablelib/aead": "^1.0.1", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1", + "@stablelib/xchacha20": "^1.0.1" + } + }, + "@tokenizer/token": { + "version": "0.3.0" + }, + "@tsconfig/node10": { + "version": "1.0.9", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.3", + "dev": true + }, + "@types/babel__core": { + "version": "7.20.0", + "dev": true, + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.11.1", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/bn.js": { + "version": "5.1.1", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/body-parser": { + "version": "1.19.0", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.34", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/cookie": { + "version": "0.4.1" + }, + "@types/cookiejar": { + "version": "2.1.2", + "dev": true + }, + "@types/cors": { + "version": "2.8.13", + "requires": { + "@types/node": "*" + } + }, + "@types/crypto-js": { + "version": "4.0.2", + "dev": true + }, + "@types/dns-packet": { + "version": "5.2.4", + "requires": { + "@types/node": "*" + } + }, + "@types/elliptic": { + "version": "6.4.14", + "dev": true, + "requires": { + "@types/bn.js": "*" + } + }, + "@types/eslint": { + "version": "8.4.10", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.4", + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.51" + }, + "@types/events": { + "version": "1.2.0", + "dev": true + }, + "@types/express": { + "version": "4.17.15", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.31", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.32", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "requires": { + "@types/node": "*" + } + }, + "@types/http-cache-semantics": { + "version": "4.0.1" + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "28.1.8", + "dev": true, + "requires": { + "expect": "^28.0.0", + "pretty-format": "^28.0.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "requires": { + "@babel/highlight": "^7.22.5" + } + }, + "@jest/expect-utils": { + "version": "28.1.3", + "dev": true, + "requires": { + "jest-get-type": "^28.0.2" + } + }, + "@jest/schemas": { + "version": "28.1.3", + "dev": true, + "requires": { + "@sinclair/typebox": "^0.24.1" + } + }, + "@jest/types": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + } + }, + "@sinclair/typebox": { + "version": "0.24.51", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "diff-sequences": { + "version": "28.1.1", + "dev": true + }, + "expect": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-diff": { + "version": "28.1.3", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + } + }, + "jest-get-type": { + "version": "28.0.2", + "dev": true + }, + "jest-matcher-utils": { + "version": "28.1.3", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + } + }, + "jest-message-util": { + "version": "28.1.3", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-util": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "pretty-format": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@types/json-schema": { + "version": "7.0.11" + }, + "@types/long": { + "version": "4.0.1" + }, + "@types/luxon": { + "version": "3.3.0", + "dev": true + }, + "@types/mime": { + "version": "2.0.3", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5" + }, + "@types/mock-fs": { + "version": "4.13.1", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/multicast-dns": { + "version": "7.2.1", + "requires": { + "@types/dns-packet": "*", + "@types/node": "*" + } + }, + "@types/node": { + "version": "18.11.9" + }, + "@types/node-fetch": { + "version": "2.5.11", + "dev": true, + "requires": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "@types/orbit-db": { + "version": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", + "dev": true, + "from": "@types/orbit-db@git+https://github.com/orbitdb/orbit-db-types.git", + "requires": { + "@types/elliptic": "^6.4.6", + "@types/events": "^1.2.0", + "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", + "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", + "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", + "dev": true, + "requires": { + "cborg": "^2.0.1", + "multiformats": "^12.0.1" + }, + "dependencies": { + "multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true + } + } + }, + "@libp2p/crypto": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", + "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", + "dev": true, + "requires": { + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interfaces": "^3.2.0", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^5.0.0", + "uint8arraylist": "^2.4.3", + "uint8arrays": "^4.0.2" + } + }, + "@types/ipfs": { + "version": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", + "dev": true, + "from": "@types/ipfs@git+https://github.com/lukas2005/types-ipfs.git" + }, + "cborg": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", + "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", + "dev": true + }, + "long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "dev": true + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true + }, + "orbit-db": { + "version": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", + "dev": true, + "from": "orbit-db@git+https://github.com/orbitdb/orbit-db.git", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@libp2p/crypto": "^1.0.12", + "it-pipe": "^2.0.5", + "level": "8.0.0", + "lru": "^3.1.0", + "multiformats": "^11.0.1", + "p-queue": "^7.3.4", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.3" + } + }, + "protobufjs": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", + "dev": true, + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "protons-runtime": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", + "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", + "dev": true, + "requires": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.4.3" + } + }, + "uint8arraylist": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", + "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", + "dev": true, + "requires": { + "uint8arrays": "^4.0.2" + } + }, + "uint8arrays": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", + "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", + "dev": true, + "requires": { + "multiformats": "^12.0.1" + }, + "dependencies": { + "multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true + } + } + } + } + }, + "@types/parse-json": { + "version": "4.0.0", + "dev": true + }, + "@types/prettier": { + "version": "2.7.1", + "dev": true + }, + "@types/qs": { + "version": "6.9.5", + "dev": true + }, + "@types/range-parser": { + "version": "1.2.3", + "dev": true + }, + "@types/retry": { + "version": "0.12.1" + }, + "@types/serve-static": { + "version": "1.15.0", + "dev": true, + "requires": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/stack-utils": { + "version": "2.0.1", + "dev": true + }, + "@types/superagent": { + "version": "4.1.18", + "dev": true, + "requires": { + "@types/cookiejar": "*", + "@types/node": "*" + } + }, + "@types/supertest": { + "version": "2.0.12", + "dev": true, + "requires": { + "@types/superagent": "*" + } + }, + "@types/tmp": { + "version": "0.2.3", + "dev": true + }, + "@types/validator": { + "version": "13.1.4" + }, + "@types/ws": { + "version": "8.5.3", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/yargs": { + "version": "17.0.15", + "devOptional": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0" + }, + "@vascosantos/moving-average": { + "version": "1.1.0" + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "2.0.1", + "dev": true, + "requires": {} + }, + "@webpack-cli/info": { + "version": "2.0.1", + "dev": true, + "requires": {} + }, + "@webpack-cli/serve": { + "version": "2.0.1", + "dev": true, + "requires": {} + }, + "@xtuc/ieee754": { + "version": "1.2.0" + }, + "@xtuc/long": { + "version": "4.2.2" + }, + "abbrev": { + "version": "1.1.1" + }, + "abort-controller": { + "version": "3.0.0", + "requires": { + "event-target-shim": "^5.0.0" + } + }, + "abortable-iterator": { + "version": "3.0.2", + "requires": { + "get-iterator": "^1.0.2" + } + }, + "abstract-level": { + "version": "1.0.3", + "requires": { + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" + }, + "dependencies": { + "level-supports": { + "version": "4.0.1" + } + } + }, + "abstract-leveldown": { + "version": "7.2.0", + "requires": { + "buffer": "^6.0.3", + "catering": "^2.0.0", + "is-buffer": "^2.0.5", + "level-concat-iterator": "^3.0.0", + "level-supports": "^2.0.1", + "queue-microtask": "^1.2.3" + } + }, + "abstract-logging": { + "version": "2.0.1" + }, + "accepts": { + "version": "1.3.8", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn-walk": { + "version": "8.2.0", + "dev": true + }, + "aes-js": { + "version": "3.0.0" + }, + "agent-base": { + "version": "6.0.2", + "requires": { + "debug": "4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "requires": {} + }, + "ansi-align": { + "version": "3.0.1", + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-colors": { + "version": "4.1.3", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "dev": true + } + } + }, + "ansi-regex": { + "version": "5.0.1" + }, + "ansi-styles": { + "version": "3.2.1", + "requires": { + "color-convert": "^1.9.0" + } + }, + "any-signal": { + "version": "3.0.1" + }, + "anymatch": { + "version": "3.1.2", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "apg-js": { + "version": "4.1.3" + }, + "append-field": { + "version": "1.0.0" + }, + "aproba": { + "version": "2.0.0" + }, + "are-we-there-yet": { + "version": "2.0.0", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "arg": { + "version": "4.1.3", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.0.3", + "dev": true + } + } + }, + "args": { + "version": "5.0.3", + "requires": { + "camelcase": "5.0.0", + "chalk": "2.4.2", + "leven": "2.1.0", + "mri": "1.1.4" + }, + "dependencies": { + "camelcase": { + "version": "5.0.0" + } + } + }, + "array-flatten": { + "version": "1.1.1" + }, + "array-shuffle": { + "version": "3.0.0" + }, + "array-timsort": { + "version": "1.0.3", + "dev": true + }, + "asap": { + "version": "2.0.6" + }, + "asmcrypto.js": { + "version": "2.3.2" + }, + "asn1": { + "version": "0.2.6", + "optional": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "asn1js": { + "version": "3.0.5", + "requires": { + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + } + }, + "assert": { + "version": "2.0.0", + "requires": { + "es6-object-assign": "^1.1.0", + "is-nan": "^1.2.1", + "object-is": "^1.0.1", + "util": "^0.12.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "optional": true + }, + "async": { + "version": "2.6.3", + "requires": { + "lodash": "^4.17.14" + } + }, + "asynckit": { + "version": "0.4.0", + "devOptional": true + }, + "atomic-sleep": { + "version": "1.0.0" + }, + "available-typed-arrays": { + "version": "1.0.5" + }, + "aws-sign2": { + "version": "0.7.0", + "optional": true + }, + "aws4": { + "version": "1.12.0", + "optional": true + }, + "babel-jest": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/transform": "^29.4.2", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.4.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "29.4.2", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^29.4.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "balanced-match": { + "version": "1.0.0" + }, + "base-x": { + "version": "3.0.9", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "base64-js": { + "version": "1.3.1" + }, + "base64id": { + "version": "2.0.0" + }, + "basic-auth": { + "version": "1.1.0" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "optional": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bech32": { + "version": "1.1.4" + }, + "benchmark": { + "version": "2.1.4", + "requires": { + "lodash": "^4.17.4", + "platform": "^1.3.3" + } + }, + "big.js": { + "version": "5.2.2" + }, + "binary-extensions": { + "version": "2.2.0", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bintrees": { + "version": "1.0.2" + }, + "bip66": { + "version": "1.1.5", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "bl": { + "version": "5.1.0", + "requires": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "blakejs": { + "version": "1.1.0" + }, + "blob-to-it": { + "version": "2.0.0", + "requires": { + "browser-readablestream-to-it": "^2.0.0" + } + }, + "blockstore-core": { + "version": "3.0.0", + "requires": { + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-store": "^3.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-take": "^2.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-take": { + "version": "2.0.0" + } + } + }, + "blockstore-datastore-adapter": { + "version": "5.0.0", + "requires": { + "blockstore-core": "^3.0.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-drain": "^2.0.0", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "it-drain": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + } + } + }, + "bn.js": { + "version": "4.11.9" + }, + "body-parser": { + "version": "1.20.1", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "boxen": { + "version": "7.0.0", + "requires": { + "ansi-align": "^3.0.1", + "camelcase": "^7.0.0", + "chalk": "^5.0.1", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1" + }, + "ansi-styles": { + "version": "6.2.1" + }, + "camelcase": { + "version": "7.0.0" + }, + "chalk": { + "version": "5.1.2" + }, + "emoji-regex": { + "version": "9.2.2" + }, + "string-width": { + "version": "5.1.2", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.0.1", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.0.1", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0" + }, + "browser-level": { + "version": "1.0.1", + "requires": { + "abstract-level": "^1.0.2", + "catering": "^2.1.1", + "module-error": "^1.0.2", + "run-parallel-limit": "^1.1.0" + } + }, + "browser-readablestream-to-it": { + "version": "2.0.0" + }, + "browserify-aes": { + "version": "1.2.0", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserslist": { + "version": "4.16.6", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + } + }, + "bs-logger": { + "version": "0.2.6", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bs58": { + "version": "4.0.1", + "requires": { + "base-x": "^3.0.2" + } + }, + "bser": { + "version": "2.1.1", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "6.0.3", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "buffer-crc32": { + "version": "0.2.13", + "optional": true + }, + "buffer-xor": { + "version": "1.0.3" + }, + "busboy": { + "version": "1.6.0", + "requires": { + "streamsearch": "^1.1.0" + } + }, + "byte-access": { + "version": "1.0.1", + "requires": { + "uint8arraylist": "^2.0.0" + } + }, + "byteman": { + "version": "1.3.5" + }, + "bytes": { + "version": "3.1.2" + }, + "bytestreamjs": { + "version": "2.0.1" + }, + "caip": { + "version": "1.1.0" + }, + "call-bind": { + "version": "1.0.2", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "5.3.1", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001235" + }, + "canonicalize": { + "version": "1.0.8" + }, + "capital-case": { + "version": "1.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "caseless": { + "version": "0.12.0", + "optional": true + }, + "catering": { + "version": "2.1.1" + }, + "cborg": { + "version": "1.10.0" + }, + "chalk": { + "version": "2.4.2", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "change-case": { + "version": "4.1.2", + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "char-regex": { + "version": "1.0.2", + "dev": true + }, + "chardet": { + "version": "0.7.0", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chownr": { + "version": "2.0.0" + }, + "chrome-trace-event": { + "version": "1.0.3" + }, + "ci-info": { + "version": "3.7.0" + }, + "cipher-base": { + "version": "1.0.4", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "cjs-module-lexer": { + "version": "1.2.2", + "dev": true + }, + "class-is": { + "version": "1.1.0" + }, + "class-transformer": { + "version": "0.5.1" + }, + "class-validator": { + "version": "0.13.1", + "requires": { + "@types/validator": "^13.1.3", + "libphonenumber-js": "^1.9.7", + "validator": "^13.5.2" + } + }, + "classic-level": { + "version": "1.2.0", + "requires": { + "abstract-level": "^1.0.2", + "catering": "^2.1.0", + "module-error": "^1.0.1", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + } + }, + "clean-stack": { + "version": "2.2.0" + }, + "cli-boxes": { + "version": "3.0.0" + }, + "cli-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.9.0", + "dev": true + }, + "cli-table": { + "version": "0.3.6", + "requires": { + "colors": "1.0.3" + }, + "dependencies": { + "colors": { + "version": "1.0.3" + } + } + }, + "cli-table3": { + "version": "0.6.3", + "dev": true, + "requires": { + "@colors/colors": "1.5.0", + "string-width": "^4.2.0" + } + }, + "cli-width": { + "version": "3.0.0", + "dev": true + }, + "cliui": { + "version": "8.0.1", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "1.0.4", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "clone-regexp": { + "version": "3.0.0", + "requires": { + "is-regexp": "^3.0.0" + } + }, + "co": { + "version": "4.6.0", + "dev": true + }, + "code-point-at": { + "version": "1.1.0", + "optional": true + }, + "coercer": { + "version": "1.1.2" + }, + "collect-v8-coverage": { + "version": "1.0.1", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3" + }, + "color-support": { + "version": "1.1.3" + }, + "colorette": { + "version": "1.2.2" + }, + "colors": { + "version": "1.4.0" + }, + "combined-stream": { + "version": "1.0.8", + "devOptional": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "7.2.0" + }, + "comment-json": { + "version": "4.2.3", + "dev": true, + "requires": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.3", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1" + }, + "concat-stream": { + "version": "1.6.2", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.2" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "config-chain": { + "version": "1.1.13", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "configstore": { + "version": "6.0.0", + "requires": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + } + }, + "consola": { + "version": "2.15.3" + }, + "console-control-strings": { + "version": "1.1.0" + }, + "constant-case": { + "version": "3.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "content-disposition": { + "version": "0.5.4", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5" + }, + "convert-hrtime": { + "version": "5.0.0" + }, + "convert-source-map": { + "version": "1.7.0", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "dev": true + } + } + }, + "cookie": { + "version": "0.4.2" + }, + "cookie-signature": { + "version": "1.0.6" + }, + "core-js": { + "version": "3.27.2", + "dev": true + }, + "core-util-is": { + "version": "1.0.2" + }, + "cors": { + "version": "2.8.5", + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "corser": { + "version": "2.0.1" + }, + "cosmiconfig": { + "version": "7.1.0", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "dependencies": { + "parse-json": { + "version": "5.2.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + } + } + }, + "create-hash": { + "version": "1.2.0", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "create-require": { + "version": "1.1.1", + "dev": true + }, + "cross-env": { + "version": "5.2.1", + "dev": true, + "requires": { + "cross-spawn": "^6.0.5" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "path-key": { + "version": "2.0.1", + "dev": true + }, + "semver": { + "version": "5.7.1", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "dev": true + }, + "which": { + "version": "1.3.1", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "cross-spawn": { + "version": "7.0.3", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-js": { + "version": "4.1.1" + }, + "crypto-random-string": { + "version": "4.0.0", + "requires": { + "type-fest": "^1.0.1" + }, + "dependencies": { + "type-fest": { + "version": "1.4.0" + } + } + }, + "dag-jose": { + "version": "4.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + } + } + }, + "dag-jose-utils": { + "version": "2.0.0", + "requires": { + "@ipld/dag-cbor": "^7.0.1", + "multiformats": "^9.5.1" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "7.0.3", + "requires": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "multiformats": { + "version": "9.9.0" + } + } + }, + "dashdash": { + "version": "1.14.1", + "optional": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "datastore-core": { + "version": "8.0.2", + "requires": { + "@libp2p/logger": "^2.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^1.0.4", + "it-drain": "^1.0.4", + "it-filter": "^1.0.2", + "it-map": "^1.0.5", + "it-merge": "^1.0.1", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-take": "^1.0.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.0" + }, + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "datastore-fs": { + "version": "8.0.0", + "requires": { + "datastore-core": "^8.0.1", + "fast-write-atomic": "^0.2.0", + "interface-datastore": "^7.0.0", + "it-glob": "^1.0.1", + "it-map": "^1.0.5", + "it-parallel-batch": "^1.0.9", + "mkdirp": "^1.0.4" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4" + } + } + }, + "datastore-level": { + "version": "9.0.4", + "requires": { + "abstract-level": "^1.0.3", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "it-filter": "^2.0.0", + "it-map": "^2.0.0", + "it-sort": "^2.0.0", + "it-take": "^2.0.0", + "level": "8.0.0" + }, + "dependencies": { + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-take": { + "version": "2.0.0" + } + } + }, + "datastore-pubsub": { + "version": "7.0.0", + "requires": { + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "dateformat": { + "version": "4.6.3" + }, + "debug": { + "version": "4.3.4", + "requires": { + "ms": "2.1.2" + } + }, + "decompress-response": { + "version": "6.0.0", + "requires": { + "mimic-response": "^3.1.0" + }, + "dependencies": { + "mimic-response": { + "version": "3.1.0" + } + } + }, + "dedent": { + "version": "0.7.0", + "dev": true + }, + "deep-extend": { + "version": "0.6.0" + }, + "deepmerge": { + "version": "4.3.0", + "dev": true + }, + "default-gateway": { + "version": "6.0.3", + "requires": { + "execa": "^5.0.0" + } + }, + "defaults": { + "version": "1.0.4", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "defer-to-connect": { + "version": "2.0.1" + }, + "deferred-leveldown": { + "version": "5.1.0", + "requires": { + "abstract-leveldown": "~6.0.0", + "inherits": "^2.0.3" + }, + "dependencies": { + "abstract-leveldown": { + "version": "6.0.3", + "requires": { + "level-concat-iterator": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "level-concat-iterator": { + "version": "2.0.1" + } + } + }, + "define-properties": { + "version": "1.1.3", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1" + } + } + }, + "delay": { + "version": "5.0.0" + }, + "delayed-stream": { + "version": "1.0.0", + "devOptional": true + }, + "delegates": { + "version": "1.0.0" + }, + "denque": { + "version": "1.5.1" + }, + "depd": { + "version": "2.0.0" + }, + "destroy": { + "version": "1.2.0" + }, + "detect-libc": { + "version": "2.0.1" + }, + "detect-newline": { + "version": "3.1.0", + "dev": true + }, + "dezalgo": { + "version": "1.0.4", + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "did-jwt": { + "version": "6.11.0", + "requires": { + "@stablelib/ed25519": "^1.0.2", + "@stablelib/random": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.2", + "@stablelib/xchacha20poly1305": "^1.0.1", + "bech32": "^2.0.0", + "canonicalize": "^1.0.8", + "did-resolver": "^4.0.0", + "elliptic": "^6.5.4", + "js-sha3": "^0.8.0", + "multiformats": "^9.6.5", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "bech32": { + "version": "2.0.0" + }, + "did-resolver": { + "version": "4.0.1" + }, + "multiformats": { + "version": "9.9.0" + } + } + }, + "did-resolver": { + "version": "3.2.2" + }, + "dids": { + "version": "3.4.0", + "requires": { + "@didtools/cacao": "^1.0.0", + "@didtools/pkh-ethereum": "^0.0.1", + "@stablelib/random": "^1.0.1", + "dag-jose-utils": "^2.0.0", + "did-jwt": "^6.0.0", + "did-resolver": "^3.1.5", + "multiformats": "^9.4.10", + "rpc-utils": "^0.6.1", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "diff": { + "version": "4.0.2", + "dev": true + }, + "diff-match-patch": { + "version": "1.0.5" + }, + "diff-sequences": { + "version": "29.4.2", + "dev": true + }, + "dlv": { + "version": "1.1.3" + }, + "dns-over-http-resolver": { + "version": "1.2.3", + "requires": { + "debug": "^4.3.1", + "native-fetch": "^3.0.0", + "receptacle": "^1.3.2" + } + }, + "dns-packet": { + "version": "5.4.0", + "requires": { + "@leichtgewicht/ip-codec": "^2.0.1" + } + }, + "domexception": { + "version": "1.0.1", + "optional": true, + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "optional": true + } + } + }, + "dot-case": { + "version": "3.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "6.0.1", + "requires": { + "is-obj": "^2.0.0" + } + }, + "dotenv": { + "version": "8.2.0" + }, + "drbg.js": { + "version": "1.0.1", + "requires": { + "browserify-aes": "^1.0.6", + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4" + } + }, + "eastasianwidth": { + "version": "0.2.0" + }, + "ecc-jsbn": { + "version": "0.1.2", + "optional": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "jsbn": { + "version": "0.1.1", + "optional": true + } + } + }, + "ecstatic": { + "version": "3.3.2", + "requires": { + "he": "^1.1.1", + "mime": "^1.6.0", + "minimist": "^1.1.0", + "url-join": "^2.0.5" + } + }, + "ee-first": { + "version": "1.1.1" + }, + "ejs": { + "version": "3.1.8", + "requires": { + "jake": "^10.8.5" + } + }, + "electron": { + "version": "1.8.8", + "optional": true, + "requires": { + "@types/node": "^8.0.24", + "electron-download": "^3.0.1", + "extract-zip": "^1.0.3" + }, + "dependencies": { + "@types/node": { + "version": "8.10.66", + "optional": true + } + } + }, + "electron-download": { + "version": "3.3.0", + "optional": true, + "requires": { + "debug": "^2.2.0", + "fs-extra": "^0.30.0", + "home-path": "^1.0.1", + "minimist": "^1.2.0", + "nugget": "^2.0.0", + "path-exists": "^2.1.0", + "rc": "^1.1.2", + "semver": "^5.3.0", + "sumchecker": "^1.2.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + }, + "semver": { + "version": "5.7.1", + "optional": true + } + } + }, + "electron-eval": { + "version": "0.9.10", + "optional": true, + "requires": { + "cross-spawn": "^5.1.0", + "electron": "^1.6.11", + "headless": "https://github.com/paulkernfeld/node-headless/tarball/master", + "ndjson": "^1.5.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "optional": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "lru-cache": { + "version": "4.1.5", + "optional": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "optional": true + }, + "which": { + "version": "1.3.1", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "optional": true + } + } + }, + "electron-fetch": { + "version": "1.7.4", + "requires": { + "encoding": "^0.1.13" + } + }, + "electron-to-chromium": { + "version": "1.3.749" + }, + "electron-webrtc": { + "version": "0.3.0", + "optional": true, + "requires": { + "debug": "^2.2.0", + "electron-eval": "^0.9.0", + "get-browser-rtc": "^1.0.2", + "hat": "^0.0.3" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + } + } + }, + "elliptic": { + "version": "6.5.4", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "emittery": { + "version": "0.13.1", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0" + }, + "emojis-list": { + "version": "3.0.0" + }, + "encodeurl": { + "version": "1.0.2" + }, + "encoding": { + "version": "0.1.13", + "requires": { + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.2", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "end-of-stream": { + "version": "1.4.4", + "requires": { + "once": "^1.4.0" + } + }, + "engine.io": { + "version": "6.4.0", + "requires": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.11.0" + } + }, + "engine.io-client": { + "version": "6.2.3", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.2.3", + "xmlhttprequest-ssl": "~2.0.0" + }, + "dependencies": { + "ws": { + "version": "8.2.3", + "requires": {} + } + } + }, + "engine.io-parser": { + "version": "5.0.4" + }, + "enhanced-resolve": { + "version": "5.15.0", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "envinfo": { + "version": "7.8.1", + "dev": true + }, + "err-code": { + "version": "3.0.1" + }, + "errno": { + "version": "0.1.8", + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-module-lexer": { + "version": "0.9.3" + }, + "es-to-primitive": { + "version": "1.2.1", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es6-object-assign": { + "version": "1.1.0" + }, + "es6-promise": { + "version": "4.2.8", + "optional": true + }, + "escalade": { + "version": "3.1.1" + }, + "escape-goat": { + "version": "4.0.0" + }, + "escape-html": { + "version": "1.0.3" + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "eslint-scope": { + "version": "5.1.1", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "esprima": { + "version": "4.0.1", + "dev": true + }, + "esrecurse": { + "version": "4.3.0", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0" + } + } + }, + "estraverse": { + "version": "4.3.0" + }, + "etag": { + "version": "1.8.1" + }, + "ethers": { + "version": "5.7.2", + "requires": { + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/base64": "5.7.0", + "@ethersproject/basex": "5.7.0", + "@ethersproject/bignumber": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/constants": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/networks": "5.7.1", + "@ethersproject/pbkdf2": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/rlp": "5.7.0", + "@ethersproject/sha2": "5.7.0", + "@ethersproject/signing-key": "5.7.0", + "@ethersproject/solidity": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/units": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/web": "5.7.1", + "@ethersproject/wordlists": "5.7.0" + } + }, + "event-iterator": { + "version": "2.0.0" + }, + "event-target-shim": { + "version": "5.0.1" + }, + "eventemitter3": { + "version": "4.0.7" + }, + "events": { + "version": "3.3.0" + }, + "evp_bytestokey": { + "version": "1.0.3", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "execa": { + "version": "5.1.1", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "dev": true + }, + "expect": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/expect-utils": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2" + }, + "dependencies": { + "jest-get-type": { + "version": "29.4.2", + "dev": true + } + } + }, + "express": { + "version": "4.18.2", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "cookie": { + "version": "0.5.0" + }, + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + }, + "path-to-regexp": { + "version": "0.1.7" + } + } + }, + "extend": { + "version": "3.0.2", + "optional": true + }, + "external-editor": { + "version": "3.1.0", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": { + "tmp": { + "version": "0.0.33", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + } + } + }, + "extract-zip": { + "version": "1.7.0", + "optional": true, + "requires": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + } + } + }, + "extsprintf": { + "version": "1.3.0", + "optional": true + }, + "fast-deep-equal": { + "version": "3.1.3" + }, + "fast-fifo": { + "version": "1.0.0" + }, + "fast-json-stable-stringify": { + "version": "2.1.0" + }, + "fast-redact": { + "version": "3.1.2" + }, + "fast-safe-stringify": { + "version": "2.1.1" + }, + "fast-write-atomic": { + "version": "0.2.1" + }, + "fastest-levenshtein": { + "version": "1.0.16", + "dev": true + }, + "fb-watchman": { + "version": "2.0.1", + "requires": { + "bser": "2.1.1" + } + }, + "fd-slicer": { + "version": "1.1.0", + "optional": true, + "requires": { + "pend": "~1.2.0" + } + }, + "fetch-mock": { + "version": "9.11.0", + "dev": true, + "requires": { + "@babel/core": "^7.0.0", + "@babel/runtime": "^7.0.0", + "core-js": "^3.0.0", + "debug": "^4.1.1", + "glob-to-regexp": "^0.4.0", + "is-subset": "^0.1.1", + "lodash.isequal": "^4.5.0", + "path-to-regexp": "^2.2.1", + "querystring": "^0.2.0", + "whatwg-url": "^6.5.0" + }, + "dependencies": { + "tr46": { + "version": "1.0.1", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "dev": true + }, + "whatwg-url": { + "version": "6.5.0", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "fetch-mock-jest": { + "version": "1.5.1", + "dev": true, + "requires": { + "fetch-mock": "^9.11.0" + } + }, + "figures": { + "version": "3.2.0", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-type": { + "version": "18.2.0", + "requires": { + "readable-web-to-node-stream": "^3.0.2", + "strtok3": "^7.0.0", + "token-types": "^5.0.1" + } + }, + "file-uri-to-path": { + "version": "1.0.0" + }, + "filelist": { + "version": "1.0.4", + "requires": { + "minimatch": "^5.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "filesize": { + "version": "10.0.6" + }, + "fill-range": { + "version": "7.0.1", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "flatstr": { + "version": "1.0.12" + }, + "fnv1a": { + "version": "1.1.1" + }, + "follow-redirects": { + "version": "1.14.1" + }, + "foreach": { + "version": "2.0.5" + }, + "forever-agent": { + "version": "0.6.1", + "optional": true + }, + "fork-ts-checker-webpack-plugin": { + "version": "8.0.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "requires": { + "@babel/highlight": "^7.22.5" + } + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "form-data": { + "version": "3.0.0", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "form-data-encoder": { + "version": "2.1.4" + }, + "formidable": { + "version": "2.1.1", + "requires": { + "dezalgo": "^1.0.4", + "hexoid": "^1.0.0", + "once": "^1.4.0", + "qs": "^6.11.0" + } + }, + "freeport-promise": { + "version": "2.0.0" + }, + "fresh": { + "version": "0.5.2" + }, + "fs-extra": { + "version": "0.30.0", + "optional": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "optional": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "fs-minipass": { + "version": "2.1.0", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "fs-monkey": { + "version": "1.0.4", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0" + }, + "function-bind": { + "version": "1.1.1" + }, + "function-timeout": { + "version": "0.1.1" + }, + "gar": { + "version": "1.0.4" + }, + "gauge": { + "version": "3.0.2", + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "dev": true + }, + "get-browser-rtc": { + "version": "1.1.0", + "optional": true + }, + "get-caller-file": { + "version": "2.0.5" + }, + "get-folder-size": { + "version": "4.0.0", + "requires": { + "gar": "^1.0.4" + } + }, + "get-intrinsic": { + "version": "1.1.1", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-iterator": { + "version": "1.0.2" + }, + "get-package-type": { + "version": "0.1.0", + "dev": true + }, + "get-port": { + "version": "5.1.1" + }, + "get-stream": { + "version": "6.0.1" + }, + "get-symbol-description": { + "version": "1.0.0", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "getpass": { + "version": "0.1.7", + "optional": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.2.0", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1" + }, + "global-dirs": { + "version": "3.0.1", + "requires": { + "ini": "2.0.0" + }, + "dependencies": { + "ini": { + "version": "2.0.0" + } + } + }, + "go-ipfs": { + "version": "npm:mocked-go-ipfs@0.17.0" + }, + "graceful-fs": { + "version": "4.2.10" + }, + "hamt-sharding": { + "version": "3.0.2", + "requires": { + "sparse-array": "^1.3.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "hapi-pino": { + "version": "8.5.0", + "requires": { + "@hapi/hoek": "^9.0.0", + "abstract-logging": "^2.0.0", + "pino": "^6.0.0", + "pino-pretty": "^4.0.0" + } + }, + "har-schema": { + "version": "2.0.0", + "optional": true + }, + "har-validator": { + "version": "5.1.5", + "optional": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.1" + }, + "has-flag": { + "version": "3.0.0" + }, + "has-own-prop": { + "version": "2.0.0", + "dev": true + }, + "has-symbols": { + "version": "1.0.2" + }, + "has-tostringtag": { + "version": "1.0.0", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-unicode": { + "version": "2.0.1" + }, + "has-yarn": { + "version": "3.0.0" + }, + "hash-base": { + "version": "3.1.0", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "hash.js": { + "version": "1.1.7", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hashlru": { + "version": "2.3.0" + }, + "hat": { + "version": "0.0.3", + "optional": true + }, + "he": { + "version": "1.2.0" + }, + "header-case": { + "version": "2.0.4", + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "headless": { + "version": "1.1.0", + "optional": true + }, + "hexoid": { + "version": "1.0.0" + }, + "hmac-drbg": { + "version": "1.0.1", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "home-path": { + "version": "1.0.7", + "optional": true + }, + "html-escaper": { + "version": "2.0.2", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.0" + }, + "http-errors": { + "version": "2.0.0", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-proxy": { + "version": "1.18.1", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-server": { + "version": "0.12.3", + "requires": { + "basic-auth": "^1.0.3", + "colors": "^1.4.0", + "corser": "^2.0.1", + "ecstatic": "^3.3.2", + "http-proxy": "^1.18.0", + "minimist": "^1.2.5", + "opener": "^1.5.1", + "portfinder": "^1.0.25", + "secure-compare": "3.0.1", + "union": "~0.5.0" + } + }, + "http-signature": { + "version": "1.2.0", + "optional": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0" + }, + "iconv-lite": { + "version": "0.4.24", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1" + }, + "image-size": { + "version": "1.0.1", + "requires": { + "queue": "6.0.2" + } + }, + "import-fresh": { + "version": "3.3.0", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-lazy": { + "version": "4.0.0" + }, + "import-local": { + "version": "3.1.0", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4" + }, + "indent-string": { + "version": "4.0.0" + }, + "inflight": { + "version": "1.0.6", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4" + }, + "ini": { + "version": "1.3.8" + }, + "inquirer": { + "version": "8.2.5", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "interface-blockstore": { + "version": "4.0.1", + "requires": { + "interface-store": "^3.0.0", + "multiformats": "^11.0.0" + } + }, + "interface-datastore": { + "version": "7.0.4", + "requires": { + "interface-store": "^3.0.0", + "nanoid": "^4.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "nanoid": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "interface-store": { + "version": "3.0.4" + }, + "internal-slot": { + "version": "1.0.3", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "3.1.1", + "dev": true + }, + "ip": { + "version": "1.1.5" + }, + "ip-regex": { + "version": "4.3.0" + }, + "ipaddr.js": { + "version": "1.9.1" + }, + "ipfs": { + "version": "0.66.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "electron-webrtc": "^0.3.0", + "ipfs-cli": "^0.16.0", + "ipfs-core": "^0.18.0", + "semver": "^7.3.2", + "update-notifier": "^6.0.0", + "wrtc": "^0.4.6" + } + }, + "ipfs-bitswap": { + "version": "15.0.2", + "requires": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/topology": "^4.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@vascosantos/moving-average": "^1.1.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "blockstore-core": "^3.0.0", + "interface-blockstore": "^4.0.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "just-debounce-it": "^3.0.1", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "readable-stream": "^4.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0", + "varint-decoder": "^1.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "readable-stream": { + "version": "4.3.0", + "requires": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-cli": { + "version": "0.16.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "byteman": "^1.3.5", + "execa": "^6.1.0", + "get-folder-size": "^4.0.0", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-daemon": "^0.16.0", + "ipfs-http-client": "^60.0.0", + "ipfs-utils": "^9.0.13", + "it-concat": "^3.0.1", + "it-merge": "^2.0.0", + "it-pipe": "^2.0.3", + "it-split": "^2.0.0", + "it-tar": "^6.0.0", + "jsondiffpatch": "^0.4.1", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "pretty-bytes": "^6.0.0", + "progress": "^2.0.3", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2", + "yargs": "^17.4.0" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "execa": { + "version": "6.1.0", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + } + }, + "human-signals": { + "version": "3.0.1" + }, + "is-stream": { + "version": "3.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "mimic-fn": { + "version": "4.0.0" + }, + "npm-run-path": { + "version": "5.1.0", + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0" + }, + "strip-final-newline": { + "version": "3.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-core": { + "version": "0.18.0", + "requires": { + "@chainsafe/libp2p-noise": "^11.0.0", + "@ipld/car": "^5.0.0", + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/bootstrap": "^6.0.0", + "@libp2p/crypto": "^1.0.0", + "@libp2p/delegated-content-routing": "^4.0.0", + "@libp2p/delegated-peer-routing": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.6", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/kad-dht": "^7.0.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/mplex": "^7.1.1", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/websockets": "^5.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.1.5", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "@multiformats/murmur3": "^2.0.0", + "any-signal": "^3.0.0", + "array-shuffle": "^3.0.0", + "blockstore-core": "^3.0.0", + "browser-readablestream-to-it": "^2.0.0", + "dag-jose": "^4.0.0", + "datastore-core": "^8.0.1", + "datastore-pubsub": "^7.0.0", + "dlv": "^1.1.3", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "hashlru": "^2.3.0", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-bitswap": "^15.0.0", + "ipfs-core-config": "^0.7.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-client": "^60.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-unixfs-exporter": "^10.0.0", + "ipfs-unixfs-importer": "^12.0.0", + "ipfs-utils": "^9.0.9", + "ipns": "^5.0.1", + "is-domain-name": "^1.0.1", + "is-ipfs": "^8.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-tar": "^6.0.0", + "it-to-buffer": "^3.0.0", + "just-safe-set": "^4.0.2", + "libp2p": "^0.42.0", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "pako": "^2.0.4", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-core-config": { + "version": "0.7.0", + "requires": { + "@chainsafe/libp2p-gossipsub": "^6.0.0", + "@libp2p/floodsub": "^6.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/mdns": "^6.0.0", + "@libp2p/prometheus-metrics": "^1.0.1", + "@libp2p/tcp": "^6.0.2", + "@libp2p/webrtc-star": "^6.0.0", + "blockstore-datastore-adapter": "^5.0.0", + "datastore-core": "^8.0.1", + "datastore-fs": "^8.0.0", + "datastore-level": "^9.0.0", + "err-code": "^3.0.1", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-utils": "^9.0.13", + "is-ipfs": "^8.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-foreach": "^1.0.0", + "p-queue": "^7.2.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-core-types": { + "version": "0.14.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/node": "^18.0.0", + "interface-datastore": "^7.0.0", + "ipfs-unixfs": "^9.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@types/node": { + "version": "18.11.19" + } + } + }, + "ipfs-core-utils": { + "version": "0.18.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "any-signal": "^3.0.0", + "blob-to-it": "^2.0.0", + "browser-readablestream-to-it": "^2.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-utils": "^9.0.13", + "it-all": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "nanoid": "^4.0.0", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "nanoid": { + "version": "4.0.1" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-daemon": { + "version": "0.16.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "@libp2p/webrtc-star": "^6.0.0", + "@mapbox/node-pre-gyp": "^1.0.5", + "electron-webrtc": "^0.3.0", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-server": "^0.12.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-http-server": "^0.15.0", + "ipfs-utils": "^9.0.13", + "libp2p": "^0.42.0", + "prom-client": "^14.0.1", + "wrtc": "^0.4.6" + } + }, + "ipfs-grpc-protocol": { + "version": "0.8.0" + }, + "ipfs-grpc-server": { + "version": "0.12.0", + "requires": { + "@grpc/grpc-js": "^1.1.8", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "change-case": "^4.1.1", + "coercer": "^1.1.2", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-protocol": "^0.8.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "nanoid": "^4.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "ws": "^8.5.0" + }, + "dependencies": { + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + }, + "long": { + "version": "5.2.1" + }, + "nanoid": { + "version": "4.0.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-http-client": { + "version": "60.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "any-signal": "^3.0.0", + "dag-jose": "^4.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-utils": "^9.0.13", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-first": { + "version": "2.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-http-gateway": { + "version": "0.13.0", + "requires": { + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/logger": "^2.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-http-response": "^6.0.0", + "is-ipfs": "^8.0.0", + "it-last": "^2.0.0", + "it-to-stream": "^1.0.0", + "joi": "^17.2.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-http-response": { + "version": "6.0.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "ejs": "^3.1.6", + "file-type": "^18.0.0", + "filesize": "^10.0.5", + "it-map": "^2.0.0", + "it-reader": "^6.0.1", + "it-to-stream": "^1.0.0", + "mime-types": "^2.1.30", + "p-try-each": "^1.0.1" + }, + "dependencies": { + "it-map": { + "version": "2.0.0" + } + } + }, + "ipfs-http-server": { + "version": "0.15.0", + "requires": { + "@hapi/boom": "^9.1.0", + "@hapi/content": "^5.0.2", + "@hapi/hapi": "^20.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "any-signal": "^3.0.0", + "dlv": "^1.1.3", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-multipart": "^3.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reduce": "^2.0.0", + "joi": "^17.2.1", + "just-safe-set": "^4.0.2", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "prom-client": "^14.0.1", + "stream-to-it": "^0.2.2", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-log": { + "version": "5.4.2", + "requires": { + "json-stringify-deterministic": "^1.0.1", + "multihashing-async": "^2.0.1", + "orbit-db-identity-provider": "^0.3.1", + "orbit-db-io": "^1.1.2", + "p-do-whilst": "^1.1.0", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-whilst": "^2.1.0" + }, + "dependencies": { + "iso-random-stream": { + "version": "1.1.2", + "requires": { + "buffer": "^6.0.3", + "readable-stream": "^3.4.0" + } + }, + "libp2p-crypto": { + "version": "0.16.4", + "requires": { + "asmcrypto.js": "^2.3.2", + "asn1.js": "^5.0.1", + "async": "^2.6.1", + "bn.js": "^4.11.8", + "browserify-aes": "^1.2.0", + "bs58": "^4.0.1", + "iso-random-stream": "^1.1.0", + "keypair": "^1.0.1", + "libp2p-crypto-secp256k1": "~0.3.0", + "multihashing-async": "~0.5.1", + "node-forge": "^0.10.0", + "pem-jwk": "^2.0.0", + "protons": "^1.0.1", + "rsa-pem-to-jwk": "^1.1.3", + "tweetnacl": "^1.0.0", + "ursa-optional": "~0.10.0" + }, + "dependencies": { + "multihashing-async": { + "version": "0.5.2", + "requires": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + } + } + } + }, + "multibase": { + "version": "0.7.0", + "requires": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + } + } + }, + "multiformats": { + "version": "9.9.0" + }, + "multihashes": { + "version": "0.4.21", + "requires": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + } + } + }, + "orbit-db-identity-provider": { + "version": "0.3.1", + "requires": { + "ethers": "^5.0.8", + "orbit-db-keystore": "~0.3.5" + } + }, + "orbit-db-io": { + "version": "1.1.2", + "requires": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + } + }, + "orbit-db-keystore": { + "version": "0.3.5", + "requires": { + "elliptic": "^6.5.3", + "level": "8.0.0", + "leveldown": "^6", + "levelup": "~4.1.0", + "libp2p-crypto": "^0.16.0", + "libp2p-crypto-secp256k1": "^0.3.0", + "lru": "^3.1.0", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1" + } + }, + "tweetnacl": { + "version": "1.0.3" + }, + "varint": { + "version": "5.0.2" + } + } + }, + "ipfs-pubsub-1on1": { + "version": "0.1.0", + "requires": { + "safe-buffer": "~5.2.1" + } + }, + "ipfs-pubsub-peer-monitor": { + "version": "0.0.10", + "requires": { + "p-forever": "^2.1.0" + } + }, + "ipfs-repo": { + "version": "17.0.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "bytes": "^3.1.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-repo-migrations": "^15.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "just-safe-get": "^4.1.1", + "just-safe-set": "^4.1.1", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "proper-lockfile": "^4.0.0", + "quick-lru": "^6.1.1", + "sort-keys": "^5.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-parallel-batch": { + "version": "2.0.0", + "requires": { + "it-batch": "^2.0.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "quick-lru": { + "version": "6.1.1" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-repo-migrations": { + "version": "15.0.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "fnv1a": "^1.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-length": "^2.0.0", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-unixfs": { + "version": "9.0.0", + "requires": { + "err-code": "^3.0.1", + "protobufjs": "^7.0.0" + }, + "dependencies": { + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + } + } + }, + "ipfs-unixfs-exporter": { + "version": "10.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-map": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-unixfs-importer": { + "version": "12.0.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-batch": "^2.0.0", + "it-first": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "rabin-wasm": "^0.1.4", + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-all": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-parallel-batch": { + "version": "2.0.0", + "requires": { + "it-batch": "^2.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-utils": { + "version": "9.0.14", + "requires": { + "any-signal": "^3.0.0", + "browser-readablestream-to-it": "^1.0.0", + "buffer": "^6.0.1", + "electron-fetch": "^1.7.2", + "err-code": "^3.0.1", + "is-electron": "^2.2.0", + "iso-url": "^1.1.5", + "it-all": "^1.0.4", + "it-glob": "^1.0.1", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "nanoid": "^3.1.20", + "native-fetch": "^3.0.0", + "node-fetch": "^2.6.8", + "react-native-fetch-api": "^3.0.0", + "stream-to-it": "^0.2.2" + }, + "dependencies": { + "browser-readablestream-to-it": { + "version": "1.0.3" + } + } + }, + "ipfsd-ctl": { + "version": "12.2.2", + "peer": true, + "requires": { + "@hapi/boom": "^10.0.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/interface-peer-id": "^1.0.4", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "execa": "^6.1.0", + "ipfs-utils": "^9.0.1", + "joi": "^17.2.1", + "merge-options": "^3.0.1", + "nanoid": "^4.0.0", + "p-wait-for": "^5.0.0", + "temp-write": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "dependencies": { + "@hapi/boom": { + "version": "10.0.0", + "peer": true, + "requires": { + "@hapi/hoek": "10.x.x" + } + }, + "@hapi/hoek": { + "version": "10.0.1", + "peer": true + }, + "execa": { + "version": "6.1.0", + "peer": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + } + }, + "human-signals": { + "version": "3.0.1", + "peer": true + }, + "is-stream": { + "version": "3.0.0", + "peer": true + }, + "mimic-fn": { + "version": "4.0.0", + "peer": true + }, + "nanoid": { + "version": "4.0.0", + "peer": true + }, + "npm-run-path": { + "version": "5.1.0", + "peer": true, + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "peer": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0", + "peer": true + }, + "strip-final-newline": { + "version": "3.0.0", + "peer": true + }, + "wherearewe": { + "version": "2.0.1", + "peer": true, + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "ipns": { + "version": "5.0.1", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "cborg": "^1.3.3", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "timestamp-nano": "^1.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "2.0.5" + }, + "is-callable": { + "version": "1.2.4" + }, + "is-core-module": { + "version": "2.8.0", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-domain-name": { + "version": "1.0.1" + }, + "is-electron": { + "version": "2.2.1" + }, + "is-extglob": { + "version": "2.1.1", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0" + }, + "is-generator-fn": { + "version": "2.1.0", + "dev": true + }, + "is-generator-function": { + "version": "1.0.10", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.4.0", + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-interactive": { + "version": "1.0.0", + "dev": true + }, + "is-ip": { + "version": "3.1.0", + "requires": { + "ip-regex": "^4.0.0" + } + }, + "is-ipfs": { + "version": "8.0.1", + "requires": { + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "iso-url": "^1.1.3", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "is-nan": { + "version": "1.3.2", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "is-negative-zero": { + "version": "2.0.1" + }, + "is-node": { + "version": "1.0.2" + }, + "is-npm": { + "version": "6.0.0" + }, + "is-number": { + "version": "7.0.0" + }, + "is-number-object": { + "version": "1.0.6", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0" + }, + "is-path-inside": { + "version": "3.0.3" + }, + "is-plain-obj": { + "version": "2.1.0" + }, + "is-plain-object": { + "version": "2.0.4", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-promise": { + "version": "1.0.1" + }, + "is-regex": { + "version": "1.1.4", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "3.1.0" + }, + "is-shared-array-buffer": { + "version": "1.0.1" + }, + "is-stream": { + "version": "2.0.1" + }, + "is-string": { + "version": "1.0.7", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-subset": { + "version": "0.1.1", + "dev": true + }, + "is-symbol": { + "version": "1.0.4", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.8", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0" + }, + "dependencies": { + "es-abstract": { + "version": "1.19.1", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "object-keys": { + "version": "1.1.1" + } + } + }, + "is-typedarray": { + "version": "1.0.0" + }, + "is-unicode-supported": { + "version": "0.1.0", + "dev": true + }, + "is-weakref": { + "version": "1.0.1", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-yarn-global": { + "version": "0.4.1" + }, + "isarray": { + "version": "1.0.0" + }, + "isexe": { + "version": "2.0.0" + }, + "iso-constants": { + "version": "0.1.2" + }, + "iso-random-stream": { + "version": "2.0.2", + "requires": { + "events": "^3.3.0", + "readable-stream": "^3.4.0" + } + }, + "iso-url": { + "version": "1.2.1" + }, + "isobject": { + "version": "3.0.1", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "optional": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.5", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "it-all": { + "version": "1.0.6" + }, + "it-batch": { + "version": "2.0.0" + }, + "it-batched-bytes": { + "version": "1.0.0", + "requires": { + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.4.1" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-concat": { + "version": "3.0.1", + "requires": { + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-drain": { + "version": "1.0.5" + }, + "it-filter": { + "version": "1.0.3" + }, + "it-first": { + "version": "1.0.7" + }, + "it-foreach": { + "version": "1.0.0" + }, + "it-glob": { + "version": "1.0.2", + "requires": { + "@types/minimatch": "^3.0.4", + "minimatch": "^3.0.4" + } + }, + "it-handshake": { + "version": "4.1.2", + "requires": { + "it-pushable": "^3.1.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.0.0" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.0" + }, + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-last": { + "version": "2.0.0" + }, + "it-length": { + "version": "2.0.0" + }, + "it-length-prefixed": { + "version": "8.0.4", + "requires": { + "err-code": "^3.0.1", + "it-stream-types": "^1.0.4", + "uint8-varint": "^1.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-map": { + "version": "1.0.6" + }, + "it-merge": { + "version": "1.0.4", + "requires": { + "it-pushable": "^1.4.0" + } + }, + "it-multipart": { + "version": "3.0.0", + "requires": { + "formidable": "^2.0.1", + "it-pushable": "^3.1.0" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.2" + } + } + }, + "it-pair": { + "version": "2.0.3", + "requires": { + "it-stream-types": "^1.0.3", + "p-defer": "^4.0.0" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-parallel": { + "version": "3.0.0", + "requires": { + "p-defer": "^4.0.0" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-parallel-batch": { + "version": "1.0.11", + "requires": { + "it-batch": "^1.0.9" + }, + "dependencies": { + "it-batch": { + "version": "1.0.9" + } + } + }, + "it-pb-stream": { + "version": "2.0.2", + "requires": { + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + } + }, + "it-peekable": { + "version": "2.0.0" + }, + "it-pipe": { + "version": "2.0.5", + "requires": { + "it-merge": "^2.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.3" + }, + "dependencies": { + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + } + } + }, + "it-pushable": { + "version": "1.4.2", + "requires": { + "fast-fifo": "^1.0.0" + } + }, + "it-reader": { + "version": "6.0.2", + "requires": { + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + } + }, + "it-reduce": { + "version": "2.0.0" + }, + "it-sort": { + "version": "2.0.0", + "requires": { + "it-all": "^2.0.0" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + } + } + }, + "it-split": { + "version": "2.0.1", + "requires": { + "uint8arraylist": "^2.4.1" + } + }, + "it-stream-types": { + "version": "1.0.4" + }, + "it-take": { + "version": "1.0.2" + }, + "it-tar": { + "version": "6.0.1", + "requires": { + "iso-constants": "^0.1.2", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "it-to-buffer": "^3.0.0", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-to-buffer": { + "version": "3.0.0", + "requires": { + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-to-stream": { + "version": "1.0.0", + "requires": { + "buffer": "^6.0.3", + "fast-fifo": "^1.0.0", + "get-iterator": "^1.0.2", + "p-defer": "^3.0.0", + "p-fifo": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "it-ws": { + "version": "5.0.6", + "requires": { + "event-iterator": "^2.0.0", + "iso-url": "^1.1.2", + "it-stream-types": "^1.0.2", + "uint8arrays": "^4.0.2", + "ws": "^8.4.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "iterare": { + "version": "1.2.1" + }, + "jake": { + "version": "10.8.5", + "requires": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "async": { + "version": "3.2.4" + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/core": "^29.4.2", + "@jest/types": "^29.4.2", + "import-local": "^3.0.2", + "jest-cli": "^29.4.2" + } + }, + "jest-changed-files": { + "version": "29.4.2", + "dev": true, + "requires": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "dependencies": { + "p-limit": { + "version": "3.1.0", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "dev": true + } + } + }, + "jest-circus": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "p-limit": "^3.1.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "dev": true + } + } + }, + "jest-cli": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/core": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.4.2", + "@jest/types": "^29.4.2", + "babel-jest": "^29.4.2", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "parse-json": { + "version": "5.2.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "29.4.2", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "29.4.2", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "jest-util": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-node": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + } + }, + "jest-get-type": { + "version": "27.5.1" + }, + "jest-haste-map": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + } + }, + "jest-leak-detector": { + "version": "29.4.2", + "dev": true, + "requires": { + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + } + } + }, + "jest-matcher-utils": { + "version": "29.4.2", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.4.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.18.6", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-util": "^29.4.2" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "requires": {} + }, + "jest-regex-util": { + "version": "29.4.2", + "devOptional": true + }, + "jest-resolve": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "resolve.exports": { + "version": "2.0.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "29.4.2", + "dev": true, + "requires": { + "jest-regex-util": "^29.4.2", + "jest-snapshot": "^29.4.2" + } + }, + "jest-runner": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/console": "^29.4.2", + "@jest/environment": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-leak-detector": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-util": "^29.4.2", + "jest-watcher": "^29.4.2", + "jest-worker": "^29.4.2", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "buffer-from": { + "version": "1.1.2", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.13", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "dev": true + } + } + }, + "jest-runtime": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/globals": "^29.4.2", + "@jest/source-map": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "semver": "^7.3.5", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "strip-bom": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "27.5.1", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-snapshot": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "natural-compare": "^1.4.0", + "pretty-format": "^29.4.2", + "semver": "^7.3.5" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/types": "^29.4.2", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "leven": "^3.1.0", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0", + "devOptional": true + }, + "chalk": { + "version": "4.1.2", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "jest-get-type": { + "version": "29.4.2", + "devOptional": true + }, + "leven": { + "version": "3.1.0", + "devOptional": true + }, + "pretty-format": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "devOptional": true + } + } + }, + "react-is": { + "version": "18.2.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.4.2", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@types/node": "*", + "jest-util": "^29.4.2", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "supports-color": { + "version": "8.1.1", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jmespath": { + "version": "0.15.0" + }, + "joi": { + "version": "17.8.1", + "requires": { + "@hapi/address": "^5.1.0", + "@hapi/formula": "^3.0.2", + "@hapi/hoek": "^11.0.2", + "@hapi/pinpoint": "^2.0.1", + "@hapi/tlds": "^1.0.1", + "@hapi/topo": "^6.0.1" + }, + "dependencies": { + "@hapi/hoek": { + "version": "11.0.2" + }, + "@hapi/topo": { + "version": "6.0.1", + "requires": { + "@hapi/hoek": "^11.0.2" + } + } + } + }, + "joycon": { + "version": "2.2.5" + }, + "js-sha3": { + "version": "0.8.0" + }, + "js-tokens": { + "version": "4.0.0", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "1.1.0" + }, + "jsesc": { + "version": "2.5.2", + "dev": true + }, + "json-buffer": { + "version": "3.0.1" + }, + "json-parse-even-better-errors": { + "version": "2.3.1" + }, + "json-schema": { + "version": "0.4.0", + "optional": true + }, + "json-schema-traverse": { + "version": "0.4.1" + }, + "json-stringify-deterministic": { + "version": "1.0.8" + }, + "json-stringify-safe": { + "version": "5.0.1", + "optional": true + }, + "jsonc-parser": { + "version": "3.2.0", + "dev": true + }, + "jsondiffpatch": { + "version": "0.4.1", + "requires": { + "chalk": "^2.3.0", + "diff-match-patch": "^1.0.0" + } + }, + "jsonfile": { + "version": "2.4.0", + "optional": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsprim": { + "version": "1.4.2", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "just-debounce-it": { + "version": "3.2.0" + }, + "just-safe-get": { + "version": "4.2.0" + }, + "just-safe-set": { + "version": "4.2.1" + }, + "k-bucket": { + "version": "5.1.0", + "requires": { + "randombytes": "^2.1.0" + } + }, + "keypair": { + "version": "1.0.4" + }, + "keyv": { + "version": "4.5.2", + "requires": { + "json-buffer": "3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "dev": true + }, + "klaw": { + "version": "1.3.1", + "optional": true, + "requires": { + "graceful-fs": "^4.1.9" + } + }, + "kleur": { + "version": "3.0.3", + "dev": true + }, + "latest-version": { + "version": "7.0.0", + "requires": { + "package-json": "^8.1.0" + } + }, + "level": { + "version": "8.0.0", + "requires": { + "browser-level": "^1.0.1", + "classic-level": "^1.2.0" + } + }, + "level-concat-iterator": { + "version": "3.1.0", + "requires": { + "catering": "^2.1.0" + } + }, + "level-errors": { + "version": "2.0.1", + "requires": { + "errno": "~0.1.1" + } + }, + "level-iterator-stream": { + "version": "4.0.2", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.4.0", + "xtend": "^4.0.2" + } + }, + "level-supports": { + "version": "2.1.0" + }, + "level-transcoder": { + "version": "1.0.1", + "requires": { + "buffer": "^6.0.3", + "module-error": "^1.0.1" + } + }, + "leveldown": { + "version": "6.1.1", + "requires": { + "abstract-leveldown": "^7.2.0", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + } + }, + "levelup": { + "version": "4.1.0", + "requires": { + "deferred-leveldown": "~5.1.0", + "level-errors": "~2.0.0", + "level-iterator-stream": "~4.0.0", + "xtend": "~4.0.0" + } + }, + "leven": { + "version": "2.1.0" + }, + "libp2p": { + "version": "0.42.2", + "requires": { + "@achingbrain/nat-port-mapper": "^1.0.3", + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-encrypter": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-libp2p": "^1.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-routing": "^1.0.1", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/multistream-select": "^3.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/peer-store": "^6.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-foreach": "^1.0.0", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-pair": "^2.0.2", + "it-pipe": "^2.0.3", + "it-sort": "^2.0.0", + "it-stream-types": "^1.0.4", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "node-forge": "^1.3.1", + "p-fifo": "^1.0.0", + "p-retry": "^5.0.0", + "p-settle": "^5.0.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "rate-limiter-flexible": "^2.3.11", + "retimer": "^3.0.0", + "sanitize-filename": "^1.6.3", + "set-delayed-interval": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2", + "wherearewe": "^2.0.0", + "xsalsa20": "^1.1.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/peer-record": { + "version": "5.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "ip-regex": { + "version": "5.0.0" + }, + "ipaddr.js": { + "version": "2.0.1" + }, + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.0" + }, + "node-forge": { + "version": "1.3.1" + }, + "private-ip": { + "version": "3.0.0", + "requires": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + } + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + }, + "wherearewe": { + "version": "2.0.1", + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "libp2p-crypto": { + "version": "0.21.2", + "requires": { + "@noble/ed25519": "^1.5.1", + "@noble/secp256k1": "^1.3.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.0", + "multiformats": "^9.4.5", + "node-forge": "^1.2.1", + "protobufjs": "^6.11.2", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + }, + "node-forge": { + "version": "1.3.1" + } + } + }, + "libp2p-crypto-secp256k1": { + "version": "0.3.1", + "requires": { + "async": "^2.6.2", + "bs58": "^4.0.1", + "multihashing-async": "~0.6.0", + "nodeify": "^1.0.1", + "safe-buffer": "^5.1.2", + "secp256k1": "^3.6.2" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "multibase": { + "version": "0.7.0", + "requires": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "multihashes": { + "version": "0.4.21", + "requires": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + } + }, + "multihashing-async": { + "version": "0.6.0", + "requires": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + } + }, + "secp256k1": { + "version": "3.8.0", + "requires": { + "bindings": "^1.5.0", + "bip66": "^1.1.5", + "bn.js": "^4.11.8", + "create-hash": "^1.2.0", + "drbg.js": "^1.0.1", + "elliptic": "^6.5.2", + "nan": "^2.14.0", + "safe-buffer": "^5.1.2" + } + }, + "varint": { + "version": "5.0.2" + } + } + }, + "libphonenumber-js": { + "version": "1.9.44" + }, + "lines-and-columns": { + "version": "1.2.4", + "dev": true + }, + "loader-runner": { + "version": "4.3.0" + }, + "loader-utils": { + "version": "2.0.4", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "dependencies": { + "json5": { + "version": "2.2.3" + } + } + }, + "lodash": { + "version": "4.17.21" + }, + "lodash.camelcase": { + "version": "4.3.0" + }, + "lodash.isequal": { + "version": "4.5.0", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "logplease": { + "version": "1.2.15" + }, + "long": { + "version": "4.0.0" + }, + "longbits": { + "version": "1.1.0", + "requires": { + "byte-access": "^1.0.1", + "uint8arraylist": "^2.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "lru": { + "version": "3.1.0", + "requires": { + "inherits": "^2.0.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "requires": { + "yallist": "^4.0.0" + } + }, + "luxon": { + "version": "1.28.0" + }, + "macos-release": { + "version": "2.5.1", + "dev": true + }, + "magic-string": { + "version": "0.30.0", + "dev": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.13" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0" + } + } + }, + "make-error": { + "version": "1.3.6", + "dev": true + }, + "makeerror": { + "version": "1.0.12", + "requires": { + "tmpl": "1.0.5" + } + }, + "md5.js": { + "version": "1.3.5", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "media-typer": { + "version": "0.3.0" + }, + "memfs": { + "version": "3.5.3", + "dev": true, + "requires": { + "fs-monkey": "^1.0.4" + } + }, + "merge-descriptors": { + "version": "1.0.1" + }, + "merge-options": { + "version": "3.0.4", + "requires": { + "is-plain-obj": "^2.1.0" + } + }, + "merge-stream": { + "version": "2.0.0" + }, + "methods": { + "version": "1.1.2" + }, + "micromatch": { + "version": "4.0.4", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "mime": { + "version": "1.6.0" + }, + "mime-db": { + "version": "1.51.0" + }, + "mime-types": { + "version": "2.1.34", + "requires": { + "mime-db": "1.51.0" + } + }, + "mimic-fn": { + "version": "2.1.0" + }, + "minimalistic-assert": { + "version": "1.0.1" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1" + }, + "minimatch": { + "version": "3.0.4", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8" + }, + "minipass": { + "version": "4.2.8" + }, + "minizlib": { + "version": "2.1.2", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "requires": { + "minimist": "^1.2.5" + } + }, + "mock-fs": { + "version": "5.1.2", + "dev": true + }, + "module-error": { + "version": "1.0.2" + }, + "mortice": { + "version": "3.0.1", + "requires": { + "nanoid": "^4.0.0", + "observable-webworkers": "^2.0.1", + "p-queue": "^7.2.0", + "p-timeout": "^6.0.0" + }, + "dependencies": { + "nanoid": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.0", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "dependencies": { + "p-timeout": { + "version": "5.1.0" + } + } + }, + "p-timeout": { + "version": "6.0.0" + } + } + }, + "mri": { + "version": "1.1.4" + }, + "ms": { + "version": "2.1.2" + }, + "multer": { + "version": "1.4.4-lts.1", + "requires": { + "append-field": "^1.0.0", + "busboy": "^1.0.0", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.4", + "object-assign": "^4.1.1", + "type-is": "^1.6.4", + "xtend": "^4.0.0" + } + }, + "multiaddr": { + "version": "10.0.1", + "requires": { + "dns-over-http-resolver": "^1.2.3", + "err-code": "^3.0.1", + "is-ip": "^3.1.0", + "multiformats": "^9.4.5", + "uint8arrays": "^3.0.0", + "varint": "^6.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "multibase": { + "version": "4.0.6", + "requires": { + "@multiformats/base-x": "^4.0.1" + } + }, + "multicast-dns": { + "version": "7.2.5", + "requires": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + } + }, + "multiformats": { + "version": "11.0.2" + }, + "multihashes": { + "version": "4.0.3", + "requires": { + "multibase": "^4.0.1", + "uint8arrays": "^3.0.0", + "varint": "^5.0.2" + }, + "dependencies": { + "varint": { + "version": "5.0.2" + } + } + }, + "multihashing-async": { + "version": "2.1.4", + "requires": { + "blakejs": "^1.1.0", + "err-code": "^3.0.0", + "js-sha3": "^0.8.0", + "multihashes": "^4.0.1", + "murmurhash3js-revisited": "^3.0.0", + "uint8arrays": "^3.0.0" + } + }, + "murmurhash3js": { + "version": "3.0.1" + }, + "murmurhash3js-revisited": { + "version": "3.0.0" + }, + "mute-stream": { + "version": "0.0.8", + "dev": true + }, + "nan": { + "version": "2.17.0" + }, + "nanoid": { + "version": "3.3.4" + }, + "napi-macros": { + "version": "2.0.0" + }, + "native-fetch": { + "version": "3.0.0", + "requires": {} + }, + "natural-compare": { + "version": "1.4.0", + "dev": true + }, + "ndjson": { + "version": "1.5.0", + "optional": true, + "requires": { + "json-stringify-safe": "^5.0.1", + "minimist": "^1.2.0", + "split2": "^2.1.0", + "through2": "^2.0.3" + } + }, + "negotiator": { + "version": "0.6.3" + }, + "neo-async": { + "version": "2.6.2" + }, + "netmask": { + "version": "2.0.2" + }, + "nice-try": { + "version": "1.0.5", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-abort-controller": { + "version": "3.1.1", + "dev": true + }, + "node-addon-api": { + "version": "2.0.2" + }, + "node-emoji": { + "version": "1.11.0", + "dev": true, + "requires": { + "lodash": "^4.17.21" + } + }, + "node-fetch": { + "version": "2.6.9", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "node-forge": { + "version": "0.10.0" + }, + "node-gyp-build": { + "version": "4.3.0" + }, + "node-int64": { + "version": "0.4.0" + }, + "node-releases": { + "version": "1.1.77" + }, + "nodeify": { + "version": "1.0.1", + "requires": { + "is-promise": "~1.0.0", + "promise": "~1.3.0" + } + }, + "nopt": { + "version": "5.0.0", + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0" + }, + "npm-run-path": { + "version": "4.0.1", + "requires": { + "path-key": "^3.0.0" + } + }, + "npmlog": { + "version": "5.0.1", + "requires": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "nugget": { + "version": "2.2.0", + "optional": true, + "requires": { + "debug": "^2.1.3", + "minimist": "^1.1.0", + "pretty-bytes": "^4.0.2", + "progress-stream": "^1.1.0", + "request": "^2.45.0", + "single-line-log": "^1.1.2", + "throttleit": "0.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + }, + "pretty-bytes": { + "version": "4.0.2", + "optional": true + } + } + }, + "number-is-nan": { + "version": "1.0.1", + "optional": true + }, + "oauth-sign": { + "version": "0.9.0", + "optional": true + }, + "object-assign": { + "version": "4.1.1" + }, + "object-inspect": { + "version": "1.11.1" + }, + "object-is": { + "version": "1.1.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "0.4.0", + "optional": true + }, + "object.assign": { + "version": "4.1.2", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1" + } + } + }, + "observable-webworkers": { + "version": "2.0.1" + }, + "on-finished": { + "version": "2.4.1", + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opener": { + "version": "1.5.2" + }, + "optimist": { + "version": "0.3.7", + "requires": { + "wordwrap": "~0.0.2" + } + }, + "ora": { + "version": "5.4.1", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "bl": { + "version": "4.1.0", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "orbit-db": { + "version": "0.29.0", + "requires": { + "ipfs-pubsub-1on1": "^0.1.0", + "is-node": "^1.0.2", + "logplease": "^1.2.15", + "orbit-db-access-controllers": "^0.4.0", + "orbit-db-cache": "^0.5.0", + "orbit-db-counterstore": "^2.0.0", + "orbit-db-docstore": "^2.0.0", + "orbit-db-eventstore": "^2.0.0", + "orbit-db-feedstore": "^2.0.0", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "orbit-db-keystore": "^2.0.0", + "orbit-db-kvstore": "^2.0.0", + "orbit-db-pubsub": "^0.7.0", + "orbit-db-storage-adapter": "^0.9.0", + "orbit-db-store": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "aggregate-error": { + "version": "4.0.1", + "requires": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + } + }, + "clean-stack": { + "version": "4.2.0", + "requires": { + "escape-string-regexp": "5.0.0" + } + }, + "crdts": { + "version": "0.2.0" + }, + "escape-string-regexp": { + "version": "5.0.0" + }, + "indent-string": { + "version": "5.0.0" + }, + "ipfs-log": { + "version": "6.0.0", + "requires": { + "json-stringify-deterministic": "^1.0.8", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "p-do-whilst": "^2.0.0", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-whilst": "^3.0.0" + }, + "dependencies": { + "p-map": { + "version": "5.5.0", + "requires": { + "aggregate-error": "^4.0.0" + } + } + } + }, + "orbit-db-cache": { + "version": "0.5.0", + "requires": { + "logplease": "~1.2.15" + } + }, + "orbit-db-counterstore": { + "version": "2.0.0", + "requires": { + "crdts": "^0.2.0" + } + }, + "orbit-db-docstore": { + "version": "2.0.0", + "requires": { + "p-map": "~1.1.1" + } + }, + "orbit-db-eventstore": { + "version": "2.0.0", + "requires": {} + }, + "orbit-db-feedstore": { + "version": "2.0.0", + "requires": { + "orbit-db-eventstore": "*" + } + }, + "orbit-db-io": { + "version": "3.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + } + }, + "orbit-db-kvstore": { + "version": "2.0.0", + "requires": {} + }, + "orbit-db-pubsub": { + "version": "0.7.0", + "requires": { + "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "orbit-db-store": { + "version": "5.0.0", + "requires": { + "ipfs-log": "^6.0.0", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.15", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-queue": "^7.3.0", + "readable-stream": "~4.3.0" + }, + "dependencies": { + "p-map": { + "version": "5.5.0", + "requires": { + "aggregate-error": "^4.0.0" + } + } + } + }, + "p-do-whilst": { + "version": "2.0.0" + }, + "p-each-series": { + "version": "3.0.0" + }, + "p-map": { + "version": "1.1.1" + }, + "p-whilst": { + "version": "3.0.0" + }, + "readable-stream": { + "version": "4.3.0", + "requires": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + } + }, + "wherearewe": { + "version": "2.0.1", + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "orbit-db-access-controllers": { + "version": "0.4.0", + "requires": { + "orbit-db-io": "^3.0.0", + "p-map-series": "^3.0.0", + "safe-buffer": "^5.2.1" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.2", + "requires": { + "multiformats": "^11.0.0" + } + }, + "orbit-db-io": { + "version": "3.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + } + } + } + }, + "orbit-db-identity-provider": { + "version": "0.5.0", + "requires": { + "@ethersproject/wallet": "^5.7.0", + "assert": "^2.0.0", + "dids": "^3.4.0", + "lru": "^3.1.0", + "orbit-db-keystore": "^2.0.0", + "path-browserify": "^1.0.1", + "stream-browserify": "^3.0.0", + "uint8arrays": "^4.0.3" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "orbit-db-io": { + "version": "1.0.2", + "requires": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "orbit-db-keystore": { + "version": "2.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "elliptic": "^6.5.4", + "level": "8.0.0", + "lru": "^3.1.0", + "mkdirp": "^2.1.1", + "safe-buffer": "^5.2.1", + "secp256k1": "^5.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "2.1.6" + }, + "node-addon-api": { + "version": "5.1.0" + }, + "secp256k1": { + "version": "5.0.0", + "requires": { + "elliptic": "^6.5.4", + "node-addon-api": "^5.0.0", + "node-gyp-build": "^4.2.0" + } + } + } + }, + "orbit-db-pubsub": { + "version": "0.6.0", + "requires": { + "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "orbit-db-storage-adapter": { + "version": "0.9.0", + "requires": { + "level": "8.0.0", + "mkdirp": "^2.1.1" + }, + "dependencies": { + "mkdirp": { + "version": "2.1.3" + } + } + }, + "orbit-db-store": { + "version": "4.3.4", + "requires": { + "ipfs-log": "^5.4.1", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.14", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-queue": "^6.6.2", + "readable-stream": "~3.6.0" + }, + "dependencies": { + "p-queue": { + "version": "6.6.2", + "requires": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + } + }, + "p-timeout": { + "version": "3.2.0", + "requires": { + "p-finally": "^1.0.0" + } + } + } + }, + "os-name": { + "version": "4.0.1", + "dev": true, + "requires": { + "macos-release": "^2.5.0", + "windows-release": "^4.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "dev": true + }, + "p-defer": { + "version": "3.0.0" + }, + "p-do-whilst": { + "version": "1.1.0" + }, + "p-each-series": { + "version": "2.2.0" + }, + "p-event": { + "version": "5.0.1", + "requires": { + "p-timeout": "^5.0.2" + } + }, + "p-fifo": { + "version": "1.0.0", + "requires": { + "fast-fifo": "^1.0.0", + "p-defer": "^3.0.0" + } + }, + "p-finally": { + "version": "1.0.0" + }, + "p-forever": { + "version": "2.1.0" + }, + "p-limit": { + "version": "2.3.0", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-map": { + "version": "4.0.0", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-map-series": { + "version": "3.0.0" + }, + "p-queue": { + "version": "7.3.4", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "p-reduce": { + "version": "1.0.0" + }, + "p-reflect": { + "version": "3.1.0" + }, + "p-retry": { + "version": "5.1.1", + "requires": { + "@types/retry": "0.12.1", + "retry": "^0.13.1" + }, + "dependencies": { + "retry": { + "version": "0.13.1" + } + } + }, + "p-series": { + "version": "1.1.0", + "requires": { + "@sindresorhus/is": "^0.7.0", + "p-reduce": "^1.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.7.0" + } + } + }, + "p-settle": { + "version": "5.1.0", + "requires": { + "p-limit": "^4.0.0", + "p-reflect": "^3.1.0" + }, + "dependencies": { + "p-limit": { + "version": "4.0.0", + "requires": { + "yocto-queue": "^1.0.0" + } + } + } + }, + "p-timeout": { + "version": "5.1.0" + }, + "p-try": { + "version": "2.2.0", + "dev": true + }, + "p-try-each": { + "version": "1.0.1" + }, + "p-wait-for": { + "version": "5.0.0", + "peer": true, + "requires": { + "p-timeout": "^6.0.0" + }, + "dependencies": { + "p-timeout": { + "version": "6.0.0", + "peer": true + } + } + }, + "p-whilst": { + "version": "2.1.0" + }, + "package-json": { + "version": "8.1.0", + "requires": { + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "5.3.0" + }, + "@szmarczak/http-timer": { + "version": "5.0.1", + "requires": { + "defer-to-connect": "^2.0.1" + } + }, + "cacheable-lookup": { + "version": "7.0.0" + }, + "cacheable-request": { + "version": "10.2.3", + "requires": { + "@types/http-cache-semantics": "^4.0.1", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.0", + "keyv": "^4.5.2", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + } + }, + "got": { + "version": "12.5.3", + "requires": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.1", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + } + }, + "http2-wrapper": { + "version": "2.2.0", + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + } + }, + "lowercase-keys": { + "version": "3.0.0" + }, + "mimic-response": { + "version": "4.0.0" + }, + "normalize-url": { + "version": "8.0.0" + }, + "p-cancelable": { + "version": "3.0.0" + }, + "responselike": { + "version": "3.0.0", + "requires": { + "lowercase-keys": "^3.0.0" + } + } + } + }, + "pako": { + "version": "2.1.0" + }, + "param-case": { + "version": "3.0.4", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-duration": { + "version": "1.0.2" + }, + "parseurl": { + "version": "1.3.3" + }, + "pascal-case": { + "version": "3.1.2", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-browserify": { + "version": "1.0.1" + }, + "path-case": { + "version": "3.0.4", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-exists": { + "version": "2.1.0", + "optional": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1" + }, + "path-key": { + "version": "3.1.1" + }, + "path-parse": { + "version": "1.0.7" + }, + "path-scurry": { + "version": "1.9.2", + "dev": true, + "requires": { + "lru-cache": "^9.1.1", + "minipass": "^5.0.0 || ^6.0.2" + }, + "dependencies": { + "lru-cache": { + "version": "9.1.2", + "dev": true + }, + "minipass": { + "version": "6.0.2", + "dev": true + } + } + }, + "path-to-regexp": { + "version": "2.4.0", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "dev": true + }, + "peek-readable": { + "version": "5.0.0" + }, + "peer-id": { + "version": "0.16.0", + "requires": { + "class-is": "^1.1.0", + "libp2p-crypto": "^0.21.0", + "multiformats": "^9.4.5", + "protobufjs": "^6.10.2", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "pem-jwk": { + "version": "2.0.0", + "requires": { + "asn1.js": "^5.0.1" + } + }, + "pend": { + "version": "1.2.0", + "optional": true + }, + "performance-now": { + "version": "2.1.0", + "optional": true + }, + "picomatch": { + "version": "2.3.0" + }, + "pinkie": { + "version": "2.0.4", + "optional": true + }, + "pinkie-promise": { + "version": "2.0.1", + "optional": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pino": { + "version": "6.14.0", + "requires": { + "fast-redact": "^3.0.0", + "fast-safe-stringify": "^2.0.8", + "flatstr": "^1.0.12", + "pino-std-serializers": "^3.1.0", + "process-warning": "^1.0.0", + "quick-format-unescaped": "^4.0.3", + "sonic-boom": "^1.0.2" + } + }, + "pino-pretty": { + "version": "4.8.0", + "requires": { + "@hapi/bourne": "^2.0.0", + "args": "^5.0.1", + "chalk": "^4.0.0", + "dateformat": "^4.5.1", + "fast-safe-stringify": "^2.0.7", + "jmespath": "^0.15.0", + "joycon": "^2.2.5", + "pump": "^3.0.0", + "readable-stream": "^3.6.0", + "rfdc": "^1.3.0", + "split2": "^3.1.1", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "split2": { + "version": "3.2.2", + "requires": { + "readable-stream": "^3.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "pino-std-serializers": { + "version": "3.2.0" + }, + "pirates": { + "version": "4.0.5", + "dev": true + }, + "pkijs": { + "version": "3.0.8", + "requires": { + "asn1js": "^3.0.5", + "bytestreamjs": "^2.0.0", + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + } + }, + "platform": { + "version": "1.3.6" + }, + "pluralize": { + "version": "8.0.0", + "dev": true + }, + "portfinder": { + "version": "1.0.28", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "pretty-bytes": { + "version": "6.1.0" + }, + "pretty-format": { + "version": "27.5.1", + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0" + } + } + }, + "private-ip": { + "version": "2.3.3", + "requires": { + "ip-regex": "^4.3.0", + "ipaddr.js": "^2.0.1", + "is-ip": "^3.1.0", + "netmask": "^2.0.2" + }, + "dependencies": { + "ipaddr.js": { + "version": "2.0.1" + } + } + }, + "process": { + "version": "0.11.10" + }, + "process-nextick-args": { + "version": "2.0.1" + }, + "process-warning": { + "version": "1.0.0" + }, + "progress": { + "version": "2.0.3" + }, + "progress-stream": { + "version": "1.2.0", + "optional": true, + "requires": { + "speedometer": "~0.1.2", + "through2": "~0.2.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "optional": true + }, + "readable-stream": { + "version": "1.1.14", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "optional": true + }, + "through2": { + "version": "0.2.3", + "optional": true, + "requires": { + "readable-stream": "~1.1.9", + "xtend": "~2.1.1" + } + }, + "xtend": { + "version": "2.1.2", + "optional": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "prom-client": { + "version": "14.1.1", + "requires": { + "tdigest": "^0.1.1" + } + }, + "promise": { + "version": "1.3.0", + "requires": { + "is-promise": "~1" + } + }, + "prompts": { + "version": "2.4.2", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "proper-lockfile": { + "version": "4.1.2", + "requires": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "proto-list": { + "version": "1.2.4" + }, + "protobufjs": { + "version": "6.11.2", + "requires": { + "@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.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + } + }, + "protocol-buffers-schema": { + "version": "3.6.0" + }, + "protons": { + "version": "1.2.1", + "requires": { + "buffer": "^5.5.0", + "protocol-buffers-schema": "^3.3.1", + "signed-varint": "^2.0.1", + "varint": "^5.0.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "varint": { + "version": "5.0.2" + } + } + }, + "protons-runtime": { + "version": "4.0.1", + "requires": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.3.2" + }, + "dependencies": { + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.1.2", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + } + } + }, + "proxy-addr": { + "version": "2.0.7", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "forwarded": { + "version": "0.2.0" + } + } + }, + "prr": { + "version": "1.0.1" + }, + "pseudomap": { + "version": "1.0.2", + "optional": true + }, + "psl": { + "version": "1.9.0", + "optional": true + }, + "pump": { + "version": "3.0.0", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1" + }, + "pupa": { + "version": "3.1.0", + "requires": { + "escape-goat": "^4.0.0" + } + }, + "pvtsutils": { + "version": "1.3.2", + "requires": { + "tslib": "^2.4.0" + } + }, + "pvutils": { + "version": "1.1.3" + }, + "qs": { + "version": "6.11.0", + "requires": { + "side-channel": "^1.0.4" + } + }, + "querystring": { + "version": "0.2.1", + "dev": true + }, + "queue": { + "version": "6.0.2", + "requires": { + "inherits": "~2.0.3" + } + }, + "queue-microtask": { + "version": "1.2.3" + }, + "quick-format-unescaped": { + "version": "4.0.4" + }, + "quick-lru": { + "version": "5.1.1" + }, + "rabin-wasm": { + "version": "0.1.5", + "requires": { + "@assemblyscript/loader": "^0.9.4", + "bl": "^5.0.0", + "debug": "^4.3.1", + "minimist": "^1.2.5", + "node-fetch": "^2.6.1", + "readable-stream": "^3.6.0" + } + }, + "randombytes": { + "version": "2.1.0", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1" + }, + "rate-limiter-flexible": { + "version": "2.4.1" + }, + "raw-body": { + "version": "2.5.1", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "rc": { + "version": "1.2.8", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1" + } + } + }, + "react-is": { + "version": "17.0.2" + }, + "react-native-fetch-api": { + "version": "3.0.0", + "requires": { + "p-defer": "^3.0.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readable-web-to-node-stream": { + "version": "3.0.2", + "requires": { + "readable-stream": "^3.6.0" + } + }, + "readdirp": { + "version": "3.6.0", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "receptacle": { + "version": "1.3.2", + "requires": { + "ms": "^2.1.1" + } + }, + "rechoir": { + "version": "0.8.0", + "dev": true, + "requires": { + "resolve": "^1.20.0" + } + }, + "reflect-metadata": { + "version": "0.1.13" + }, + "regenerator-runtime": { + "version": "0.13.11", + "dev": true + }, + "registry-auth-token": { + "version": "5.0.1", + "requires": { + "@pnpm/npm-conf": "^1.0.4" + } + }, + "registry-url": { + "version": "6.0.1", + "requires": { + "rc": "1.2.8" + } + }, + "repeat-string": { + "version": "1.6.1", + "dev": true + }, + "request": { + "version": "2.88.2", + "optional": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "form-data": { + "version": "2.3.3", + "optional": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "qs": { + "version": "6.5.3", + "optional": true + } + } + }, + "require-directory": { + "version": "2.1.1" + }, + "require-from-string": { + "version": "2.0.2", + "dev": true + }, + "requires-port": { + "version": "1.0.0" + }, + "resolve": { + "version": "1.20.0", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-alpn": { + "version": "1.2.1" + }, + "resolve-cwd": { + "version": "3.0.0", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "dev": true + } + } + }, + "resolve-from": { + "version": "4.0.0", + "dev": true + }, + "resolve.exports": { + "version": "1.1.0" + }, + "restore-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "retimer": { + "version": "3.0.0" + }, + "retry": { + "version": "0.12.0" + }, + "rfdc": { + "version": "1.3.0" + }, + "rimraf": { + "version": "3.0.2", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rpc-utils": { + "version": "0.6.2", + "requires": { + "nanoid": "^3.3.1" + } + }, + "rsa-pem-to-jwk": { + "version": "1.1.3", + "requires": { + "object-assign": "^2.0.0", + "rsa-unpack": "0.0.6" + }, + "dependencies": { + "object-assign": { + "version": "2.1.1" + } + } + }, + "rsa-unpack": { + "version": "0.0.6", + "requires": { + "optimist": "~0.3.5" + } + }, + "run-async": { + "version": "2.4.1", + "dev": true + }, + "run-parallel-limit": { + "version": "1.1.0", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "7.8.1", + "requires": { + "tslib": "^2.1.0" + } + }, + "safe-buffer": { + "version": "5.2.1" + }, + "safer-buffer": { + "version": "2.1.2" + }, + "sanitize-filename": { + "version": "1.6.3", + "requires": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "sax": { + "version": "1.2.4" + }, + "schema-utils": { + "version": "3.2.0", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "scrypt-js": { + "version": "3.0.1" + }, + "secp256k1": { + "version": "4.0.3", + "requires": { + "elliptic": "^6.5.4", + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" + } + }, + "secure-compare": { + "version": "3.0.1" + }, + "semver": { + "version": "7.3.8", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-diff": { + "version": "4.0.0", + "requires": { + "semver": "^7.3.5" + } + }, + "send": { + "version": "0.18.0", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0" + } + } + }, + "ms": { + "version": "2.1.3" + } + } + }, + "sentence-case": { + "version": "3.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "serialize-javascript": { + "version": "6.0.1", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-static": { + "version": "1.15.0", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-blocking": { + "version": "2.0.0" + }, + "set-delayed-interval": { + "version": "1.0.0" + }, + "setprototypeof": { + "version": "1.2.0" + }, + "sha.js": { + "version": "2.4.11", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "2.0.0", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0" + }, + "shelljs": { + "version": "0.8.5", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "dependencies": { + "interpret": { + "version": "1.4.0", + "dev": true + }, + "rechoir": { + "version": "0.6.2", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + } + } + }, + "side-channel": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7" + }, + "signed-varint": { + "version": "2.0.1", + "requires": { + "varint": "~5.0.0" + }, + "dependencies": { + "varint": { + "version": "5.0.2" + } + } + }, + "single-line-log": { + "version": "1.1.2", + "optional": true, + "requires": { + "string-width": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "optional": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "optional": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "sisteransi": { + "version": "1.0.5", + "dev": true + }, + "slash": { + "version": "3.0.0" + }, + "smart-buffer": { + "version": "4.2.0" + }, + "snake-case": { + "version": "3.0.4", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "socket.io": { + "version": "4.6.0", + "requires": { + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "debug": "~4.3.2", + "engine.io": "~6.4.0", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.1" + } + }, + "socket.io-adapter": { + "version": "2.5.2", + "requires": { + "ws": "~8.11.0" + } + }, + "socket.io-client": { + "version": "4.5.4", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.2.3", + "socket.io-parser": "~4.2.1" + } + }, + "socket.io-parser": { + "version": "4.2.1", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + } + }, + "socks": { + "version": "2.6.1", + "requires": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + } + }, + "socks-proxy-agent": { + "version": "5.0.1", + "requires": { + "agent-base": "^6.0.2", + "debug": "4", + "socks": "^2.3.3" + } + }, + "sonic-boom": { + "version": "1.4.1", + "requires": { + "atomic-sleep": "^1.0.0", + "flatstr": "^1.0.12" + } + }, + "sort-keys": { + "version": "5.0.0", + "requires": { + "is-plain-obj": "^4.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "4.1.0" + } + } + }, + "source-map": { + "version": "0.6.1" + }, + "source-map-support": { + "version": "0.5.21", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.2" + } + } + }, + "sparse-array": { + "version": "1.3.2" + }, + "speedometer": { + "version": "0.1.4", + "optional": true + }, + "split2": { + "version": "2.2.0", + "optional": true, + "requires": { + "through2": "^2.0.2" + } + }, + "sprintf-js": { + "version": "1.1.2" + }, + "sshpk": { + "version": "1.17.0", + "optional": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "dependencies": { + "jsbn": { + "version": "0.1.1", + "optional": true + } + } + }, + "stack-utils": { + "version": "2.0.6", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "dev": true + } + } + }, + "statuses": { + "version": "2.0.1" + }, + "stream-browserify": { + "version": "3.0.0", + "requires": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "stream-to-it": { + "version": "0.2.4", + "requires": { + "get-iterator": "^1.0.2" + } + }, + "streamsearch": { + "version": "1.1.0" + }, + "string_decoder": { + "version": "1.3.0", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-length": { + "version": "4.0.2", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-replace-loader": { + "version": "3.1.0", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "strip-ansi": { + "version": "6.0.1", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0" + }, + "strip-json-comments": { + "version": "3.1.1" + }, + "strtok3": { + "version": "7.0.0", + "requires": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^5.0.0" + } + }, + "sumchecker": { + "version": "1.3.1", + "optional": true, + "requires": { + "debug": "^2.2.0", + "es6-promise": "^4.0.5" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + } + } + }, + "super-regex": { + "version": "0.2.0", + "requires": { + "clone-regexp": "^3.0.0", + "function-timeout": "^0.1.0", + "time-span": "^5.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "requires": { + "has-flag": "^3.0.0" + } + }, + "symbol-observable": { + "version": "4.0.0", + "dev": true + }, + "tapable": { + "version": "2.2.1" + }, + "tar": { + "version": "6.1.13", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^4.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4" + } + } + }, + "tdigest": { + "version": "0.1.2", + "requires": { + "bintrees": "1.0.2" + } + }, + "temp-dir": { + "version": "2.0.0", + "peer": true + }, + "temp-write": { + "version": "5.0.0", + "peer": true, + "requires": { + "graceful-fs": "^4.2.6", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "uuid": "^8.3.2" + }, + "dependencies": { + "uuid": { + "version": "8.3.2", + "peer": true + } + } + }, + "terser": { + "version": "5.18.0", + "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "acorn": { + "version": "8.8.2" + }, + "commander": { + "version": "2.20.3" + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.9", + "requires": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0" + }, + "jest-worker": { + "version": "27.5.1", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "test-exclude": { + "version": "6.0.0", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "throttleit": { + "version": "0.0.2", + "optional": true + }, + "through": { + "version": "2.3.8", + "dev": true + }, + "through2": { + "version": "2.0.5", + "optional": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "optional": true + }, + "string_decoder": { + "version": "1.1.1", + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "thunky": { + "version": "1.1.0" + }, + "time-span": { + "version": "5.1.0", + "requires": { + "convert-hrtime": "^5.0.0" + } + }, + "timeout-abort-controller": { + "version": "3.0.0", + "requires": { + "retimer": "^3.0.0" + } + }, + "timestamp-nano": { + "version": "1.0.1" + }, + "tmp": { + "version": "0.2.1", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, + "tmpl": { + "version": "1.0.5" + }, + "to-fast-properties": { + "version": "2.0.0", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1" + }, + "token-types": { + "version": "5.0.1", + "requires": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + } + }, + "tough-cookie": { + "version": "2.5.0", + "optional": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "0.0.3" + }, + "tree-kill": { + "version": "1.2.2", + "dev": true + }, + "truncate-utf8-bytes": { + "version": "1.0.2", + "requires": { + "utf8-byte-length": "^1.0.1" + } + }, + "ts-jest": { + "version": "29.0.5", + "dev": true, + "requires": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "dependencies": { + "json5": { + "version": "2.2.3", + "dev": true + }, + "yargs-parser": { + "version": "21.1.1", + "dev": true + } + } + }, + "ts-jest-resolver": { + "version": "2.0.0", + "requires": { + "jest-resolve": "^27.2.5" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "@types/yargs": { + "version": "16.0.5", + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0" + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "jest-haste-map": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-regex-util": { + "version": "27.5.1" + }, + "jest-resolve": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + } + }, + "jest-util": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "jest-validate": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + } + }, + "jest-worker": { + "version": "27.5.1", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "leven": { + "version": "3.1.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "ts-loader": { + "version": "9.4.2", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "ts-node": { + "version": "10.9.1", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "dependencies": { + "acorn": { + "version": "8.8.1", + "dev": true + } + } + }, + "tsconfig-paths-webpack-plugin": { + "version": "4.0.1", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.7.0", + "tsconfig-paths": "^4.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "json5": { + "version": "2.2.3", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "requires": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + } + } + }, + "tslib": { + "version": "2.5.3" + }, + "tunnel-agent": { + "version": "0.6.0", + "optional": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "optional": true + }, + "type-detect": { + "version": "4.0.8", + "dev": true + }, + "type-fest": { + "version": "2.19.0" + }, + "type-is": { + "version": "1.6.18", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.9.5", + "dev": true + }, + "uid": { + "version": "2.0.2", + "requires": { + "@lukeed/csprng": "^1.0.0" + } + }, + "uint8-varint": { + "version": "1.0.4", + "requires": { + "byte-access": "^1.0.0", + "longbits": "^1.1.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "uint8arraylist": { + "version": "2.4.2", + "requires": { + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "uint8arrays": { + "version": "3.0.0", + "requires": { + "multiformats": "^9.4.2" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "unbox-primitive": { + "version": "1.0.1", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "undici": { + "version": "5.12.0", + "peer": true, + "requires": { + "busboy": "^1.6.0" + } + }, + "union": { + "version": "0.5.0", + "requires": { + "qs": "^6.4.0" + } + }, + "unique-string": { + "version": "3.0.0", + "requires": { + "crypto-random-string": "^4.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "dev": true + }, + "unpipe": { + "version": "1.0.0" + }, + "update-notifier": { + "version": "6.0.2", + "requires": { + "boxen": "^7.0.0", + "chalk": "^5.0.1", + "configstore": "^6.0.0", + "has-yarn": "^3.0.0", + "import-lazy": "^4.0.0", + "is-ci": "^3.0.1", + "is-installed-globally": "^0.4.0", + "is-npm": "^6.0.0", + "is-yarn-global": "^0.4.0", + "latest-version": "^7.0.0", + "pupa": "^3.1.0", + "semver": "^7.3.7", + "semver-diff": "^4.0.0", + "xdg-basedir": "^5.1.0" + }, + "dependencies": { + "chalk": { + "version": "5.1.2" + }, + "is-ci": { + "version": "3.0.1", + "requires": { + "ci-info": "^3.2.0" + } + } + } + }, + "upper-case": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "upper-case-first": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "uri-js": { + "version": "4.4.1", + "requires": { + "punycode": "^2.1.0" + } + }, + "url-join": { + "version": "2.0.5" + }, + "ursa-optional": { + "version": "0.10.2", + "requires": { + "bindings": "^1.5.0", + "nan": "^2.14.2" + } + }, + "utf8-byte-length": { + "version": "1.0.4" + }, + "util": { + "version": "0.12.4", + "requires": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "safe-buffer": "^5.1.2", + "which-typed-array": "^1.1.2" + } + }, + "util-deprecate": { + "version": "1.0.2" + }, + "utils-merge": { + "version": "1.0.1" + }, + "uuid": { + "version": "3.4.0", + "optional": true + }, + "v8-compile-cache-lib": { + "version": "3.0.1", + "dev": true + }, + "v8-to-istanbul": { + "version": "9.0.1", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + } + }, + "validator": { + "version": "13.7.0" + }, + "varint": { + "version": "6.0.0" + }, + "varint-decoder": { + "version": "1.0.0", + "requires": { + "varint": "^5.0.0" + }, + "dependencies": { + "varint": { + "version": "5.0.2" + } + } + }, + "vary": { + "version": "1.1.2" + }, + "verror": { + "version": "1.10.0", + "optional": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "wait-for-expect": { + "version": "3.0.2", + "dev": true + }, + "walker": { + "version": "1.0.8", + "requires": { + "makeerror": "1.0.12" + } + }, + "watchpack": { + "version": "2.4.0", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wcwidth": { + "version": "1.0.1", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webcrypto-core": { + "version": "1.7.7", + "requires": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "asn1js": "^3.0.1", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "webidl-conversions": { + "version": "3.0.1" + }, + "webpack": { + "version": "5.75.0", + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "dependencies": { + "acorn": { + "version": "8.8.2" + }, + "acorn-import-assertions": { + "version": "1.8.0", + "requires": {} + } + } + }, + "webpack-cli": { + "version": "5.0.1", + "dev": true, + "requires": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.0.1", + "@webpack-cli/info": "^2.0.1", + "@webpack-cli/serve": "^2.0.1", + "colorette": "^2.0.14", + "commander": "^9.4.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "dependencies": { + "colorette": { + "version": "2.0.19", + "dev": true + }, + "commander": { + "version": "9.5.0", + "dev": true + } + } + }, + "webpack-merge": { + "version": "5.8.0", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-node-externals": { + "version": "3.0.0", + "dev": true + }, + "webpack-sources": { + "version": "3.2.3" + }, + "whatwg-url": { + "version": "5.0.0", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "which": { + "version": "2.0.2", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.7", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.7" + }, + "dependencies": { + "es-abstract": { + "version": "1.19.1", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "object-keys": { + "version": "1.1.1" + } + } + }, + "wide-align": { + "version": "1.1.5", + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "widest-line": { + "version": "4.0.1", + "requires": { + "string-width": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1" + }, + "emoji-regex": { + "version": "9.2.2" + }, + "string-width": { + "version": "5.1.2", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.0.1", + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "wildcard": { + "version": "2.0.0", + "dev": true + }, + "windows-release": { + "version": "4.0.0", + "dev": true, + "requires": { + "execa": "^4.0.2" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "dev": true + } + } + }, + "wordwrap": { + "version": "0.0.3" + }, + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + } + } + }, + "wrappy": { + "version": "1.0.2" + }, + "write-file-atomic": { + "version": "3.0.3", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "wrtc": { + "version": "0.4.7", + "optional": true, + "requires": { + "domexception": "^1.0.1", + "node-pre-gyp": "^0.13.0" + } + }, + "ws": { + "version": "8.11.0", + "requires": {} + }, + "xdg-basedir": { + "version": "5.1.0" + }, + "xml2js": { + "version": "0.4.23", + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + } + }, + "xmlbuilder": { + "version": "11.0.1" + }, + "xmlhttprequest-ssl": { + "version": "2.0.0" + }, + "xsalsa20": { + "version": "1.2.0" + }, + "xtend": { + "version": "4.0.2" + }, + "y18n": { + "version": "5.0.8" + }, + "yallist": { + "version": "4.0.0" + }, + "yaml": { + "version": "1.10.2", + "dev": true + }, + "yargs": { + "version": "17.6.2", + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "dependencies": { + "yargs-parser": { + "version": "21.1.1" + } + } + }, + "yargs-parser": { + "version": "20.2.9" + }, + "yauzl": { + "version": "2.10.0", + "optional": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "yn": { + "version": "3.1.1", + "dev": true + }, + "yocto-queue": { + "version": "1.0.0" + } + } } diff --git a/packages/backend/src/nest/connections-manager/connections-manager.service.ts b/packages/backend/src/nest/connections-manager/connections-manager.service.ts index 8dd6b55be5..9fd183f92f 100644 --- a/packages/backend/src/nest/connections-manager/connections-manager.service.ts +++ b/packages/backend/src/nest/connections-manager/connections-manager.service.ts @@ -288,8 +288,11 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI if (!(await this.localDbService.get('psk'))) { const psk = new Uint8Array(95) generateKey(psk) - console.log('Saving psk', psk) + console.log('Saving psk') await this.localDbService.put('psk', psk) + const pskBase64 = uint8ArrayToString(psk, 'base64') + console.log('psk base64', pskBase64) + this.serverIoProvider.io.emit(SocketActionTypes.PSK, { psk: pskBase64 }) } await this.launchCommunity(payload) diff --git a/packages/backend/src/nest/socket/socket.service.ts b/packages/backend/src/nest/socket/socket.service.ts index 5d687fe2a2..02b3be93ae 100644 --- a/packages/backend/src/nest/socket/socket.service.ts +++ b/packages/backend/src/nest/socket/socket.service.ts @@ -207,6 +207,10 @@ export class SocketService extends EventEmitter implements OnModuleInit { this.logger('Leaving community') this.emit(SocketActionTypes.LEAVE_COMMUNITY) }) + socket.on(SocketActionTypes.PSK, payload => { + this.logger('Saving PSK', payload) + this.emit(SocketActionTypes.PSK, payload) + }) }) } diff --git a/packages/common/src/invitationCode.test.ts b/packages/common/src/invitationCode.test.ts index 28254563bc..b093b153e3 100644 --- a/packages/common/src/invitationCode.test.ts +++ b/packages/common/src/invitationCode.test.ts @@ -1,3 +1,4 @@ +import { InvitationData } from '@quiet/types' import { argvInvitationCode, invitationDeepUrl, @@ -5,7 +6,7 @@ import { pairsToInvitationShareUrl, retrieveInvitationCode, } from './invitationCode' -import { QUIET_JOIN_PAGE } from './static' +import { QUIET_JOIN_PAGE, Site } from './static' describe('Invitation code helper', () => { const peerId1 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA' @@ -14,10 +15,13 @@ describe('Invitation code helper', () => { const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' it('retrieves invitation code from argv', () => { - const expectedCodes = [ - { peerId: peerId1, onionAddress: address1 }, - { peerId: peerId2, onionAddress: address2 }, - ] + const expectedCodes: InvitationData = { + pairs: [ + { peerId: peerId1, onionAddress: address1 }, + { peerId: peerId2, onionAddress: address2 }, + ], + psk: '12345', + } const result = argvInvitationCode([ 'something', 'quiet:/invalid', @@ -31,19 +35,25 @@ describe('Invitation code helper', () => { it('builds proper invitation deep url', () => { expect( - invitationDeepUrl([ - { peerId: 'peerID1', onionAddress: 'address1' }, - { peerId: 'peerID2', onionAddress: 'address2' }, - ]) - ).toEqual('quiet://?peerID1=address1&peerID2=address2') + invitationDeepUrl({ + pairs: [ + { peerId: 'peerID1', onionAddress: 'address1' }, + { peerId: 'peerID2', onionAddress: 'address2' }, + ], + psk: '12345', + }) + ).toEqual(`quiet://?peerID1=address1&peerID2=address2&${Site.PSK_PARAM_KEY}=12345`) }) - it('creates invitation share url based on invitation pairs', () => { - const pairs = [ - { peerId: 'peerID1', onionAddress: 'address1' }, - { peerId: 'peerID2', onionAddress: 'address2' }, - ] - const expected = `${QUIET_JOIN_PAGE}#peerID1=address1&peerID2=address2` + it('creates invitation share url based on invitation data', () => { + const pairs: InvitationData = { + pairs: [ + { peerId: 'peerID1', onionAddress: 'address1' }, + { peerId: 'peerID2', onionAddress: 'address2' }, + ], + psk: '12345', + } + const expected = `${QUIET_JOIN_PAGE}#peerID1=address1&peerID2=address2&${Site.PSK_PARAM_KEY}=${pairs.psk}` expect(pairsToInvitationShareUrl(pairs)).toEqual(expected) }) @@ -53,23 +63,33 @@ describe('Invitation code helper', () => { 'invalidAddress', '/dns4/somethingElse.onion/tcp/443/wss/p2p/QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA', ] - expect(invitationShareUrl(peerList)).toEqual( - `${QUIET_JOIN_PAGE}#QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad&QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA=somethingElse` + const psk = 'L2tleS9zd2FybS9wc2svMS' + expect(invitationShareUrl(peerList, psk)).toEqual( + `${QUIET_JOIN_PAGE}#QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad&QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA=somethingElse&${Site.PSK_PARAM_KEY}=${psk}` ) }) it('retrieves invitation codes from deep url', () => { - const codes = retrieveInvitationCode(`quiet://?${peerId1}=${address1}&${peerId2}=${address2}`) - expect(codes).toEqual([ - { peerId: peerId1, onionAddress: address1 }, - { peerId: peerId2, onionAddress: address2 }, - ]) + const psk = 12345 + const codes = retrieveInvitationCode( + `quiet://?${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${psk}` + ) + expect(codes).toEqual({ + pairs: [ + { peerId: peerId1, onionAddress: address1 }, + { peerId: peerId2, onionAddress: address2 }, + ], + psk: psk, + }) }) it('retrieves invitation codes from deep url with partly invalid codes', () => { + const psk = '12345' const peerId2 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLs' const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' - const codes = retrieveInvitationCode(`quiet://?${peerId1}=${address1}&${peerId2}=${address2}}`) - expect(codes).toEqual([{ peerId: peerId1, onionAddress: address1 }]) + const codes = retrieveInvitationCode( + `quiet://?${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${psk}` + ) + expect(codes).toEqual({ pairs: [{ peerId: peerId1, onionAddress: address1 }], psk: psk }) }) }) diff --git a/packages/common/src/invitationCode.ts b/packages/common/src/invitationCode.ts index e5e6af26f7..eecc6a2b85 100644 --- a/packages/common/src/invitationCode.ts +++ b/packages/common/src/invitationCode.ts @@ -1,38 +1,53 @@ -import { InvitationPair } from '@quiet/types' -import { ONION_ADDRESS_REGEX, Site } from './static' +import { InvitationData, InvitationPair } from '@quiet/types' +import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, Site } from './static' import { createLibp2pAddress } from './libp2p' -export const retrieveInvitationCode = (url: string): InvitationPair[] => { + +export const retrieveInvitationCode = (url: string): InvitationData => { + // TODO: rename to parseDeepUrl? /** - * Extract invitation codes from deep url. - * Valid format: quiet://?=&= + * Extract invitation data from deep url. + * Valid format: quiet://?=&=&k= */ let data: URL try { data = new URL(url) } catch (e) { - return [] + console.error(`Could not retrieve invitation code from deep url ${url}. Reason: ${e.message}`) + throw e + } + if (!data || data.protocol !== 'quiet:') { + console.error(`Could not retrieve invitation code from deep url ${url}`) + throw new Error() } - if (!data || data.protocol !== 'quiet:') return [] const params = data.searchParams const codes: InvitationPair[] = [] - for (const [peerId, onionAddress] of params.entries()) { - if (!invitationCodeValid(peerId, onionAddress)) continue + const psk = params.get(Site.PSK_PARAM_KEY) + if (!psk) throw new Error(`No psk found in invitation code ${url}`) + + params.delete(Site.PSK_PARAM_KEY) + + params.forEach((peerId, onionAddress) => { + if (!invitationCodeValid(peerId, onionAddress)) return codes.push({ peerId, onionAddress, }) + }) + console.log('Retrieved data:', codes, psk) + return { + pairs: codes, + psk: psk, } - console.log('Retrieved codes:', codes) - return codes } -export const invitationShareUrl = (peers: string[] = []): string => { +export const invitationShareUrl = (peers: string[] = [], psk: string): string => { + // TODO: rename to 'composeInvitationShareUrl' /** * @arg {string[]} peers - List of peer's p2p addresses - * @returns {string} - Complete shareable invitation link, e.g. https://tryquiet.org/join/#=&= + * @returns {string} - Complete shareable invitation link, e.g. https://tryquiet.org/join/#=&=&k= */ console.log('Invitation share url, peers:', peers) - const pairs = [] + const pairs: InvitationPair[] = [] for (const peerAddress of peers) { let peerId: string let onionAddress: string @@ -54,11 +69,14 @@ export const invitationShareUrl = (peers: string[] = []): string => { continue } const rawAddress = onionAddress.endsWith('.onion') ? onionAddress.split('.')[0] : onionAddress - pairs.push(`${peerId}=${rawAddress}`) + pairs.push({ peerId: peerId, onionAddress: rawAddress }) } - console.log('invitationShareUrl', pairs.join('&')) - const url = new URL(`${Site.MAIN_PAGE}${Site.JOIN_PAGE}#${pairs.join('&')}`) + const _url = pairsToInvitationShareUrl({ pairs: pairs, psk: psk }) + + // const _url = `${Site.MAIN_PAGE}${Site.JOIN_PAGE}#${pairs.join('&')}&${psk}` + console.log('invitationShareUrl', _url) + const url = new URL(_url) return url.href } @@ -70,38 +88,49 @@ export const pairsToP2pAddresses = (pairs: InvitationPair[]): string[] => { return addresses } -export const pairsToInvitationShareUrl = (pairs: InvitationPair[]) => { +export const pairsToInvitationShareUrl = (data: InvitationData) => { const url = new URL(`${Site.MAIN_PAGE}${Site.JOIN_PAGE}`) - for (const pair of pairs) { + for (const pair of data.pairs) { url.searchParams.append(pair.peerId, pair.onionAddress) } + url.searchParams.append(Site.PSK_PARAM_KEY, data.psk) return url.href.replace('?', '#') } -export const invitationDeepUrl = (pairs: InvitationPair[] = []): string => { +export const invitationDeepUrl = (data: InvitationData): string => { + // TODO: rename to 'composeInvitationDeepUrl' + // TODO: refactor - unify with pairsToInvitationShareUrl const url = new URL('quiet://') - for (const pair of pairs) { + for (const pair of data.pairs) { url.searchParams.append(pair.peerId, pair.onionAddress) } + url.searchParams.append(Site.PSK_PARAM_KEY, data.psk) return url.href } -export const argvInvitationCode = (argv: string[]): InvitationPair[] => { +export const argvInvitationCode = (argv: string[]): InvitationData | null => { /** * Extract invitation codes from deep url if url is present in argv */ - let invitationCodes: InvitationPair[] = [] + let invitationData: InvitationData | null = null for (const arg of argv) { - invitationCodes = retrieveInvitationCode(arg) - if (invitationCodes.length > 0) { + try { + invitationData = retrieveInvitationCode(arg) + } catch (e) { + continue + } + if (invitationData.pairs.length > 0) { break + } else { + invitationData = null } } - return invitationCodes + return invitationData } export const invitationCodeValid = (peerId: string, onionAddress: string): boolean => { - if (!peerId.match(/^[a-zA-Z0-9]{46}$/g)) { + // TODO: rename to peerDataValid? + if (!peerId.match(PEER_ID_REGEX)) { // TODO: test it more properly e.g with PeerId.createFromB58String(peerId.trim()) console.log(`PeerId ${peerId} is not valid`) return false @@ -113,11 +142,18 @@ export const invitationCodeValid = (peerId: string, onionAddress: string): boole return true } -export const getInvitationPairs = (code: string) => { +export const getInvitationPairs = (code: string): InvitationData => { /** - * @param code =&= + * @param code =&=&k= */ - const pairs = code.split('&') + + // TODO: refactor - use parametrized retrieveInvitationCode instead + const elements = code.split('&') + if (elements.length <= 1) throw new Error(`Invitation link '${code}' has not enough data`) + const pairs = elements.slice(0, -1) + const psk = elements.slice(-1)[0] + + // TODO: Verify psk format const codes: InvitationPair[] = [] for (const pair of pairs) { const [peerId, address] = pair.split('=') @@ -128,5 +164,8 @@ export const getInvitationPairs = (code: string) => { onionAddress: address, }) } - return codes + return { + pairs: codes, + psk: psk, + } } diff --git a/packages/common/src/static.ts b/packages/common/src/static.ts index 05b1f35f0a..bac22f4f22 100644 --- a/packages/common/src/static.ts +++ b/packages/common/src/static.ts @@ -1,9 +1,11 @@ export const ONION_ADDRESS_REGEX = /^[a-z0-9]{56}$/g +export const PEER_ID_REGEX = /^[a-zA-Z0-9]{46}$/g export enum Site { DOMAIN = 'tryquiet.org', MAIN_PAGE = 'https://tryquiet.org/', JOIN_PAGE = 'join', + PSK_PARAM_KEY = 'k', } export const QUIET_JOIN_PAGE = `${Site.MAIN_PAGE}${Site.JOIN_PAGE}` diff --git a/packages/desktop/src/main/invitation.ts b/packages/desktop/src/main/invitation.ts index 39bf432962..2616059683 100644 --- a/packages/desktop/src/main/invitation.ts +++ b/packages/desktop/src/main/invitation.ts @@ -3,15 +3,15 @@ import path from 'path' import os from 'os' import { execSync } from 'child_process' import { BrowserWindow } from 'electron' -import { InvitationPair } from '@quiet/types' +import { InvitationData, InvitationPair } from '@quiet/types' -export const processInvitationCode = (mainWindow: BrowserWindow, codes: InvitationPair[]) => { - if (codes.length === 0) { +export const processInvitationCode = (mainWindow: BrowserWindow, data: InvitationData | null) => { + if (!data || data?.pairs.length === 0) { console.log('No valid invitation codes, not processing') return } mainWindow.webContents.send('invitation', { - codes, + data, }) } diff --git a/packages/desktop/src/main/main.test.ts b/packages/desktop/src/main/main.test.ts index 0239a05cd0..5af456527d 100644 --- a/packages/desktop/src/main/main.test.ts +++ b/packages/desktop/src/main/main.test.ts @@ -6,6 +6,7 @@ import { BrowserWindow, app, ipcMain, Menu } from 'electron' import { waitFor } from '@testing-library/dom' import path from 'path' import { invitationDeepUrl } from '@quiet/common' +import { InvitationData } from '@quiet/types' // eslint-disable-next-line const remote = require('@electron/remote/main') @@ -237,15 +238,20 @@ describe('other electron app events ', () => { }) describe('Invitation code', () => { - it('handles invitation code on open-url event (on macos)', async () => { - expect(mockAppOnCalls[2][0]).toBe('ready') - await mockAppOnCalls[2][1]() - const codes = [ + const codes: InvitationData = { + pairs: [ { peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', }, - ] + ], + psk: '12345', + } + + it('handles invitation code on open-url event (on macos)', async () => { + expect(mockAppOnCalls[2][0]).toBe('ready') + await mockAppOnCalls[2][1]() + expect(mockAppOnCalls[1][0]).toBe('open-url') const event = { preventDefault: () => {} } mockAppOnCalls[1][1](event, invitationDeepUrl(codes)) @@ -253,12 +259,6 @@ describe('Invitation code', () => { }) it('process invitation code on second-instance event', async () => { - const codes = [ - { - peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', - onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', - }, - ] await mockAppOnCalls[2][1]() const commandLine = ['/tmp/.mount_Quiet-TVQc6s/quiet', invitationDeepUrl(codes)] expect(mockAppOnCalls[0][0]).toBe('second-instance') diff --git a/packages/desktop/src/main/main.ts b/packages/desktop/src/main/main.ts index b8c20310f4..b6efd97cae 100644 --- a/packages/desktop/src/main/main.ts +++ b/packages/desktop/src/main/main.ts @@ -147,7 +147,7 @@ app.on('open-url', (event, url) => { event.preventDefault() if (mainWindow) { invitationUrl = null - const invitationCode = retrieveInvitationCode(url) + const invitationCode = retrieveInvitationCode(url) // TODO: handle thrown error processInvitationCode(mainWindow, invitationCode) } }) @@ -474,12 +474,12 @@ app.on('ready', async () => { throw new Error(`mainWindow is on unexpected type ${mainWindow}`) } if (process.platform === 'darwin' && invitationUrl) { - const invitationCode = retrieveInvitationCode(invitationUrl) + const invitationCode = retrieveInvitationCode(invitationUrl) // TODO: handle thrown error processInvitationCode(mainWindow, invitationCode) invitationUrl = null } if (process.platform !== 'darwin' && process.argv) { - const invitationCode = argvInvitationCode(process.argv) + const invitationCode = argvInvitationCode(process.argv) // TODO: handle thrown error? processInvitationCode(mainWindow, invitationCode) } diff --git a/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx b/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx index 590c156805..6aa9bbdcb8 100644 --- a/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx +++ b/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx @@ -1,8 +1,8 @@ import React, { useEffect, useState } from 'react' import { useDispatch, useSelector } from 'react-redux' import { socketSelectors } from '../../../sagas/socket/socket.selectors' -import { CommunityOwnership, CreateNetworkPayload, InvitationPair } from '@quiet/types' -import { communities, identity, connection } from '@quiet/state-manager' +import { CommunityOwnership, CreateNetworkPayload, InvitationData, InvitationPair } from '@quiet/types' +import { communities, identity, connection, network } from '@quiet/state-manager' import PerformCommunityActionComponent from '../../../components/CreateJoinCommunity/PerformCommunityActionComponent' import { ModalName } from '../../../sagas/modals/modals.types' import { useModal } from '../../../containers/hooks' @@ -15,7 +15,9 @@ const JoinCommunity = () => { const currentCommunity = useSelector(communities.selectors.currentCommunity) const currentIdentity = useSelector(identity.selectors.currentIdentity) - const invitationCode = useSelector(communities.selectors.invitationCodes) + const invitationCodes = useSelector(communities.selectors.invitationCodes) + console.log('PSK SELECTOR', communities.selectors.psk) + const psk = useSelector(communities.selectors.psk) const joinCommunityModal = useModal(ModalName.joinCommunityModal) const createCommunityModal = useModal(ModalName.createCommunityModal) @@ -68,7 +70,8 @@ const JoinCommunity = () => { hasReceivedResponse={Boolean(currentIdentity && !currentIdentity.userCertificate)} revealInputValue={revealInputValue} handleClickInputReveal={handleClickInputReveal} - invitationCode={invitationCode} + invitationCode={invitationCodes} + psk={psk} /> ) } diff --git a/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx b/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx index 3ec4ac037f..692a7984d1 100644 --- a/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx +++ b/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx @@ -12,7 +12,7 @@ import { LoadingButton } from '../ui/LoadingButton/LoadingButton' import { CreateCommunityDictionary, JoinCommunityDictionary } from '../CreateJoinCommunity/community.dictionary' -import { CommunityOwnership, InvitationPair } from '@quiet/types' +import { CommunityOwnership, InvitationData, InvitationPair } from '@quiet/types' import { Controller, useForm } from 'react-hook-form' import { TextInput } from '../../forms/components/textInput' @@ -138,6 +138,7 @@ export interface PerformCommunityActionProps { revealInputValue?: boolean handleClickInputReveal?: () => void invitationCode?: InvitationPair[] + psk?: string } export const PerformCommunityActionComponent: React.FC = ({ @@ -152,6 +153,7 @@ export const PerformCommunityActionComponent: React.FC { const [formSent, setFormSent] = useState(false) @@ -190,14 +192,20 @@ export const PerformCommunityActionComponent: React.FC { - if (communityOwnership === CommunityOwnership.User && invitationCode?.length) { + if (communityOwnership === CommunityOwnership.User && invitationCode?.length && psk) { setFormSent(true) - setValue('name', pairsToInvitationShareUrl(invitationCode)) + setValue('name', pairsToInvitationShareUrl({ pairs: invitationCode, psk: psk })) } }, [communityOwnership, invitationCode]) diff --git a/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx b/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx index 4b3e96a4bc..4393ea6bc0 100644 --- a/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx @@ -12,16 +12,19 @@ import { Typography } from '@mui/material' import { QRCodeComponent } from './Tabs/QRCode/QRCode.component' import { pairsToInvitationShareUrl } from '@quiet/common' -const invitationLink = pairsToInvitationShareUrl([ - { - peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', - onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', - }, - { - peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', - onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', - }, -]) +const invitationLink = pairsToInvitationShareUrl({ + pairs: [ + { + peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', + onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', + }, + { + peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', + onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', + }, + ], + psk: '12345', +}) const Template: ComponentStory = args => { return diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx index abdd1b2118..a7a59d4f80 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx @@ -6,24 +6,27 @@ import { pairsToInvitationShareUrl } from '@quiet/common' describe('CopyLink', () => { it('renderComponent - hidden long link', () => { - const invitationLink = pairsToInvitationShareUrl([ - { - peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', - onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', - }, - { - peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', - onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', - }, - { - peerId: 'QmXRY4rhAx8Muq8dMGkr9qknJdE6UHZDdGaDRTQEbwFN5b', - onionAddress: '6vu2bxki777it3cpayv6fq6vpl4ke3kzj7gxicfygm55dhhtphyfdvyd', - }, - { - peerId: 'QmT18UvnUBkseMc3SqnfPxpHwN8nzLrJeNSLZtc8rAFXhz', - onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', - }, - ]) + const invitationLink = pairsToInvitationShareUrl({ + pairs: [ + { + peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', + onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', + }, + { + peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', + onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', + }, + { + peerId: 'QmXRY4rhAx8Muq8dMGkr9qknJdE6UHZDdGaDRTQEbwFN5b', + onionAddress: '6vu2bxki777it3cpayv6fq6vpl4ke3kzj7gxicfygm55dhhtphyfdvyd', + }, + { + peerId: 'QmT18UvnUBkseMc3SqnfPxpHwN8nzLrJeNSLZtc8rAFXhz', + onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', + }, + ], + psk: '123435', + }) const result = renderComponent( ) @@ -124,12 +127,15 @@ describe('CopyLink', () => { }) it('renderComponent - revealed short link', () => { - const invitationLink = pairsToInvitationShareUrl([ - { - peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', - onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', - }, - ]) + const invitationLink = pairsToInvitationShareUrl({ + pairs: [ + { + peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', + onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', + }, + ], + psk: '12345', + }) const result = renderComponent( ) diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx index a3d1a92354..856dd94a8a 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx @@ -10,24 +10,27 @@ const Template: ComponentStory = args => { export const Component = Template.bind({}) let revealInputValue = true -const invitationLink = pairsToInvitationShareUrl([ - { - peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', - onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', - }, - { - peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', - onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', - }, - { - peerId: 'QmXRY4rhAx8Muq8dMGkr9qknJdE6UHZDdGaDRTQEbwFN5b', - onionAddress: '6vu2bxki777it3cpayv6fq6vpl4ke3kzj7gxicfygm55dhhtphyfdvyd', - }, - { - peerId: 'QmT18UvnUBkseMc3SqnfPxpHwN8nzLrJeNSLZtc8rAFXhz', - onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', - }, -]) +const invitationLink = pairsToInvitationShareUrl({ + pairs: [ + { + peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', + onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', + }, + { + peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', + onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', + }, + { + peerId: 'QmXRY4rhAx8Muq8dMGkr9qknJdE6UHZDdGaDRTQEbwFN5b', + onionAddress: '6vu2bxki777it3cpayv6fq6vpl4ke3kzj7gxicfygm55dhhtphyfdvyd', + }, + { + peerId: 'QmT18UvnUBkseMc3SqnfPxpHwN8nzLrJeNSLZtc8rAFXhz', + onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', + }, + ], + psk: '12345', +}) const args: InviteComponentProps = { invitationLink: invitationLink, revealInputValue: revealInputValue, diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx index 3467e94dd3..1a089dd2eb 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx @@ -5,16 +5,19 @@ import { withTheme } from '../../../../storybook/decorators' import QRCodeComponent, { QRCodeProps } from './QRCode.component' import { pairsToInvitationShareUrl } from '@quiet/common' -const invitationLink = pairsToInvitationShareUrl([ - { - peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', - onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', - }, - { - peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', - onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', - }, -]) +const invitationLink = pairsToInvitationShareUrl({ + pairs: [ + { + peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', + onionAddress: 'p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad', + }, + { + peerId: 'Qmd2Un9AynokZrcZGsMuaqgupTtidHGQnUkNVfFFAef97C', + onionAddress: 'vnywuiyl7p7ig2murcscdyzksko53e4k3dpdm2yoopvvu25p6wwjqbad', + }, + ], + psk: '12345', +}) const Template: ComponentStory = args => { return diff --git a/packages/desktop/src/renderer/components/Sidebar/IdentityPanel/IdentityPanel.test.tsx b/packages/desktop/src/renderer/components/Sidebar/IdentityPanel/IdentityPanel.test.tsx index 974a194bcb..d50aaaeb9f 100644 --- a/packages/desktop/src/renderer/components/Sidebar/IdentityPanel/IdentityPanel.test.tsx +++ b/packages/desktop/src/renderer/components/Sidebar/IdentityPanel/IdentityPanel.test.tsx @@ -1,9 +1,10 @@ import React from 'react' -import { getFactory, Community, communities } from '@quiet/state-manager' +import { getFactory, communities } from '@quiet/state-manager' import { IdentityPanel } from './IdentityPanel' import { prepareStore } from '../../../testUtils/prepareStore' import { renderComponent } from '../../../testUtils/renderComponent' +import { type Community } from '@quiet/types' describe('IdentityPanel', () => { it('renders component with username', async () => { diff --git a/packages/desktop/src/renderer/index.tsx b/packages/desktop/src/renderer/index.tsx index a3a1ecc0b5..07f5a3a222 100644 --- a/packages/desktop/src/renderer/index.tsx +++ b/packages/desktop/src/renderer/index.tsx @@ -6,6 +6,7 @@ import Root, { persistor } from './Root' import store from './store' import updateHandlers from './store/handlers/update' import { communities } from '@quiet/state-manager' +import { InvitationData } from '@quiet/types' if (window && process.env.DEBUG) { window.localStorage.setItem('debug', process.env.DEBUG) @@ -20,9 +21,10 @@ ipcRenderer.on('force-save-state', async _event => { ipcRenderer.send('state-saved') }) -ipcRenderer.on('invitation', (_event, invitation) => { - console.log('invitation', invitation, 'dispatching action') - store.dispatch(communities.actions.handleInvitationCodes(invitation.codes)) +ipcRenderer.on('invitation', (_event, invitation: { data: InvitationData }) => { + if (!invitation.data) return + console.log('invitation', invitation.data, 'dispatching action') + store.dispatch(communities.actions.handleInvitationCodes(invitation.data)) }) const container = document.getElementById('root') diff --git a/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.test.ts b/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.test.ts index d95c7fd035..f38d04d11f 100644 --- a/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.test.ts +++ b/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.test.ts @@ -1,5 +1,5 @@ import { communities, getFactory, Store } from '@quiet/state-manager' -import { Community, CommunityOwnership, CreateNetworkPayload, InvitationPair } from '@quiet/types' +import { Community, CommunityOwnership, CreateNetworkPayload, InvitationData } from '@quiet/types' import { FactoryGirl } from 'factory-girl' import { expectSaga } from 'redux-saga-test-plan' import { handleInvitationCodeSaga } from './handleInvitationCode.saga' @@ -13,7 +13,7 @@ describe('Handle invitation code', () => { let store: Store let factory: FactoryGirl let community: Community - let validInvitationPair: InvitationPair[] + let validInvitationData: InvitationData beforeEach(async () => { store = ( @@ -26,20 +26,24 @@ describe('Handle invitation code', () => { ).store factory = await getFactory(store) - validInvitationPair = [ - { - onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', - peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', - }, - ] + validInvitationData = { + pairs: [ + { + onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', + peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', + }, + ], + psk: '', + } }) it('creates network if code is valid', async () => { const payload: CreateNetworkPayload = { ownership: CommunityOwnership.User, - peers: validInvitationPair, + peers: validInvitationData.pairs, + psk: validInvitationData.psk, } - await expectSaga(handleInvitationCodeSaga, communities.actions.handleInvitationCodes(validInvitationPair)) + await expectSaga(handleInvitationCodeSaga, communities.actions.handleInvitationCodes(validInvitationData)) .withState(store.getState()) .put(communities.actions.createNetwork(payload)) .run() @@ -49,10 +53,11 @@ describe('Handle invitation code', () => { community = await factory.create['payload']>('Community') const payload: CreateNetworkPayload = { ownership: CommunityOwnership.User, - peers: validInvitationPair, + peers: validInvitationData.pairs, + psk: validInvitationData.psk, } - await expectSaga(handleInvitationCodeSaga, communities.actions.handleInvitationCodes(validInvitationPair)) + await expectSaga(handleInvitationCodeSaga, communities.actions.handleInvitationCodes(validInvitationData)) .withState(store.getState()) .put( modalsActions.openModal({ @@ -67,13 +72,47 @@ describe('Handle invitation code', () => { .run() }) - it('does not try to create network if code is invalid', async () => { + it('does not try to create network if code is missing addresses', async () => { + const payload: CreateNetworkPayload = { + ownership: CommunityOwnership.User, + peers: [], + } + + await expectSaga( + handleInvitationCodeSaga, + communities.actions.handleInvitationCodes({ + pairs: [], + psk: '12345', + }) + ) + .withState(store.getState()) + .put(communities.actions.clearInvitationCodes()) + .put( + modalsActions.openModal({ + name: ModalName.warningModal, + args: { + title: 'Invalid link', + subtitle: 'The invite link you received is not valid. Please check it and try again.', + }, + }) + ) + .not.put(communities.actions.createNetwork(payload)) + .run() + }) + + it('does not try to create network if code is missing psk', async () => { const payload: CreateNetworkPayload = { ownership: CommunityOwnership.User, peers: [], } - await expectSaga(handleInvitationCodeSaga, communities.actions.handleInvitationCodes([])) + await expectSaga( + handleInvitationCodeSaga, + communities.actions.handleInvitationCodes({ + pairs: validInvitationData.pairs, + psk: '', + }) + ) .withState(store.getState()) .put(communities.actions.clearInvitationCodes()) .put( diff --git a/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.ts b/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.ts index a43c71a988..f4bfef48f9 100644 --- a/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.ts +++ b/packages/desktop/src/renderer/sagas/invitation/handleInvitationCode.saga.ts @@ -30,11 +30,12 @@ export function* handleInvitationCodeSaga( ) return } - - if (action.payload.length > 0) { + const invitationData = action.payload + if (invitationData && invitationData.pairs.length > 0 && invitationData.psk) { const payload: CreateNetworkPayload = { ownership: CommunityOwnership.User, - peers: action.payload, + peers: invitationData.pairs, + psk: invitationData.psk, } yield* put(communities.actions.createNetwork(payload)) } else { diff --git a/packages/desktop/src/rtl-tests/channel.switch.test.tsx b/packages/desktop/src/rtl-tests/channel.switch.test.tsx index 77e840774a..b5e95eb907 100644 --- a/packages/desktop/src/rtl-tests/channel.switch.test.tsx +++ b/packages/desktop/src/rtl-tests/channel.switch.test.tsx @@ -19,7 +19,6 @@ import { identity, publicChannels, communities, - Community, Identity, Store, SocketActionTypes, @@ -32,6 +31,7 @@ import { import { DateTime } from 'luxon' import store from '../renderer/store' +import { type Community } from '@quiet/types' jest.setTimeout(20_000) jest.mock('electron', () => { diff --git a/packages/desktop/src/rtl-tests/community.create.test.tsx b/packages/desktop/src/rtl-tests/community.create.test.tsx index cf055bfa0d..ab2e19f88f 100644 --- a/packages/desktop/src/rtl-tests/community.create.test.tsx +++ b/packages/desktop/src/rtl-tests/community.create.test.tsx @@ -16,24 +16,20 @@ import { ioMock } from '../shared/setupTests' import { socketEventData } from '../renderer/testUtils/socket' import { ChannelsReplicatedPayload, - Community, - connection, InitCommunityPayload, LaunchRegistrarPayload, publicChannels, RegisterOwnerCertificatePayload, - ResponseCreateCommunityPayload, ResponseCreateNetworkPayload, ResponseLaunchCommunityPayload, ResponseRegistrarPayload, - SaveOwnerCertificatePayload, SocketActionTypes, } from '@quiet/state-manager' import Channel from '../renderer/components/Channel/Channel' import LoadingPanel from '../renderer/components/LoadingPanel/LoadingPanel' import { AnyAction } from 'redux' import { generateChannelId } from '@quiet/common' -import { SavedOwnerCertificatePayload } from '@quiet/types' +import { type Community, type SavedOwnerCertificatePayload } from '@quiet/types' jest.setTimeout(20_000) diff --git a/packages/desktop/src/rtl-tests/community.join.test.tsx b/packages/desktop/src/rtl-tests/community.join.test.tsx index 8768895ad5..bf88de4e5a 100644 --- a/packages/desktop/src/rtl-tests/community.join.test.tsx +++ b/packages/desktop/src/rtl-tests/community.join.test.tsx @@ -20,7 +20,6 @@ import { SocketActionTypes, RegisterUserCertificatePayload, InitCommunityPayload, - Community, ErrorCodes, ErrorMessages, getFactory, @@ -32,10 +31,11 @@ import LoadingPanel from '../renderer/components/LoadingPanel/LoadingPanel' import { createUserCertificateTestHelper } from '@quiet/identity' import { AnyAction } from 'redux' import { - ChannelsReplicatedPayload, - ErrorPayload, - ResponseLaunchCommunityPayload, - SendOwnerCertificatePayload, + type ChannelsReplicatedPayload, + type Community, + type ErrorPayload, + type ResponseLaunchCommunityPayload, + type SendOwnerCertificatePayload, } from '@quiet/types' jest.setTimeout(20_000) diff --git a/packages/desktop/src/rtl-tests/customProtocol.test.tsx b/packages/desktop/src/rtl-tests/customProtocol.test.tsx index b0dbcaf697..9ee9f99236 100644 --- a/packages/desktop/src/rtl-tests/customProtocol.test.tsx +++ b/packages/desktop/src/rtl-tests/customProtocol.test.tsx @@ -5,12 +5,12 @@ import { prepareStore } from '../renderer/testUtils/prepareStore' import { renderComponent } from '../renderer/testUtils' import MockedSocket from 'socket.io-mock' import { ioMock } from '../shared/setupTests' -import { communities, Community, identity, Identity } from '@quiet/state-manager' +import { communities, identity, Identity } from '@quiet/state-manager' import { modalsActions } from '../renderer/sagas/modals/modals.slice' import { ModalName } from '../renderer/sagas/modals/modals.types' import JoinCommunity from '../renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity' import CreateUsername from '../renderer/components/CreateUsername/CreateUsername' -import { InvitationPair } from '@quiet/types' +import { type Community, type InvitationData } from '@quiet/types' jest.setTimeout(20_000) @@ -65,9 +65,10 @@ describe('Opening app through custom protocol', () => { socket // Fork state manager's sagas ) - const invitationCodes: InvitationPair[] = [ - { peerId: 'abcdef', onionAddress: 'bidrmzr3ee6qa2vvrlcnqvvvsk2gmjktcqkunba326parszr44gibwyd' }, - ] + const invitationCodes: InvitationData = { + pairs: [{ peerId: 'abcdef', onionAddress: 'bidrmzr3ee6qa2vvrlcnqvvvsk2gmjktcqkunba326parszr44gibwyd' }], + psk: '12345', + } store.dispatch(communities.actions.handleInvitationCodes(invitationCodes)) diff --git a/packages/desktop/src/rtl-tests/possibleImpersonationAttack.test.tsx b/packages/desktop/src/rtl-tests/possibleImpersonationAttack.test.tsx index 4e1a8af679..bdd2c9a8bc 100644 --- a/packages/desktop/src/rtl-tests/possibleImpersonationAttack.test.tsx +++ b/packages/desktop/src/rtl-tests/possibleImpersonationAttack.test.tsx @@ -8,8 +8,9 @@ import { FactoryGirl } from 'factory-girl' import { ioMock } from '../shared/setupTests' import { renderComponent } from '../renderer/testUtils/renderComponent' import { prepareStore } from '../renderer/testUtils/prepareStore' -import { getFactory, identity, communities, Community, Identity, Store, users } from '@quiet/state-manager' +import { getFactory, identity, communities, Identity, Store, users } from '@quiet/state-manager' import PossibleImpersonationAttackModalContainer from '../renderer/components/widgets/possibleImpersonationAttackModal/PossibleImpersonationAttackModal.container' +import { type Community } from '@quiet/types' jest.setTimeout(20_000) diff --git a/packages/desktop/src/rtl-tests/searchModal.test.tsx b/packages/desktop/src/rtl-tests/searchModal.test.tsx index 09ded622b7..7e59314cf0 100644 --- a/packages/desktop/src/rtl-tests/searchModal.test.tsx +++ b/packages/desktop/src/rtl-tests/searchModal.test.tsx @@ -15,7 +15,6 @@ import { identity, publicChannels, communities, - Community, Identity, Store, MessageType, @@ -28,6 +27,7 @@ import SearchModal from '../renderer/components/SearchModal/SearchModal' import { modalsActions } from '../renderer/sagas/modals/modals.slice' import { ModalName } from '../renderer/sagas/modals/modals.types' import { DateTime } from 'luxon' +import { type Community } from '@quiet/types' jest.setTimeout(20_000) diff --git a/packages/e2e-tests/src/tests/invitationLink.test.ts b/packages/e2e-tests/src/tests/invitationLink.test.ts index e43f845071..19cf99bad2 100644 --- a/packages/e2e-tests/src/tests/invitationLink.test.ts +++ b/packages/e2e-tests/src/tests/invitationLink.test.ts @@ -140,9 +140,9 @@ describe('New user joins using invitation link while having app opened', () => { win32: 'start', } - const pairs = getInvitationPairs(url.hash.substring(1)) - expect(pairs).not.toBe([]) - execSync(`${command[process.platform as SupportedPlatformDesktop]} ${invitationDeepUrl(pairs)}`) + const data = getInvitationPairs(url.hash.substring(1)) + expect(data.pairs).not.toBe([]) + execSync(`${command[process.platform as SupportedPlatformDesktop]} ${invitationDeepUrl(data)}`) console.log('Guest opened invitation link') }) diff --git a/packages/mobile/src/components/JoinCommunity/JoinCommunity.component.tsx b/packages/mobile/src/components/JoinCommunity/JoinCommunity.component.tsx index 8aed5ac632..2711359f69 100644 --- a/packages/mobile/src/components/JoinCommunity/JoinCommunity.component.tsx +++ b/packages/mobile/src/components/JoinCommunity/JoinCommunity.component.tsx @@ -39,8 +39,14 @@ export const JoinCommunity: FC = ({ return } - const submitValue = getInvitationCodes(joinCommunityInput.trim()) - if (!submitValue?.length) { + let submitValue + try { + submitValue = getInvitationCodes(joinCommunityInput.trim()) + } catch (e) { + console.warn(`Could not parse invitation code, reason: ${e.message}`) + } + + if (!submitValue) { setLoading(false) setInputError('Please check your invitation code and try again') return diff --git a/packages/mobile/src/components/JoinCommunity/JoinCommunity.types.ts b/packages/mobile/src/components/JoinCommunity/JoinCommunity.types.ts index 3086a86790..9163dd2cf0 100644 --- a/packages/mobile/src/components/JoinCommunity/JoinCommunity.types.ts +++ b/packages/mobile/src/components/JoinCommunity/JoinCommunity.types.ts @@ -1,7 +1,7 @@ import { InvitationPair } from '@quiet/types' export interface JoinCommunityProps { - joinCommunityAction: (address: InvitationPair[]) => void + joinCommunityAction: (address: { pairs: InvitationPair[]; psk: string }) => void redirectionAction: () => void networkCreated: boolean invitationCode?: string diff --git a/packages/mobile/src/screens/JoinCommunity/JoinCommunity.screen.tsx b/packages/mobile/src/screens/JoinCommunity/JoinCommunity.screen.tsx index 956c332139..6af049824c 100644 --- a/packages/mobile/src/screens/JoinCommunity/JoinCommunity.screen.tsx +++ b/packages/mobile/src/screens/JoinCommunity/JoinCommunity.screen.tsx @@ -35,10 +35,11 @@ export const JoinCommunityScreen: FC = ({ route }) => }, [dispatch, community, route.params?.code]) const joinCommunityAction = useCallback( - (pairs: InvitationPair[]) => { + (data: { pairs: InvitationPair[]; psk: string }) => { const payload: CreateNetworkPayload = { ownership: CommunityOwnership.User, - peers: pairs, + peers: data.pairs, + psk: data.psk, } dispatch(communities.actions.createNetwork(payload)) dispatch( diff --git a/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts b/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts index 7b1dcb5766..21e3ba2ca0 100644 --- a/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts +++ b/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts @@ -9,13 +9,13 @@ import { navigationActions } from '../../navigation/navigation.slice' import { ScreenNames } from '../../../const/ScreenNames.enum' import { deepLinkSaga } from './deepLink.saga' import { CommunityOwnership, ConnectionProcessInfo, Identity } from '@quiet/types' +import { Site } from '@quiet/common' describe('deepLinkSaga', () => { let store: Store const id = '00d045ab' - const validCode = - 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' + const validCode = `QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd&${Site.PSK_PARAM_KEY}=12345` const validPairs = getInvitationCodes(validCode) const community: Community = { id, @@ -70,7 +70,8 @@ describe('deepLinkSaga', () => { .put( communities.actions.createNetwork({ ownership: CommunityOwnership.User, - peers: validPairs, + peers: validPairs.pairs, + psk: validPairs.psk, }) ) .run() @@ -104,7 +105,8 @@ describe('deepLinkSaga', () => { .not.put( communities.actions.createNetwork({ ownership: CommunityOwnership.User, - peers: validPairs, + peers: validPairs.pairs, + psk: validPairs.psk, }) ) .run() @@ -127,7 +129,8 @@ describe('deepLinkSaga', () => { .not.put( communities.actions.createNetwork({ ownership: CommunityOwnership.User, - peers: validPairs, + peers: validPairs.pairs, + psk: validPairs.psk, }) ) .run() @@ -166,7 +169,8 @@ describe('deepLinkSaga', () => { .not.put( communities.actions.createNetwork({ ownership: CommunityOwnership.User, - peers: validPairs, + peers: validPairs.pairs, + psk: validPairs.psk, }) ) .run() diff --git a/packages/mobile/src/store/init/deepLink/deepLink.saga.ts b/packages/mobile/src/store/init/deepLink/deepLink.saga.ts index 5a0dd0f2ab..b6dc76ca97 100644 --- a/packages/mobile/src/store/init/deepLink/deepLink.saga.ts +++ b/packages/mobile/src/store/init/deepLink/deepLink.saga.ts @@ -52,9 +52,12 @@ export function* deepLinkSaga(action: PayloadAction { @@ -97,6 +97,41 @@ describe('communitiesSelectors', () => { expect(invitationUrl).toEqual('') }) + it('invitationUrl selector returns proper url', async () => { + const { store } = prepareStore() + const factory = await getFactory(store) + const peerList = [ + createLibp2pAddress( + 'gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad', + 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA' + ), + ] + const psk = '12345' + await factory.create['payload']>('Community', { + peerList, + }) + store.dispatch(communitiesActions.savePSK(psk)) + const selectorInvitationUrl = communitiesSelectors.invitationUrl(store.getState()) + const expectedUrl = invitationShareUrl(peerList, psk) + expect(expectedUrl).not.toEqual('') + expect(selectorInvitationUrl).toEqual(expectedUrl) + }) + + it('invitationUrl selector returns empty string if state lacks psk', async () => { + const { store } = prepareStore() + const factory = await getFactory(store) + await factory.create['payload']>('Community', { + peerList: [ + createLibp2pAddress( + 'gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad', + 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA' + ), + ], + }) + const invitationUrl = communitiesSelectors.invitationUrl(store.getState()) + expect(invitationUrl).toEqual('') + }) + it('returns proper ownerNickname - ownerCertificate exist', async () => { const { store } = prepareStore() expect(identity.userCertificate).not.toBeUndefined() diff --git a/packages/state-manager/src/sagas/communities/communities.selectors.ts b/packages/state-manager/src/sagas/communities/communities.selectors.ts index 7c97185122..05f1d5f228 100644 --- a/packages/state-manager/src/sagas/communities/communities.selectors.ts +++ b/packages/state-manager/src/sagas/communities/communities.selectors.ts @@ -53,19 +53,24 @@ export const registrarUrl = (communityId: string) => return registrarAddress }) -export const invitationCode = createSelector(communitiesSlice, reducerState => { - return reducerState.invitationCode -}) +// export const invitationCode = createSelector(communitiesSlice, reducerState => { +// return reducerState.invitationCode +// }) export const invitationCodes = createSelector(communitiesSlice, reducerState => { return reducerState.invitationCodes }) -export const invitationUrl = createSelector(currentCommunity, community => { +export const psk = createSelector(communitiesSlice, reducerState => { + return reducerState.psk +}) + +export const invitationUrl = createSelector(currentCommunity, psk, (community, communityPsk) => { const peerList = community?.peerList if (!peerList || peerList?.length === 0) return '' + if (!communityPsk) return '' const initialPeers = peerList.slice(0, 4) - return invitationShareUrl(initialPeers) + return invitationShareUrl(initialPeers, communityPsk) }) export const registrationAttempts = (communityId: string) => @@ -108,7 +113,7 @@ export const communitiesSelectors = { registrarUrl, registrationAttempts, invitationCodes, - invitationCode, invitationUrl, ownerNickname, + psk, } diff --git a/packages/state-manager/src/sagas/communities/communities.slice.ts b/packages/state-manager/src/sagas/communities/communities.slice.ts index 1b37740456..77474fccd5 100644 --- a/packages/state-manager/src/sagas/communities/communities.slice.ts +++ b/packages/state-manager/src/sagas/communities/communities.slice.ts @@ -12,36 +12,14 @@ import { type UpdateCommunityPayload, type UpdateRegistrationAttemptsPayload, CommunityMetadataPayload, + InvitationData, } from '@quiet/types' export class CommunitiesState { - public invitationCode: string | undefined = undefined public invitationCodes: InvitationPair[] = [] public currentCommunity = '' public communities: EntityState = communitiesAdapter.getInitialState() -} - -// TODO: remove after setting strict in 'desktop' and 'mobile' packages -export interface Community { - // TODO: how to set default values for Community? - id: string - name?: string - CA?: null | { - rootCertString: string - rootKeyString: string - } - rootCa?: string - peerList?: string[] - registrarUrl?: string - registrar?: null | { - privateKey: string - address: string - } - onionAddress?: string - privateKey?: string - port?: number - registrationAttempts?: number - ownerCertificate?: string + public psk: string | undefined } export const communitiesSlice = createSlice({ @@ -93,8 +71,8 @@ export const communitiesSlice = createSlice({ }, }) }, - handleInvitationCodes: (state, action: PayloadAction) => { - state.invitationCodes = action.payload + handleInvitationCodes: (state, action: PayloadAction) => { + state.invitationCodes = action.payload.pairs }, setInvitationCodes: (state, action: PayloadAction) => { state.invitationCodes = action.payload @@ -112,6 +90,9 @@ export const communitiesSlice = createSlice({ }) }, saveCommunityMetadata: (state, _action: PayloadAction) => state, + savePSK: (state, action: PayloadAction) => { + state.psk = action.payload + }, }, }) diff --git a/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.test.ts b/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.test.ts index 6e8bf52fe0..95aa24adb2 100644 --- a/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.test.ts +++ b/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.test.ts @@ -29,6 +29,7 @@ describe('createNetwork', () => { communitiesActions.createNetwork({ ownership: CommunityOwnership.User, peers: [{ peerId: 'peerId', onionAddress: 'address' }], + psk: '12345', }) ) .withReducer(reducer) @@ -63,6 +64,7 @@ describe('createNetwork', () => { communitiesActions.createNetwork({ ownership: CommunityOwnership.Owner, name: 'rockets', + psk: '12345', }) ) .withReducer(reducer) diff --git a/packages/state-manager/src/sagas/files/deleteFilesFromChannel/deleteFilesFromChannel.saga.test.ts b/packages/state-manager/src/sagas/files/deleteFilesFromChannel/deleteFilesFromChannel.saga.test.ts index 88dde113b9..9eae59bec1 100644 --- a/packages/state-manager/src/sagas/files/deleteFilesFromChannel/deleteFilesFromChannel.saga.test.ts +++ b/packages/state-manager/src/sagas/files/deleteFilesFromChannel/deleteFilesFromChannel.saga.test.ts @@ -8,7 +8,7 @@ import { reducers } from '../../reducers' import { expectSaga } from 'redux-saga-test-plan' import { type Identity } from '../../identity/identity.types' import { type identityActions } from '../../identity/identity.slice' -import { type communitiesActions, type Community } from '../../communities/communities.slice' +import { type communitiesActions } from '../../communities/communities.slice' import { DateTime } from 'luxon' import { type Socket } from 'socket.io-client' import { filesActions } from '../../files/files.slice' @@ -16,6 +16,7 @@ import { deleteFilesFromChannelSaga } from './deleteFilesFromChannel.saga' import { publicChannelsSelectors } from '../../publicChannels/publicChannels.selectors' import { type publicChannelsActions } from '../../publicChannels/publicChannels.slice' import { generateChannelId } from '@quiet/common' +import { type Community } from '@quiet/types' describe('deleteFilesFromChannelSaga', () => { let store: Store diff --git a/packages/state-manager/src/sagas/socket/startConnection/startConnection.saga.ts b/packages/state-manager/src/sagas/socket/startConnection/startConnection.saga.ts index 1bcef1e1da..bc156a6ab7 100644 --- a/packages/state-manager/src/sagas/socket/startConnection/startConnection.saga.ts +++ b/packages/state-manager/src/sagas/socket/startConnection/startConnection.saga.ts @@ -93,6 +93,7 @@ export function subscribe(socket: Socket) { | ReturnType | ReturnType | ReturnType + | ReturnType >(emit => { // UPDATE FOR APP socket.on(SocketActionTypes.TOR_INITIALIZED, () => { @@ -263,6 +264,10 @@ export function subscribe(socket: Socket) { }) ) }) + socket.on(SocketActionTypes.PSK, (payload: { psk: string }) => { + console.log('save psk', payload) + emit(communitiesActions.savePSK(payload.psk)) + }) return () => undefined }) } diff --git a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts index a3f5aff0a2..ca59f86778 100644 --- a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts +++ b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts @@ -1,11 +1,12 @@ import { Site, getInvitationPairs, invitationCodeValid } from '@quiet/common' import { InvitationPair } from '@quiet/types' -export const getInvitationCodes = (codeOrUrl: string): InvitationPair[] => { +export const getInvitationCodes = (codeOrUrl: string): { pairs: InvitationPair[]; psk: string } => { /** - * Extract codes from invitation share url or return passed value for further validation + * Extract codes from invitation share url or return passed value for further error handling + * @param codeOrUrl: full invitation link or just the code part of the link */ - let codes: InvitationPair[] = [] + let data: { pairs: InvitationPair[]; psk: string } | null = null let potentialCode let validUrl: URL | null = null @@ -21,16 +22,16 @@ export const getInvitationCodes = (codeOrUrl: string): InvitationPair[] => { if (hash) { // Parse hash const pairs = hash.substring(1) - codes = getInvitationPairs(pairs) + data = getInvitationPairs(pairs) } } else if (potentialCode) { // Parse code just as hash value - codes = getInvitationPairs(potentialCode) + data = getInvitationPairs(potentialCode) } - if (codes.length === 0) { - console.warn(`No invitation codes. Code/url passed: ${codeOrUrl}`) + if (!data || data?.pairs.length === 0) { + throw new Error(`No invitation codes. Code/url passed: ${codeOrUrl}`) } - return codes + return data } diff --git a/packages/types/src/community.ts b/packages/types/src/community.ts index a38096d4fb..06fb3daa8c 100644 --- a/packages/types/src/community.ts +++ b/packages/types/src/community.ts @@ -20,6 +20,7 @@ export interface Community { port?: number registrationAttempts?: number ownerCertificate?: string + psk?: string } export enum CommunityOwnership { @@ -36,6 +37,7 @@ export interface CreateNetworkPayload { ownership: CommunityOwnership name?: string peers?: InvitationPair[] + psk?: string } export interface ResponseCreateNetworkPayload { diff --git a/packages/types/src/network.ts b/packages/types/src/network.ts index c92e0c5fa1..3e475cbdf5 100644 --- a/packages/types/src/network.ts +++ b/packages/types/src/network.ts @@ -7,3 +7,8 @@ export type InvitationPair = { peerId: string onionAddress: string } + +export type InvitationData = { + pairs: InvitationPair[] + psk: string +} diff --git a/packages/types/src/socket.ts b/packages/types/src/socket.ts index 0e99167fda..cd95fcecd2 100644 --- a/packages/types/src/socket.ts +++ b/packages/types/src/socket.ts @@ -40,6 +40,7 @@ export enum SocketActionTypes { PEER_DISCONNECTED = 'peerDisconnected', PEER_LIST = 'peerList', PUSH_NOTIFICATION = 'pushNotification', + PSK = 'psk', // R REGISTER_USER_CERTIFICATE = 'registerUserCertificate', REGISTER_OWNER_CERTIFICATE = 'registerOwnerCertificate', From e1abeb95b18c73c8f3e6474f41f2d77662e38282 Mon Sep 17 00:00:00 2001 From: Emi Date: Mon, 16 Oct 2023 15:02:54 +0200 Subject: [PATCH 03/31] Retrieve psk from invitation link --- packages/backend/src/nest/common/utils.ts | 18 ++++++++ .../connections-manager.service.ts | 44 ++++++++++++------- .../src/nest/local-db/local-db.types.ts | 1 + packages/common/src/invitationCode.ts | 14 +++++- .../JoinCommunity/JoinCommunity.tsx | 7 +-- .../createNetwork/createNetwork.saga.ts | 6 +++ .../registerUsername/registerUsername.saga.ts | 4 +- .../invitationCode/invitationCode.ts | 8 ++-- 8 files changed, 75 insertions(+), 27 deletions(-) diff --git a/packages/backend/src/nest/common/utils.ts b/packages/backend/src/nest/common/utils.ts index a8abe34f64..23d3735631 100644 --- a/packages/backend/src/nest/common/utils.ts +++ b/packages/backend/src/nest/common/utils.ts @@ -13,6 +13,9 @@ import logger from './logger' import { createCertificatesTestHelper } from './client-server' import { Libp2pNodeParams } from '../libp2p/libp2p.types' import { createLibp2pAddress, createLibp2pListenAddress } from '@quiet/common' +import { randomBytes } from '@libp2p/crypto' +import { toString as uint8ArrayToString } from 'uint8arrays/to-string' +import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string' const log = logger('test') @@ -235,3 +238,18 @@ export async function createPeerId(): Promise { const peerId = await PeerId.create() return peerIdFromKeys(peerId.marshalPubKey(), peerId.marshalPrivKey()) } + +const KEY_LENGTH = 32 + +export function generateKey(bytes: Uint8Array | NodeJS.WriteStream, key?: Uint8Array) { + const psk = key || randomBytes(KEY_LENGTH) + const base16StringKey = uint8ArrayToString(psk, 'base16') + const fullKey = uint8ArrayFromString('/key/swarm/psk/1.0.0/\n/base16/\n' + base16StringKey) + + if (bytes instanceof Uint8Array) { + bytes.set(fullKey) + } else { + bytes.write(fullKey) + } + return psk +} diff --git a/packages/backend/src/nest/connections-manager/connections-manager.service.ts b/packages/backend/src/nest/connections-manager/connections-manager.service.ts index 9fd183f92f..486e32b573 100644 --- a/packages/backend/src/nest/connections-manager/connections-manager.service.ts +++ b/packages/backend/src/nest/connections-manager/connections-manager.service.ts @@ -8,7 +8,7 @@ import { setEngine, CryptoEngine } from 'pkijs' import { EventEmitter } from 'events' import getPort from 'get-port' import PeerId from 'peer-id' -import { removeFilesFromDir } from '../common/utils' +import { generateKey, removeFilesFromDir } from '../common/utils' import { AskForMessagesPayload, ChannelMessagesIdsResponse, @@ -59,9 +59,6 @@ import { StorageEvents } from '../storage/storage.types' import { LazyModuleLoader } from '@nestjs/core' import Logger from '../common/logger' import { emitError } from '../socket/socket.errors' -import crypto from 'crypto' -// import { randomBytes } from '@libp2p/crypto' -import { generateKey } from 'libp2p/pnet' import { toString as uint8ArrayToString } from 'uint8arrays/to-string' import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string' @@ -279,21 +276,30 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI }, network, } + const psk = community.psk // Passed in base64 + if (psk) { + console.log('createNetwork got psk', psk) + await this.localDbService.put(LocalDBKeys.PSK, psk) // Validate psk before saving? + } + this.serverIoProvider.io.emit(SocketActionTypes.NETWORK, payload) } + private async generatePSK() { + const libp2pPSK = new Uint8Array(95) + const psk = generateKey(libp2pPSK) + console.log('Generated new buffer psk', psk) + const pskBase64 = uint8ArrayToString(psk, 'base64') + await this.localDbService.put(LocalDBKeys.PSK, pskBase64) + + console.log('psk base64 SAVED', pskBase64) + this.serverIoProvider.io.emit(SocketActionTypes.PSK, { psk: pskBase64 }) + } + public async createCommunity(payload: InitCommunityPayload) { console.log('ConnectionsManager.createCommunity peers:', payload.peers) - if (!(await this.localDbService.get('psk'))) { - const psk = new Uint8Array(95) - generateKey(psk) - console.log('Saving psk') - await this.localDbService.put('psk', psk) - const pskBase64 = uint8ArrayToString(psk, 'base64') - console.log('psk base64', pskBase64) - this.serverIoProvider.io.emit(SocketActionTypes.PSK, { psk: pskBase64 }) - } + await this.generatePSK() await this.launchCommunity(payload) this.logger(`Created and launched community ${payload.id}`) @@ -361,8 +367,12 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI if (!peers || peers.length === 0) { peers = [this.libp2pService.createLibp2pAddress(onionAddress, _peerId.toString())] } - const pskValue = await this.localDbService.get('psk') - const psk = Uint8Array.from(Object.values(pskValue)) + const pskValue = await this.localDbService.get(LocalDBKeys.PSK) // What if there is no psk in db? + console.log('psk base64 RETRIEVED', pskValue) + const psk = uint8ArrayFromString(pskValue, 'base64') + console.log('psk buffer retrieved', psk) + const libp2pPSK = new Uint8Array(95) + generateKey(libp2pPSK, psk) const params: Libp2pNodeParams = { peerId: _peerId, @@ -371,7 +381,7 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI localAddress: this.libp2pService.createLibp2pAddress(onionAddress, _peerId.toString()), targetPort: this.ports.libp2pHiddenService, peers, - psk, + psk: libp2pPSK, } await this.libp2pService.createInstance(params) @@ -380,7 +390,6 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI this.serverIoProvider.io.emit(SocketActionTypes.PEER_CONNECTED, payload) }) this.libp2pService.on(Libp2pEvents.PEER_DISCONNECTED, async (payload: NetworkDataPayload) => { - console.log(' this.libp2pService.on(Libp2pEvents.PEER_DISCONNECTED') const peerPrevStats = await this.localDbService.find(LocalDBKeys.PEERS, payload.peer) const prev = peerPrevStats?.connectionTime || 0 @@ -438,6 +447,7 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI } }) this.socketService.on(SocketActionTypes.CREATE_NETWORK, async (args: Community) => { + console.log('CREATE NETWORK', args) await this.createNetwork(args) }) this.socketService.on(SocketActionTypes.CREATE_COMMUNITY, async (args: InitCommunityPayload) => { diff --git a/packages/backend/src/nest/local-db/local-db.types.ts b/packages/backend/src/nest/local-db/local-db.types.ts index a419575730..1834f0a062 100644 --- a/packages/backend/src/nest/local-db/local-db.types.ts +++ b/packages/backend/src/nest/local-db/local-db.types.ts @@ -2,5 +2,6 @@ export enum LocalDBKeys { COMMUNITY = 'community', REGISTRAR = 'registrar', PEERS = 'peers', + PSK = 'psk', } export type LocalDbStatus = 'opening' | 'open' | 'closing' | 'closed' diff --git a/packages/common/src/invitationCode.ts b/packages/common/src/invitationCode.ts index eecc6a2b85..2d4be09d72 100644 --- a/packages/common/src/invitationCode.ts +++ b/packages/common/src/invitationCode.ts @@ -21,9 +21,12 @@ export const retrieveInvitationCode = (url: string): InvitationData => { } const params = data.searchParams const codes: InvitationPair[] = [] - const psk = params.get(Site.PSK_PARAM_KEY) + let psk = params.get(Site.PSK_PARAM_KEY) if (!psk) throw new Error(`No psk found in invitation code ${url}`) + psk = decodeURIComponent(psk) // TODO: can be dangerous? + // Validate base64 + params.delete(Site.PSK_PARAM_KEY) params.forEach((peerId, onionAddress) => { @@ -151,9 +154,11 @@ export const getInvitationPairs = (code: string): InvitationData => { const elements = code.split('&') if (elements.length <= 1) throw new Error(`Invitation link '${code}' has not enough data`) const pairs = elements.slice(0, -1) - const psk = elements.slice(-1)[0] // TODO: Verify psk format + const _psk = elements.slice(-1)[0] + const psk = decodeURIComponent(_psk.split('=')[1]) // FIXME + const codes: InvitationPair[] = [] for (const pair of pairs) { const [peerId, address] = pair.split('=') @@ -164,6 +169,11 @@ export const getInvitationPairs = (code: string): InvitationData => { onionAddress: address, }) } + + console.log('getInvitationPairs', { + pairs: codes, + psk: psk, + }) return { pairs: codes, psk: psk, diff --git a/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx b/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx index 6aa9bbdcb8..9dd23ee7aa 100644 --- a/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx +++ b/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.tsx @@ -15,8 +15,8 @@ const JoinCommunity = () => { const currentCommunity = useSelector(communities.selectors.currentCommunity) const currentIdentity = useSelector(identity.selectors.currentIdentity) + // Invitation link data should be already available if user joined via deep link const invitationCodes = useSelector(communities.selectors.invitationCodes) - console.log('PSK SELECTOR', communities.selectors.psk) const psk = useSelector(communities.selectors.psk) const joinCommunityModal = useModal(ModalName.joinCommunityModal) @@ -38,10 +38,11 @@ const JoinCommunity = () => { } }, [currentCommunity]) - const handleCommunityAction = (address: InvitationPair[]) => { + const handleCommunityAction = (data: InvitationData) => { const payload: CreateNetworkPayload = { ownership: CommunityOwnership.User, - peers: address, + peers: data.pairs, + psk: data.psk, } dispatch(communities.actions.createNetwork(payload)) } diff --git a/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.ts b/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.ts index eeeabb3fec..bc63988469 100644 --- a/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.ts +++ b/packages/state-manager/src/sagas/communities/createNetwork/createNetwork.saga.ts @@ -33,12 +33,18 @@ export function* createNetworkSaga( name: action.payload.name, CA, rootCa: CA?.rootCertString, + psk: action.payload.psk, // TODO: What if backend says that psk is not valid? } const invitationPeers = action.payload.peers if (invitationPeers) { yield* put(communitiesActions.setInvitationCodes(invitationPeers)) } + console.log('Create network saga', action.payload.psk) + const psk = action.payload.psk + if (psk) { + yield* put(communitiesActions.savePSK(psk)) + } yield* put(communitiesActions.addNewCommunity(payload)) yield* put(communitiesActions.setCurrentCommunity(id)) diff --git a/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.ts b/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.ts index c92d859fe1..ae573ca624 100644 --- a/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.ts +++ b/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.ts @@ -22,13 +22,15 @@ export function* registerUsernameSaga( console.error('Could not register username, no community data') return } - + const psk = yield* select(communitiesSelectors.psk) + console.log('PSK in registerUsernameSaga', psk) const networkPayload: Community = { id: community.id, name: community.name, registrarUrl: community.registrarUrl, CA: community.CA, rootCa: community.CA?.rootCertString, + psk: psk, } if (!isUsernameTaken) { diff --git a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts index ca59f86778..1309f12cd6 100644 --- a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts +++ b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts @@ -1,12 +1,12 @@ -import { Site, getInvitationPairs, invitationCodeValid } from '@quiet/common' -import { InvitationPair } from '@quiet/types' +import { Site, getInvitationPairs } from '@quiet/common' +import { type InvitationData } from '@quiet/types' -export const getInvitationCodes = (codeOrUrl: string): { pairs: InvitationPair[]; psk: string } => { +export const getInvitationCodes = (codeOrUrl: string): InvitationData => { /** * Extract codes from invitation share url or return passed value for further error handling * @param codeOrUrl: full invitation link or just the code part of the link */ - let data: { pairs: InvitationPair[]; psk: string } | null = null + let data: InvitationData | null = null let potentialCode let validUrl: URL | null = null From 30baa07c005ce7ad7ff9cd12aa1f55c63b14f8a6 Mon Sep 17 00:00:00 2001 From: Emi Date: Wed, 18 Oct 2023 14:14:41 +0200 Subject: [PATCH 04/31] Fix import --- packages/backend/package-lock.json | 74172 ++++++++-------- .../store/init/deepLink/deepLink.saga.test.ts | 4 +- 2 files changed, 37080 insertions(+), 37096 deletions(-) diff --git a/packages/backend/package-lock.json b/packages/backend/package-lock.json index 5443150edb..e3231dcb13 100644 --- a/packages/backend/package-lock.json +++ b/packages/backend/package-lock.json @@ -1,37096 +1,37080 @@ { - "name": "@quiet/backend", - "version": "2.0.1-alpha.6", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "@quiet/backend", - "version": "2.0.1-alpha.6", - "license": "MIT", - "dependencies": { - "@chainsafe/libp2p-gossipsub": "6.1.0", - "@chainsafe/libp2p-noise": "11.0.0", - "@nestjs/common": "^10.0.0", - "@nestjs/core": "^10.0.0", - "@nestjs/platform-express": "^10.0.0", - "@peculiar/webcrypto": "1.4.3", - "abortable-iterator": "^3.0.0", - "class-transformer": "^0.5.1", - "class-validator": "^0.13.1", - "cli-table": "^0.3.6", - "commander": "^7.2.0", - "cors": "^2.8.5", - "crypto-js": "^4.1.1", - "debug": "^4.3.1", - "dotenv": "8.2.0", - "events": "^3.2.0", - "express": "^4.17.1", - "get-port": "^5.1.1", - "go-ipfs": "npm:mocked-go-ipfs@0.17.0", - "http-server": "^0.12.3", - "https-proxy-agent": "^5.0.0", - "image-size": "^1.0.1", - "ipfs": "0.66.0", - "ipfs-log": "^5.4.2", - "it-ws": "5.0.6", - "joi": "^17.8.1", - "level": "8.0.0", - "libp2p": "0.42.2", - "luxon": "^1.11.4", - "multiaddr": "^10.0.1", - "orbit-db": "0.29.0", - "orbit-db-access-controllers": "^0.4.0", - "orbit-db-identity-provider": "0.5.0", - "orbit-db-io": "1.0.2", - "orbit-db-pubsub": "0.6.0", - "orbit-db-store": "4.3.4", - "p-queue": "7.3.4", - "peer-id": "^0.16.0", - "pkijs": "3.0.8", - "reflect-metadata": "^0.1.13", - "rimraf": "^3.0.2", - "rxjs": "^7.2.0", - "secp256k1": "4.0.3", - "socket.io": "4.6.0", - "socks-proxy-agent": "^5.0.0", - "string-replace-loader": "3.1.0", - "ts-jest-resolver": "^2.0.0", - "validator": "^13.6.0" - }, - "devDependencies": { - "@nestjs/cli": "^10.0.0", - "@nestjs/schematics": "^10.0.0", - "@nestjs/testing": "^10.0.0", - "@types/crypto-js": "^4.0.2", - "@types/express": "^4.17.9", - "@types/jest": "28.1.8", - "@types/luxon": "^3.3.0", - "@types/mock-fs": "^4.13.1", - "@types/node": "18.11.9", - "@types/node-fetch": "^2.5.11", - "@types/orbit-db": "git+https://github.com/orbitdb/orbit-db-types.git", - "@types/supertest": "^2.0.11", - "@types/tmp": "^0.2.3", - "@types/validator": "^13.1.4", - "@types/ws": "8.5.3", - "babel-jest": "^29.3.1", - "cross-env": "^5.2.0", - "fetch-mock-jest": "^1.5.1", - "jest": "^29.4.2", - "mock-fs": "^5.1.2", - "tmp": "^0.2.1", - "ts-jest": "^29.0.3", - "ts-loader": "9.4.2", - "ts-node": "10.9.1", - "typescript": "^4.9.3", - "wait-for-expect": "^3.0.2", - "webpack": "5.75.0", - "webpack-cli": "5.0.1", - "yargs": "^17.1.0" - } - }, - "../common": { - "name": "@quiet/common", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "@quiet/types": "^1.4.0-alpha.0", - "cross-env": "^5.2.0", - "debug": "^4.3.1" - }, - "devDependencies": { - "@quiet/eslint-config": "^1.0.0", - "@types/jest": "^26.0.23", - "@types/node": "^17.0.21", - "jest": "^26.6.3", - "ts-jest": "^26.5.2", - "typescript": "^4.9.3" - } - }, - "../eslint-config-custom": { - "name": "@quiet/eslint-config", - "version": "1.0.0", - "extraneous": true, - "devDependencies": { - "@typescript-eslint/eslint-plugin": "5.59.11", - "@typescript-eslint/parser": "^5.59.11", - "eslint": "^8.42.0", - "eslint-config-prettier": "^8.8.0", - "eslint-config-standard": "^17.1.0", - "eslint-config-standard-with-typescript": "^35.0.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-jest": "^27.2.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react-hooks": "^4.6.0", - "prettier": "^2.8.8" - } - }, - "../identity": { - "name": "@quiet/identity", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "MIT", - "dependencies": { - "@peculiar/webcrypto": "1.4.3", - "@quiet/eslint-config": "^1.0.0", - "@quiet/logger": "^1.4.0-alpha.0", - "@quiet/types": "^1.4.0-alpha.0", - "pkijs": "^3.0.8" - }, - "devDependencies": { - "@babel/runtime": "^7.12.5", - "@types/jest": "^26.0.23", - "@types/node": "^14.17.6", - "babel-jest": "^29.3.1", - "jest": "^26.6.3", - "ts-jest": "^26.5.6", - "typescript": "^4.9.3" - } - }, - "../logger": { - "name": "@quiet/logger", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "cross-env": "^5.2.0", - "debug": "^4.3.1" - }, - "devDependencies": { - "@quiet/eslint-config": "^1.0.0", - "@types/debug": "^4.1.7", - "@types/node": "^17.0.21", - "typescript": "^4.9.3" - } - }, - "../state-manager": { - "name": "@quiet/state-manager", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "@quiet/common": "^1.4.0-alpha.0", - "@quiet/logger": "^1.4.0-alpha.0", - "@quiet/types": "^1.4.0-alpha.0", - "@reduxjs/toolkit": "^1.9.1", - "factory-girl": "^5.0.4", - "get-port": "^5.1.1", - "luxon": "^2.0.2", - "redux": "^4.1.1", - "redux-persist": "^6.0.0", - "redux-saga": "^1.1.3", - "redux-thunk": "^2.4.0", - "reselect": "^4.1.4", - "socket.io-client": "^4.1.3", - "typed-redux-saga": "^1.3.1", - "wait-for-expect": "^3.0.2" - }, - "devDependencies": { - "@babel/core": "^7.22.5", - "@babel/preset-env": "^7.22.5", - "@babel/preset-typescript": "^7.22.5", - "@peculiar/webcrypto": "1.4.3", - "@quiet/eslint-config": "^1.0.0", - "@quiet/identity": "^1.4.0-alpha.0", - "@types/factory-girl": "^5.0.8", - "@types/jest": "^26.0.24", - "@types/luxon": "^2.0.0", - "@types/redux-saga": "^0.10.5", - "babel-jest": "^29.3.1", - "cross-env": "^7.0.3", - "factory-girl": "^5.0.4", - "jest": "^27.0.6", - "libp2p-websockets": "*", - "pkijs": "^3.0.8", - "pvutils": "*", - "redux-saga-test-plan": "^4.0.3", - "tmp": "^0.2.1", - "typescript": "^4.9.3" - } - }, - "../types": { - "name": "@quiet/types", - "version": "1.4.0-alpha.0", - "extraneous": true, - "license": "ISC", - "dependencies": { - "cross-env": "^5.2.0", - "debug": "^4.3.1" - }, - "devDependencies": { - "@quiet/eslint-config": "^1.0.0", - "@reduxjs/toolkit": "^1.9.1", - "@types/jest": "^26.0.23", - "@types/node": "^17.0.21", - "jest": "^26.6.3", - "ts-jest": "^26.5.2", - "typescript": "^4.9.3" - } - }, - "node_modules/@achingbrain/ip-address": { - "version": "8.1.0", - "license": "MIT", - "dependencies": { - "jsbn": "1.1.0", - "sprintf-js": "1.1.2" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/@achingbrain/nat-port-mapper": { - "version": "1.0.7", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@achingbrain/ssdp": "^4.0.1", - "@libp2p/logger": "^2.0.0", - "default-gateway": "^6.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.7", - "p-defer": "^4.0.0", - "p-timeout": "^5.0.2", - "xml2js": "^0.4.23" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@achingbrain/nat-port-mapper/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@achingbrain/ssdp": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "event-iterator": "^2.0.0", - "freeport-promise": "^2.0.0", - "merge-options": "^3.0.4", - "uuid": "^8.3.2", - "xml2js": "^0.4.23" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@achingbrain/ssdp/node_modules/uuid": { - "version": "8.3.2", - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/@angular-devkit/core": { - "version": "16.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "7.8.1", - "source-map": "0.7.4" - }, - "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "chokidar": "^3.5.2" - }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } - } - }, - "node_modules/@angular-devkit/core/node_modules/ajv": { - "version": "8.12.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@angular-devkit/core/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@angular-devkit/core/node_modules/source-map": { - "version": "0.7.4", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@angular-devkit/schematics": { - "version": "16.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", - "ora": "5.4.1", - "rxjs": "7.8.1" - }, - "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - } - }, - "node_modules/@angular-devkit/schematics-cli": { - "version": "16.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "ansi-colors": "4.1.3", - "inquirer": "8.2.4", - "symbol-observable": "4.0.0", - "yargs-parser": "21.1.1" - }, - "bin": { - "schematics": "bin/schematics.js" - }, - "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/inquirer": { - "version": "8.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/yargs-parser": { - "version": "21.1.1", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/@assemblyscript/loader": { - "version": "0.9.4", - "license": "Apache-2.0" - }, - "node_modules/@babel/code-frame": { - "version": "7.12.11", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.14.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@babel/core": { - "version": "7.14.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.3", - "@babel/helper-compilation-targets": "^7.13.16", - "@babel/helper-module-transforms": "^7.14.2", - "@babel/helpers": "^7.14.0", - "@babel/parser": "^7.14.3", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.12.13" - } - }, - "node_modules/@babel/core/node_modules/json5": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/core/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/generator": { - "version": "7.14.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.14.2", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "node_modules/@babel/generator/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.14.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.14.4", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.16.6", - "semver": "^6.3.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" - } - }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.13.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.13.12" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.13.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.13.12" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-simple-access": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/helper-validator-identifier": "^7.14.0", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.14.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.4" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.13.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.13.12" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.12.17", - "dev": true, - "license": "MIT" - }, - "node_modules/@babel/helpers": { - "version": "7.14.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.20.13", - "dev": true, - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.20.13", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" - } - }, - "node_modules/@babel/template/node_modules/@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.12.13" - } - }, - "node_modules/@babel/traverse": { - "version": "7.14.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "node_modules/@babel/traverse/node_modules/@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.12.13" - } - }, - "node_modules/@babel/traverse/node_modules/globals": { - "version": "11.12.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/types": { - "version": "7.20.7", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@chainsafe/is-ip": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/@chainsafe/libp2p-gossipsub": { - "version": "6.1.0", - "license": "Apache-2.0", - "dependencies": { - "@libp2p/crypto": "^1.0.3", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.3.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/pubsub": "^6.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "denque": "^1.5.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "protobufjs": "^6.11.2", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "npm": ">=8.7.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/peer-record": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise": { - "version": "11.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection-encrypter": "^3.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/hkdf": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.1", - "it-length-prefixed": "^8.0.2", - "it-pair": "^2.0.2", - "it-pb-stream": "^2.0.2", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { - "version": "11.0.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@chainsafe/libp2p-noise/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@didtools/cacao": { - "version": "1.1.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@ipld/dag-cbor": "^7.0.1", - "apg-js": "^4.1.1", - "caip": "^1.1.0", - "multiformats": "^9.5.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/@didtools/cacao/node_modules/@ipld/dag-cbor": { - "version": "7.0.3", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "node_modules/@didtools/cacao/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/@didtools/cacao/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@didtools/cacao/node_modules/uint8arrays/node_modules/multiformats": { - "version": "11.0.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@didtools/pkh-ethereum": { - "version": "0.0.1", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@didtools/cacao": "^1.0.0", - "@ethersproject/wallet": "^5.7.0", - "@stablelib/random": "^1.0.2", - "caip": "^1.1.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/@ethersproject/abi": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/abstract-provider": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0" - } - }, - "node_modules/@ethersproject/abstract-signer": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/address": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/base64": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0" - } - }, - "node_modules/@ethersproject/basex": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/properties": "^5.7.0" - } - }, - "node_modules/@ethersproject/bignumber": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "bn.js": "^5.2.1" - } - }, - "node_modules/@ethersproject/bignumber/node_modules/bn.js": { - "version": "5.2.1", - "license": "MIT" - }, - "node_modules/@ethersproject/bytes": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/constants": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0" - } - }, - "node_modules/@ethersproject/contracts": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abi": "^5.7.0", - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0" - } - }, - "node_modules/@ethersproject/hash": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/hdnode": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "node_modules/@ethersproject/json-wallets": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "aes-js": "3.0.0", - "scrypt-js": "3.0.1" - } - }, - "node_modules/@ethersproject/keccak256": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "js-sha3": "0.8.0" - } - }, - "node_modules/@ethersproject/logger": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT" - }, - "node_modules/@ethersproject/networks": { - "version": "5.7.1", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/pbkdf2": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/sha2": "^5.7.0" - } - }, - "node_modules/@ethersproject/properties": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/providers": { - "version": "5.7.2", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0", - "bech32": "1.1.4", - "ws": "7.4.6" - } - }, - "node_modules/@ethersproject/providers/node_modules/ws": { - "version": "7.4.6", - "license": "MIT", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@ethersproject/random": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/rlp": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/sha2": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "hash.js": "1.1.7" - } - }, - "node_modules/@ethersproject/signing-key": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/signing-key/node_modules/bn.js": { - "version": "5.2.1", - "license": "MIT" - }, - "node_modules/@ethersproject/solidity": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "node_modules/@ethersproject/strings": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/transactions": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/units": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "node_modules/@ethersproject/wallet": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/json-wallets": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "node_modules/@ethersproject/web": { - "version": "5.7.1", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "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" - } - }, - "node_modules/@ethersproject/wordlists": { - "version": "5.7.0", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "node_modules/@grpc/grpc-js": { - "version": "1.8.7", - "license": "Apache-2.0", - "dependencies": { - "@grpc/proto-loader": "^0.7.0", - "@types/node": ">=12.12.47" - }, - "engines": { - "node": "^8.13.0 || >=10.10.0" - } - }, - "node_modules/@grpc/proto-loader": { - "version": "0.7.4", - "license": "Apache-2.0", - "dependencies": { - "@types/long": "^4.0.1", - "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^7.0.0", - "yargs": "^16.2.0" - }, - "bin": { - "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@grpc/proto-loader/node_modules/cliui": { - "version": "7.0.4", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/@grpc/proto-loader/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@grpc/proto-loader/node_modules/protobufjs/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/@grpc/proto-loader/node_modules/yargs": { - "version": "16.2.0", - "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@hapi/accept": { - "version": "5.0.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/address": { - "version": "5.1.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^11.0.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@hapi/address/node_modules/@hapi/hoek": { - "version": "11.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/ammo": { - "version": "5.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/b64": { - "version": "5.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/boom": { - "version": "9.1.4", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/bounce": { - "version": "2.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/bourne": { - "version": "2.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/call": { - "version": "8.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/catbox": { - "version": "11.1.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/podium": "4.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/catbox-memory": { - "version": "5.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/content": { - "version": "5.0.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x" - } - }, - "node_modules/@hapi/cryptiles": { - "version": "5.1.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/file": { - "version": "2.0.0", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/formula": { - "version": "3.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/hapi": { - "version": "20.2.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/accept": "^5.0.1", - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/bounce": "^2.0.0", - "@hapi/call": "^8.0.0", - "@hapi/catbox": "^11.1.1", - "@hapi/catbox-memory": "^5.0.0", - "@hapi/heavy": "^7.0.1", - "@hapi/hoek": "^9.0.4", - "@hapi/mimos": "^6.0.0", - "@hapi/podium": "^4.1.1", - "@hapi/shot": "^5.0.5", - "@hapi/somever": "^3.0.0", - "@hapi/statehood": "^7.0.4", - "@hapi/subtext": "^7.0.3", - "@hapi/teamwork": "^5.1.1", - "@hapi/topo": "^5.0.0", - "@hapi/validate": "^1.1.1" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/heavy": { - "version": "7.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/hoek": { - "version": "9.1.1", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/iron": { - "version": "6.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/mimos": { - "version": "6.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x", - "mime-db": "1.x.x" - } - }, - "node_modules/@hapi/nigel": { - "version": "4.0.2", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.4", - "@hapi/vise": "^4.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/pez": { - "version": "5.0.3", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/content": "^5.0.2", - "@hapi/hoek": "9.x.x", - "@hapi/nigel": "4.x.x" - } - }, - "node_modules/@hapi/pinpoint": { - "version": "2.0.1", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/podium": { - "version": "4.1.3", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x", - "@hapi/teamwork": "5.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/shot": { - "version": "5.0.5", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/somever": { - "version": "3.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/bounce": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/statehood": { - "version": "7.0.4", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/bounce": "2.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/iron": "6.x.x", - "@hapi/validate": "1.x.x" - } - }, - "node_modules/@hapi/subtext": { - "version": "7.0.4", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/content": "^5.0.2", - "@hapi/file": "2.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/pez": "^5.0.1", - "@hapi/wreck": "17.x.x" - } - }, - "node_modules/@hapi/teamwork": { - "version": "5.1.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@hapi/tlds": { - "version": "1.0.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@hapi/topo": { - "version": "5.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@hapi/validate": { - "version": "1.1.3", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0" - } - }, - "node_modules/@hapi/vise": { - "version": "4.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@hapi/wreck": { - "version": "17.2.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "node_modules/@ipld/car": { - "version": "5.1.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "cborg": "^1.9.0", - "multiformats": "^11.0.0", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@ipld/car/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@ipld/dag-cbor": { - "version": "6.0.13", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "cborg": "^1.2.1", - "multiformats": "^9.0.0" - } - }, - "node_modules/@ipld/dag-cbor/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/@ipld/dag-json": { - "version": "10.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@ipld/dag-pb": { - "version": "2.1.13", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "multiformats": "^9.0.0" - } - }, - "node_modules/@ipld/dag-pb/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/console/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.4.2", - "@jest/reporters": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.4.2", - "jest-config": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-resolve-dependencies": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "jest-watcher": "^29.4.2", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/core/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/environment": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "expect": "^29.4.2", - "jest-snapshot": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect-utils": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect-utils/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/globals": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/types": "^29.4.2", - "jest-mock": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/reporters": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/reporters/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/schemas": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.25.16" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/source-map": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-result": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-sequencer": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/test-result": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/transform": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/convert-source-map": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/write-file-atomic": { - "version": "4.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/@jest/types": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/@jest/types/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.3", - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "license": "MIT" - }, - "node_modules/@libp2p/bootstrap": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-info": "^1.0.7", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/crypto": { - "version": "1.0.11", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-keys": "^1.0.2", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^4.0.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/crypto/node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/@libp2p/crypto/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/crypto/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "it-drain": "^2.0.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/delegated-content-routing/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/delegated-peer-routing": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.1", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-peer-routing/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/delegated-peer-routing/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/delegated-peer-routing/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/floodsub": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/pubsub": "^6.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.3" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/floodsub/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/floodsub/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-address-manager": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-connection": { - "version": "3.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-connection-encrypter": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-connection-manager": { - "version": "1.3.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-content-routing": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-dht": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-dht/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-keychain": { - "version": "2.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-keychain/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-keys": { - "version": "1.0.7", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-libp2p": { - "version": "1.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interface-peer-store": "^1.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-libp2p/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-metrics": { - "version": "4.0.5", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-discovery": { - "version": "1.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-id": { - "version": "1.0.6", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-info": { - "version": "1.0.8", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-info/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-routing": { - "version": "1.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-peer-store": { - "version": "1.2.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-record": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-pubsub": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-pushable": "^3.0.0", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-pubsub/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/interface-record": { - "version": "2.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^1.0.0", - "uint8arraylist": "^2.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-registrar": { - "version": "2.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-stream-muxer": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-stream-types": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interface-transport": { - "version": "2.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/interfaces": { - "version": "3.3.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht": { - "version": "7.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-first": "^2.0.0", - "it-length": "^2.0.0", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "it-take": "^2.0.0", - "k-bucket": "^5.1.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/kad-dht/node_modules/ip-regex": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/ipaddr.js": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/kad-dht/node_modules/it-take": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/p-queue": { - "version": "7.3.0", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/private-ip": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/kad-dht/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/logger": { - "version": "2.0.5", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "debug": "^4.3.3", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/logger/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mdns": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/multicast-dns": "^7.2.1", - "multicast-dns": "^7.2.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mdns/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mplex": { - "version": "7.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "benchmark": "^2.1.4", - "err-code": "^3.0.1", - "it-batched-bytes": "^1.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.4", - "rate-limiter-flexible": "^2.3.9", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mplex/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/mplex/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/mplex/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/mplex/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/mplex/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/multistream-select": { - "version": "3.1.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.6", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-merge": "^1.0.4", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/multistream-select/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@libp2p/multistream-select/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/multistream-select/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-collections": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-collections/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id-factory": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id-factory/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id-factory/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-id/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/@libp2p/peer-record": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/peer-store/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/prometheus-metrics": { - "version": "1.1.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/logger": "^2.0.2", - "it-foreach": "^1.0.0", - "it-stream-types": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "peerDependencies": { - "prom-client": "^14.1.0" - } - }, - "node_modules/@libp2p/pubsub": { - "version": "6.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.2.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/pubsub/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/pubsub/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/pubsub/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/pubsub/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/pubsub/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/pubsub/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/record": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-dht": "^2.0.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/record/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/tcp": { - "version": "6.1.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "stream-to-it": "^0.2.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/topology": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/logger": "^2.0.1", - "it-all": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/topology/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/topology/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/tracked-map": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-metrics": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/utils": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@achingbrain/ip-address": "^8.1.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-peer-store": "^1.2.1", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "is-loopback-addr": "^2.0.1", - "it-stream-types": "^1.0.4", - "private-ip": "^2.1.1", - "uint8arraylist": "^2.3.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/utils/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/utils/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/utils/node_modules/is-loopback-addr": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/@libp2p/webrtc-peer": { - "version": "2.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "it-pushable": "^3.0.0", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "p-event": "^5.0.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-peer/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-peer/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/webrtc-peer/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.1", - "@libp2p/webrtc-peer": "^2.0.0", - "@libp2p/webrtc-star-protocol": "^3.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "socket.io-client": "^4.1.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star-protocol": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0", - "socket.io-client": "^4.1.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/webrtc-star/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/webrtc-star/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/websockets": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.2", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-ws": "^5.0.0", - "p-defer": "^4.0.0", - "p-timeout": "^6.0.0", - "wherearewe": "^2.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@libp2p/websockets/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/@libp2p/websockets/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@libp2p/websockets/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/websockets/node_modules/p-timeout": { - "version": "6.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@libp2p/websockets/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@lukeed/csprng": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.10", - "license": "BSD-3-Clause", - "dependencies": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" - } - }, - "node_modules/@multiformats/base-x": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/@multiformats/mafmt": { - "version": "11.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr": { - "version": "11.4.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@chainsafe/is-ip": "^2.0.1", - "dns-over-http-resolver": "^2.1.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr-to-uri": { - "version": "9.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/dns-over-http-resolver": { - "version": "2.1.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "debug": "^4.3.1", - "native-fetch": "^4.0.2", - "receptacle": "^1.3.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/native-fetch": { - "version": "4.0.2", - "license": "MIT", - "peerDependencies": { - "undici": "*" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/multiaddr/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/murmur3": { - "version": "2.1.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0", - "murmurhash3js-revisited": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/uri-to-multiaddr": { - "version": "7.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/multiaddr": "^11.0.0", - "is-ip": "^5.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@multiformats/uri-to-multiaddr/node_modules/ip-regex": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@multiformats/uri-to-multiaddr/node_modules/is-ip": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "ip-regex": "^5.0.0", - "super-regex": "^0.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@nestjs/cli": { - "version": "10.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "@angular-devkit/schematics-cli": "16.1.0", - "@nestjs/schematics": "^10.0.1", - "chalk": "4.1.2", - "chokidar": "3.5.3", - "cli-table3": "0.6.3", - "commander": "4.1.1", - "fork-ts-checker-webpack-plugin": "8.0.0", - "inquirer": "8.2.5", - "node-emoji": "1.11.0", - "ora": "5.4.1", - "os-name": "4.0.1", - "rimraf": "4.4.1", - "shelljs": "0.8.5", - "source-map-support": "0.5.21", - "tree-kill": "1.2.2", - "tsconfig-paths": "4.2.0", - "tsconfig-paths-webpack-plugin": "4.0.1", - "typescript": "5.1.3", - "webpack": "5.87.0", - "webpack-node-externals": "3.0.0" - }, - "bin": { - "nest": "bin/nest.js" - }, - "engines": { - "node": ">= 16" - }, - "peerDependencies": { - "@swc/cli": "^0.1.62", - "@swc/core": "^1.3.62" - }, - "peerDependenciesMeta": { - "@swc/cli": { - "optional": true - }, - "@swc/core": { - "optional": true - } - } - }, - "node_modules/@nestjs/cli/node_modules/@types/estree": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@nestjs/cli/node_modules/acorn": { - "version": "8.9.0", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/@nestjs/cli/node_modules/acorn-import-assertions": { - "version": "1.9.0", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/@nestjs/cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nestjs/cli/node_modules/brace-expansion": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@nestjs/cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nestjs/cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nestjs/cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/commander": { - "version": "4.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/@nestjs/cli/node_modules/es-module-lexer": { - "version": "1.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@nestjs/cli/node_modules/glob": { - "version": "9.3.5", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "minimatch": "^8.0.2", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nestjs/cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@nestjs/cli/node_modules/json5": { - "version": "2.2.3", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@nestjs/cli/node_modules/minimatch": { - "version": "8.0.4", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nestjs/cli/node_modules/rimraf": { - "version": "4.4.1", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^9.2.0" - }, - "bin": { - "rimraf": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nestjs/cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@nestjs/cli/node_modules/tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@nestjs/cli/node_modules/typescript": { - "version": "5.1.3", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@nestjs/cli/node_modules/webpack": { - "version": "5.87.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/@nestjs/common": { - "version": "10.0.2", - "license": "MIT", - "dependencies": { - "iterare": "1.2.1", - "tslib": "2.5.3", - "uid": "2.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "class-transformer": "*", - "class-validator": "*", - "reflect-metadata": "^0.1.12", - "rxjs": "^7.1.0" - }, - "peerDependenciesMeta": { - "class-transformer": { - "optional": true - }, - "class-validator": { - "optional": true - } - } - }, - "node_modules/@nestjs/core": { - "version": "10.0.2", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "@nuxtjs/opencollective": "0.3.2", - "fast-safe-stringify": "2.1.1", - "iterare": "1.2.1", - "path-to-regexp": "3.2.0", - "tslib": "2.5.3", - "uid": "2.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "@nestjs/common": "^10.0.0", - "@nestjs/microservices": "^10.0.0", - "@nestjs/platform-express": "^10.0.0", - "@nestjs/websockets": "^10.0.0", - "reflect-metadata": "^0.1.12", - "rxjs": "^7.1.0" - }, - "peerDependenciesMeta": { - "@nestjs/microservices": { - "optional": true - }, - "@nestjs/platform-express": { - "optional": true - }, - "@nestjs/websockets": { - "optional": true - } - } - }, - "node_modules/@nestjs/core/node_modules/path-to-regexp": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/@nestjs/platform-express": { - "version": "10.0.2", - "license": "MIT", - "dependencies": { - "body-parser": "1.20.2", - "cors": "2.8.5", - "express": "4.18.2", - "multer": "1.4.4-lts.1", - "tslib": "2.5.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "@nestjs/common": "^10.0.0", - "@nestjs/core": "^10.0.0" - } - }, - "node_modules/@nestjs/platform-express/node_modules/body-parser": { - "version": "1.20.2", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/@nestjs/platform-express/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/@nestjs/platform-express/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/@nestjs/platform-express/node_modules/raw-body": { - "version": "2.5.2", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/@nestjs/schematics": { - "version": "10.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "comment-json": "4.2.3", - "jsonc-parser": "3.2.0", - "pluralize": "8.0.0" - }, - "peerDependencies": { - "typescript": ">=4.8.2" - } - }, - "node_modules/@nestjs/testing": { - "version": "10.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "2.5.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nest" - }, - "peerDependencies": { - "@nestjs/common": "^10.0.0", - "@nestjs/core": "^10.0.0", - "@nestjs/microservices": "^10.0.0", - "@nestjs/platform-express": "^10.0.0" - }, - "peerDependenciesMeta": { - "@nestjs/microservices": { - "optional": true - }, - "@nestjs/platform-express": { - "optional": true - } - } - }, - "node_modules/@noble/ed25519": { - "version": "1.7.1", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT" - }, - "node_modules/@noble/secp256k1": { - "version": "1.7.0", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT" - }, - "node_modules/@nuxtjs/opencollective": { - "version": "0.3.2", - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "consola": "^2.15.0", - "node-fetch": "^2.6.1" - }, - "bin": { - "opencollective": "bin/opencollective.js" - }, - "engines": { - "node": ">=8.0.0", - "npm": ">=5.0.0" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/@nuxtjs/opencollective/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@nuxtjs/opencollective/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@peculiar/asn1-schema": { - "version": "2.3.6", - "license": "MIT", - "dependencies": { - "asn1js": "^3.0.5", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "node_modules/@peculiar/json-schema": { - "version": "1.1.12", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@peculiar/webcrypto": { - "version": "1.4.3", - "license": "MIT", - "dependencies": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "pvtsutils": "^1.3.2", - "tslib": "^2.5.0", - "webcrypto-core": "^1.7.7" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "graceful-fs": "4.2.10" - }, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/npm-conf": { - "version": "1.0.5", - "license": "MIT", - "dependencies": { - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "license": "BSD-3-Clause", - "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/@sinclair/typebox": { - "version": "0.25.21", - "devOptional": true, - "license": "MIT" - }, - "node_modules/@sinonjs/commons": { - "version": "2.0.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.0.2", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/commons": "^2.0.0" - } - }, - "node_modules/@socket.io/component-emitter": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/@stablelib/aead": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/binary": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/int": "^1.0.1" - } - }, - "node_modules/@stablelib/bytes": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/chacha": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/chacha20poly1305": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/aead": "^1.0.1", - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/poly1305": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/constant-time": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/ed25519": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "@stablelib/random": "^1.0.2", - "@stablelib/sha512": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/hash": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/hkdf": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/hash": "^1.0.1", - "@stablelib/hmac": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/hmac": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/int": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/keyagreement": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/bytes": "^1.0.1" - } - }, - "node_modules/@stablelib/poly1305": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/random": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/sha256": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/sha512": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/wipe": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/@stablelib/x25519": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "@stablelib/keyagreement": "^1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/xchacha20": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "node_modules/@stablelib/xchacha20poly1305": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "@stablelib/aead": "^1.0.1", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1", - "@stablelib/xchacha20": "^1.0.1" - } - }, - "node_modules/@tokenizer/token": { - "version": "0.3.0", - "license": "MIT" - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/babel__core": { - "version": "7.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.11.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.3.0" - } - }, - "node_modules/@types/bn.js": { - "version": "5.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/body-parser": { - "version": "1.19.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "node_modules/@types/connect": { - "version": "3.4.34", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/cookie": { - "version": "0.4.1", - "license": "MIT" - }, - "node_modules/@types/cookiejar": { - "version": "2.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/cors": { - "version": "2.8.13", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/crypto-js": { - "version": "4.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/dns-packet": { - "version": "5.2.4", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/elliptic": { - "version": "6.4.14", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/bn.js": "*" - } - }, - "node_modules/@types/eslint": { - "version": "8.4.10", - "license": "MIT", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "license": "MIT", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "0.0.51", - "license": "MIT" - }, - "node_modules/@types/events": { - "version": "1.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/express": { - "version": "4.17.15", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.31", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.32", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.3", - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "28.1.8", - "dev": true, - "license": "MIT", - "dependencies": { - "expect": "^28.0.0", - "pretty-format": "^28.0.0" - } - }, - "node_modules/@types/jest/node_modules/@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/expect-utils": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^28.0.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/schemas": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.24.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/@jest/types": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/@sinclair/typebox": { - "version": "0.24.51", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@types/jest/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/diff-sequences": { - "version": "28.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/expect": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/expect-utils": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@types/jest/node_modules/jest-diff": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^28.1.1", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-get-type": { - "version": "28.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-matcher-utils": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-message-util": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/jest-util": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/pretty-format": { - "version": "28.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/jest/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "license": "MIT" - }, - "node_modules/@types/long": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/@types/luxon": { - "version": "3.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/mime": { - "version": "2.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/minimatch": { - "version": "3.0.5", - "license": "MIT" - }, - "node_modules/@types/mock-fs": { - "version": "4.13.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/multicast-dns": { - "version": "7.2.1", - "license": "MIT", - "dependencies": { - "@types/dns-packet": "*", - "@types/node": "*" - } - }, - "node_modules/@types/node": { - "version": "18.11.9", - "license": "MIT" - }, - "node_modules/@types/node-fetch": { - "version": "2.5.11", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "form-data": "^3.0.0" - } - }, - "node_modules/@types/orbit-db": { - "version": "1.0.1", - "resolved": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/elliptic": "^6.4.6", - "@types/events": "^1.2.0", - "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", - "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" - } - }, - "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", - "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", - "dev": true, - "dependencies": { - "cborg": "^2.0.1", - "multiformats": "^12.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor/node_modules/multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/@libp2p/crypto": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", - "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", - "dev": true, - "dependencies": { - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interfaces": "^3.2.0", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^5.0.0", - "uint8arraylist": "^2.4.3", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/@types/ipfs": { - "version": "0.23.6", - "resolved": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/orbit-db/node_modules/cborg": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", - "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", - "dev": true, - "bin": { - "cborg": "cli.js" - } - }, - "node_modules/@types/orbit-db/node_modules/long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "dev": true - }, - "node_modules/@types/orbit-db/node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true, - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/@types/orbit-db/node_modules/orbit-db": { - "name": "@orbitdb/core", - "version": "0.30.1", - "resolved": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", - "dev": true, - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@libp2p/crypto": "^1.0.12", - "it-pipe": "^2.0.5", - "level": "^8.0.0", - "lru": "^3.1.0", - "multiformats": "^11.0.1", - "p-queue": "^7.3.4", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.3" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/protobufjs": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", - "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", - "dev": true, - "hasInstallScript": true, - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/protons-runtime": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", - "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", - "dev": true, - "dependencies": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.4.3" - }, - "peerDependencies": { - "uint8arraylist": "^2.3.2" - } - }, - "node_modules/@types/orbit-db/node_modules/uint8arraylist": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", - "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", - "dev": true, - "dependencies": { - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/orbit-db/node_modules/uint8arrays": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", - "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", - "dev": true, - "dependencies": { - "multiformats": "^12.0.1" - } - }, - "node_modules/@types/orbit-db/node_modules/uint8arrays/node_modules/multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/prettier": { - "version": "2.7.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/qs": { - "version": "6.9.5", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/range-parser": { - "version": "1.2.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/retry": { - "version": "0.12.1", - "license": "MIT" - }, - "node_modules/@types/serve-static": { - "version": "1.15.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "node_modules/@types/stack-utils": { - "version": "2.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/superagent": { - "version": "4.1.18", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/cookiejar": "*", - "@types/node": "*" - } - }, - "node_modules/@types/supertest": { - "version": "2.0.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/superagent": "*" - } - }, - "node_modules/@types/tmp": { - "version": "0.2.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/validator": { - "version": "13.1.4", - "license": "MIT" - }, - "node_modules/@types/ws": { - "version": "8.5.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/yargs": { - "version": "17.0.15", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "license": "MIT" - }, - "node_modules/@vascosantos/moving-average": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "license": "MIT" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webpack-cli/configtest": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } - }, - "node_modules/@webpack-cli/info": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } - }, - "node_modules/@webpack-cli/serve": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "license": "BSD-3-Clause" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "license": "Apache-2.0" - }, - "node_modules/abbrev": { - "version": "1.1.1", - "license": "ISC" - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" - } - }, - "node_modules/abortable-iterator": { - "version": "3.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^1.0.2" - } - }, - "node_modules/abstract-level": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "catering": "^2.1.0", - "is-buffer": "^2.0.5", - "level-supports": "^4.0.0", - "level-transcoder": "^1.0.1", - "module-error": "^1.0.1", - "queue-microtask": "^1.2.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/abstract-level/node_modules/level-supports": { - "version": "4.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/abstract-leveldown": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "catering": "^2.0.0", - "is-buffer": "^2.0.5", - "level-concat-iterator": "^3.0.0", - "level-supports": "^2.0.1", - "queue-microtask": "^1.2.3" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/abstract-logging": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/accepts": { - "version": "1.3.8", - "license": "MIT", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/aes-js": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/agent-base": { - "version": "6.0.2", - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.12.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-align": { - "version": "3.0.1", - "license": "ISC", - "dependencies": { - "string-width": "^4.1.0" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/any-signal": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/anymatch": { - "version": "3.1.2", - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/apg-js": { - "version": "4.1.3", - "license": "BSD-2-Clause" - }, - "node_modules/append-field": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/aproba": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/arg": { - "version": "4.1.3", - "dev": true, - "license": "MIT" - }, - "node_modules/argparse": { - "version": "1.0.10", - "dev": true, - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/argparse/node_modules/sprintf-js": { - "version": "1.0.3", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/args": { - "version": "5.0.3", - "license": "MIT", - "dependencies": { - "camelcase": "5.0.0", - "chalk": "2.4.2", - "leven": "2.1.0", - "mri": "1.1.4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/args/node_modules/camelcase": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/array-shuffle": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/array-timsort": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/asap": { - "version": "2.0.6", - "license": "MIT" - }, - "node_modules/asmcrypto.js": { - "version": "2.3.2", - "license": "MIT" - }, - "node_modules/asn1": { - "version": "0.2.6", - "license": "MIT", - "optional": true, - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/asn1.js": { - "version": "5.4.1", - "license": "MIT", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/asn1js": { - "version": "3.0.5", - "license": "BSD-3-Clause", - "dependencies": { - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/assert": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/async": { - "version": "2.6.3", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "devOptional": true, - "license": "MIT" - }, - "node_modules/atomic-sleep": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.12.0", - "license": "MIT", - "optional": true - }, - "node_modules/babel-jest": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/transform": "^29.4.2", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.4.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/babel-jest/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-jest": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "babel-plugin-jest-hoist": "^29.4.2", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/base-x": { - "version": "3.0.9", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.0.1" - } - }, - "node_modules/base64-js": { - "version": "1.3.1", - "license": "MIT" - }, - "node_modules/base64id": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": "^4.5.0 || >= 5.9" - } - }, - "node_modules/basic-auth": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/bech32": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/benchmark": { - "version": "2.1.4", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.4", - "platform": "^1.3.3" - } - }, - "node_modules/big.js": { - "version": "5.2.2", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "license": "MIT", - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bintrees": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/bip66": { - "version": "1.1.5", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.0.1" - } - }, - "node_modules/bl": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/blakejs": { - "version": "1.1.0", - "license": "CC0-1.0" - }, - "node_modules/blob-to-it": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "browser-readablestream-to-it": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-store": "^3.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-take": "^2.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-core/node_modules/it-take": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-datastore-adapter": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "blockstore-core": "^3.0.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-drain": "^2.0.0", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-datastore-adapter/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/blockstore-datastore-adapter/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/bn.js": { - "version": "4.11.9", - "license": "MIT" - }, - "node_modules/body-parser": { - "version": "1.20.1", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/boxen": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.0", - "chalk": "^5.0.1", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "6.2.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/boxen/node_modules/camelcase": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/chalk": { - "version": "5.1.2", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/boxen/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/boxen/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/strip-ansi": { - "version": "7.0.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/boxen/node_modules/wrap-ansi": { - "version": "8.0.1", - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/brorand": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/browser-level": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "abstract-level": "^1.0.2", - "catering": "^2.1.1", - "module-error": "^1.0.2", - "run-parallel-limit": "^1.1.0" - } - }, - "node_modules/browser-readablestream-to-it": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserslist": { - "version": "4.16.6", - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } - }, - "node_modules/bs-logger": { - "version": "0.2.6", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-json-stable-stringify": "2.x" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/bs58": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "base-x": "^3.0.2" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "license": "Apache-2.0", - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "license": "MIT", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/busboy": { - "version": "1.6.0", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/byte-access": { - "version": "1.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/byteman": { - "version": "1.3.5", - "license": "MIT" - }, - "node_modules/bytes": { - "version": "3.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/bytestreamjs": { - "version": "2.0.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/caip": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/call-bind": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001235", - "license": "CC-BY-4.0", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } - }, - "node_modules/canonicalize": { - "version": "1.0.8", - "license": "Apache-2.0" - }, - "node_modules/capital-case": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/caseless": { - "version": "0.12.0", - "license": "Apache-2.0", - "optional": true - }, - "node_modules/catering": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cborg": { - "version": "1.10.0", - "license": "Apache-2.0", - "bin": { - "cborg": "cli.js" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/change-case": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "dev": true, - "license": "MIT" - }, - "node_modules/chokidar": { - "version": "3.5.3", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "license": "MIT", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "3.7.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/cipher-base": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "dev": true, - "license": "MIT" - }, - "node_modules/class-is": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/class-transformer": { - "version": "0.5.1", - "license": "MIT" - }, - "node_modules/class-validator": { - "version": "0.13.1", - "license": "MIT", - "dependencies": { - "@types/validator": "^13.1.3", - "libphonenumber-js": "^1.9.7", - "validator": "^13.5.2" - } - }, - "node_modules/classic-level": { - "version": "1.2.0", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "abstract-level": "^1.0.2", - "catering": "^2.1.0", - "module-error": "^1.0.1", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-boxes": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-table": { - "version": "0.3.6", - "dependencies": { - "colors": "1.0.3" - }, - "engines": { - "node": ">= 0.2.0" - } - }, - "node_modules/cli-table/node_modules/colors": { - "version": "1.0.3", - "license": "MIT", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/cli-table3": { - "version": "0.6.3", - "dev": true, - "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 10" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clone": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-deep": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/clone-regexp": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "is-regexp": "^3.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/co": { - "version": "4.6.0", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/code-point-at": { - "version": "1.1.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/coercer": { - "version": "1.1.2", - "license": "ISC" - }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/color-convert": { - "version": "1.9.3", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/color-support": { - "version": "1.1.3", - "license": "ISC", - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colorette": { - "version": "1.2.2", - "license": "MIT" - }, - "node_modules/colors": { - "version": "1.4.0", - "license": "MIT", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "devOptional": true, - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "7.2.0", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/comment-json": { - "version": "4.2.3", - "dev": true, - "license": "MIT", - "dependencies": { - "array-timsort": "^1.0.3", - "core-util-is": "^1.0.3", - "esprima": "^4.0.1", - "has-own-prop": "^2.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/comment-json/node_modules/core-util-is": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "license": "MIT" - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "engines": [ - "node >= 0.8" - ], - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-stream/node_modules/buffer-from": { - "version": "1.1.2", - "license": "MIT" - }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.7", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/concat-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT" - }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/config-chain": { - "version": "1.1.13", - "license": "MIT", - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/configstore": { - "version": "6.0.0", - "license": "BSD-2-Clause", - "dependencies": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" - } - }, - "node_modules/consola": { - "version": "2.15.3", - "license": "MIT" - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "license": "ISC" - }, - "node_modules/constant-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "license": "MIT", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-hrtime": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/convert-source-map": { - "version": "1.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.1" - } - }, - "node_modules/convert-source-map/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/cookie": { - "version": "0.4.2", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "license": "MIT" - }, - "node_modules/core-js": { - "version": "3.27.2", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/cors": { - "version": "2.8.5", - "license": "MIT", - "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/corser": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cosmiconfig/node_modules/parse-json": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/create-hash": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/create-require": { - "version": "1.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/cross-env": { - "version": "5.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^6.0.5" - }, - "bin": { - "cross-env": "dist/bin/cross-env.js", - "cross-env-shell": "dist/bin/cross-env-shell.js" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/cross-env/node_modules/cross-spawn": { - "version": "6.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/cross-env/node_modules/path-key": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/cross-env/node_modules/semver": { - "version": "5.7.1", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/cross-env/node_modules/shebang-command": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cross-env/node_modules/shebang-regex": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cross-env/node_modules/which": { - "version": "1.3.1", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-js": { - "version": "4.1.1", - "license": "MIT" - }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dag-jose": { - "version": "4.0.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "multiformats": "^11.0.0" - } - }, - "node_modules/dag-jose-utils": { - "version": "2.0.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@ipld/dag-cbor": "^7.0.1", - "multiformats": "^9.5.1" - } - }, - "node_modules/dag-jose-utils/node_modules/@ipld/dag-cbor": { - "version": "7.0.3", - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "node_modules/dag-jose-utils/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/dag-jose/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/dashdash": { - "version": "1.14.1", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/datastore-core": { - "version": "8.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^1.0.4", - "it-drain": "^1.0.4", - "it-filter": "^1.0.2", - "it-map": "^1.0.5", - "it-merge": "^1.0.1", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-take": "^1.0.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-core/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/datastore-core/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-core/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-fs": { - "version": "8.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "datastore-core": "^8.0.1", - "fast-write-atomic": "^0.2.0", - "interface-datastore": "^7.0.0", - "it-glob": "^1.0.1", - "it-map": "^1.0.5", - "it-parallel-batch": "^1.0.9", - "mkdirp": "^1.0.4" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-fs/node_modules/mkdirp": { - "version": "1.0.4", - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/datastore-level": { - "version": "9.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "abstract-level": "^1.0.3", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "it-filter": "^2.0.0", - "it-map": "^2.0.0", - "it-sort": "^2.0.0", - "it-take": "^2.0.0", - "level": "^8.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-level/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-level/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-level/node_modules/it-take": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-pubsub": { - "version": "7.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/datastore-pubsub/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/dateformat": { - "version": "4.6.3", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dedent": { - "version": "0.7.0", - "dev": true, - "license": "MIT" - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deepmerge": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-gateway": { - "version": "6.0.3", - "license": "BSD-2-Clause", - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/deferred-leveldown": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "abstract-leveldown": "~6.0.0", - "inherits": "^2.0.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/deferred-leveldown/node_modules/abstract-leveldown": { - "version": "6.0.3", - "license": "MIT", - "dependencies": { - "level-concat-iterator": "~2.0.0", - "xtend": "~4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/deferred-leveldown/node_modules/level-concat-iterator": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/define-properties": { - "version": "1.1.3", - "license": "MIT", - "dependencies": { - "object-keys": "^1.0.12" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-properties/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/delay": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/denque": { - "version": "1.5.1", - "license": "Apache-2.0", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "license": "MIT", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-libc": { - "version": "2.0.1", - "license": "Apache-2.0", - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/dezalgo": { - "version": "1.0.4", - "license": "ISC", - "dependencies": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "node_modules/did-jwt": { - "version": "6.11.0", - "license": "Apache-2.0", - "dependencies": { - "@stablelib/ed25519": "^1.0.2", - "@stablelib/random": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.2", - "@stablelib/xchacha20poly1305": "^1.0.1", - "bech32": "^2.0.0", - "canonicalize": "^1.0.8", - "did-resolver": "^4.0.0", - "elliptic": "^6.5.4", - "js-sha3": "^0.8.0", - "multiformats": "^9.6.5", - "uint8arrays": "^3.0.0" - } - }, - "node_modules/did-jwt/node_modules/bech32": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/did-jwt/node_modules/did-resolver": { - "version": "4.0.1", - "license": "Apache-2.0" - }, - "node_modules/did-jwt/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/did-resolver": { - "version": "3.2.2", - "license": "Apache-2.0" - }, - "node_modules/dids": { - "version": "3.4.0", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "@didtools/cacao": "^1.0.0", - "@didtools/pkh-ethereum": "^0.0.1", - "@stablelib/random": "^1.0.1", - "dag-jose-utils": "^2.0.0", - "did-jwt": "^6.0.0", - "did-resolver": "^3.1.5", - "multiformats": "^9.4.10", - "rpc-utils": "^0.6.1", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/dids/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/diff": { - "version": "4.0.2", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/diff-match-patch": { - "version": "1.0.5", - "license": "Apache-2.0" - }, - "node_modules/diff-sequences": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/dlv": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/dns-over-http-resolver": { - "version": "1.2.3", - "license": "MIT", - "dependencies": { - "debug": "^4.3.1", - "native-fetch": "^3.0.0", - "receptacle": "^1.3.2" - } - }, - "node_modules/dns-packet": { - "version": "5.4.0", - "license": "MIT", - "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/domexception": { - "version": "1.0.1", - "license": "MIT", - "optional": true, - "dependencies": { - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "4.0.2", - "license": "BSD-2-Clause", - "optional": true - }, - "node_modules/dot-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-prop": { - "version": "6.0.1", - "license": "MIT", - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dotenv": { - "version": "8.2.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=8" - } - }, - "node_modules/drbg.js": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "browserify-aes": "^1.0.6", - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "license": "MIT", - "optional": true, - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ecc-jsbn/node_modules/jsbn": { - "version": "0.1.1", - "license": "MIT", - "optional": true - }, - "node_modules/ecstatic": { - "version": "3.3.2", - "license": "MIT", - "dependencies": { - "he": "^1.1.1", - "mime": "^1.6.0", - "minimist": "^1.1.0", - "url-join": "^2.0.5" - }, - "bin": { - "ecstatic": "lib/ecstatic.js" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/ejs": { - "version": "3.1.8", - "license": "Apache-2.0", - "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron": { - "version": "1.8.8", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@types/node": "^8.0.24", - "electron-download": "^3.0.1", - "extract-zip": "^1.0.3" - }, - "bin": { - "electron": "cli.js" - } - }, - "node_modules/electron-download": { - "version": "3.3.0", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "debug": "^2.2.0", - "fs-extra": "^0.30.0", - "home-path": "^1.0.1", - "minimist": "^1.2.0", - "nugget": "^2.0.0", - "path-exists": "^2.1.0", - "rc": "^1.1.2", - "semver": "^5.3.0", - "sumchecker": "^1.2.0" - }, - "bin": { - "electron-download": "build/cli.js" - } - }, - "node_modules/electron-download/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/electron-download/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/electron-download/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/electron-eval": { - "version": "0.9.10", - "license": "MIT", - "optional": true, - "dependencies": { - "cross-spawn": "^5.1.0", - "electron": "^1.6.11", - "ndjson": "^1.5.0" - }, - "optionalDependencies": { - "headless": "https://github.com/paulkernfeld/node-headless/tarball/master" - } - }, - "node_modules/electron-eval/node_modules/cross-spawn": { - "version": "5.1.0", - "license": "MIT", - "optional": true, - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/electron-eval/node_modules/lru-cache": { - "version": "4.1.5", - "license": "ISC", - "optional": true, - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/electron-eval/node_modules/shebang-command": { - "version": "1.2.0", - "license": "MIT", - "optional": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron-eval/node_modules/shebang-regex": { - "version": "1.0.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron-eval/node_modules/which": { - "version": "1.3.1", - "license": "ISC", - "optional": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/electron-eval/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC", - "optional": true - }, - "node_modules/electron-fetch": { - "version": "1.7.4", - "license": "MIT", - "dependencies": { - "encoding": "^0.1.13" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.3.749", - "license": "ISC" - }, - "node_modules/electron-webrtc": { - "version": "0.3.0", - "license": "MIT", - "optional": true, - "dependencies": { - "debug": "^2.2.0", - "electron-eval": "^0.9.0", - "get-browser-rtc": "^1.0.2", - "hat": "^0.0.3" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/electron-webrtc/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/electron-webrtc/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/electron/node_modules/@types/node": { - "version": "8.10.66", - "license": "MIT", - "optional": true - }, - "node_modules/elliptic": { - "version": "6.5.4", - "license": "MIT", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/emittery": { - "version": "0.13.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/encoding": { - "version": "0.1.13", - "license": "MIT", - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.2", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "license": "MIT", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/engine.io": { - "version": "6.4.0", - "license": "MIT", - "dependencies": { - "@types/cookie": "^0.4.1", - "@types/cors": "^2.8.12", - "@types/node": ">=10.0.0", - "accepts": "~1.3.4", - "base64id": "2.0.0", - "cookie": "~0.4.1", - "cors": "~2.8.5", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.11.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/engine.io-client": { - "version": "6.2.3", - "license": "MIT", - "dependencies": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", - "xmlhttprequest-ssl": "~2.0.0" - } - }, - "node_modules/engine.io-client/node_modules/ws": { - "version": "8.2.3", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/engine.io-parser": { - "version": "5.0.4", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/envinfo": { - "version": "7.8.1", - "dev": true, - "license": "MIT", - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/err-code": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/errno": { - "version": "0.1.8", - "license": "MIT", - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "license": "MIT" - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es6-object-assign": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/es6-promise": { - "version": "4.2.8", - "license": "MIT", - "optional": true - }, - "node_modules/escalade": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-goat": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "dev": true, - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.2.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/ethers": { - "version": "5.7.2", - "funding": [ - { - "type": "individual", - "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" - }, - { - "type": "individual", - "url": "https://www.buymeacoffee.com/ricmoo" - } - ], - "license": "MIT", - "dependencies": { - "@ethersproject/abi": "5.7.0", - "@ethersproject/abstract-provider": "5.7.0", - "@ethersproject/abstract-signer": "5.7.0", - "@ethersproject/address": "5.7.0", - "@ethersproject/base64": "5.7.0", - "@ethersproject/basex": "5.7.0", - "@ethersproject/bignumber": "5.7.0", - "@ethersproject/bytes": "5.7.0", - "@ethersproject/constants": "5.7.0", - "@ethersproject/contracts": "5.7.0", - "@ethersproject/hash": "5.7.0", - "@ethersproject/hdnode": "5.7.0", - "@ethersproject/json-wallets": "5.7.0", - "@ethersproject/keccak256": "5.7.0", - "@ethersproject/logger": "5.7.0", - "@ethersproject/networks": "5.7.1", - "@ethersproject/pbkdf2": "5.7.0", - "@ethersproject/properties": "5.7.0", - "@ethersproject/providers": "5.7.2", - "@ethersproject/random": "5.7.0", - "@ethersproject/rlp": "5.7.0", - "@ethersproject/sha2": "5.7.0", - "@ethersproject/signing-key": "5.7.0", - "@ethersproject/solidity": "5.7.0", - "@ethersproject/strings": "5.7.0", - "@ethersproject/transactions": "5.7.0", - "@ethersproject/units": "5.7.0", - "@ethersproject/wallet": "5.7.0", - "@ethersproject/web": "5.7.1", - "@ethersproject/wordlists": "5.7.0" - } - }, - "node_modules/event-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "license": "MIT" - }, - "node_modules/events": { - "version": "3.3.0", - "license": "MIT", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expect": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/expect-utils": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/expect/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/express": { - "version": "4.18.2", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/cookie": { - "version": "0.5.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.7", - "license": "MIT" - }, - "node_modules/extend": { - "version": "3.0.2", - "license": "MIT", - "optional": true - }, - "node_modules/external-editor": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/external-editor/node_modules/tmp": { - "version": "0.0.33", - "dev": true, - "license": "MIT", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/extract-zip": { - "version": "1.7.0", - "license": "BSD-2-Clause", - "optional": true, - "dependencies": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - } - }, - "node_modules/extract-zip/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/extract-zip/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", - "optional": true - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "license": "MIT" - }, - "node_modules/fast-fifo": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "license": "MIT" - }, - "node_modules/fast-redact": { - "version": "3.1.2", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", - "license": "MIT" - }, - "node_modules/fast-write-atomic": { - "version": "0.2.1", - "license": "MIT" - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.1", - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "license": "MIT", - "optional": true, - "dependencies": { - "pend": "~1.2.0" - } - }, - "node_modules/fetch-mock": { - "version": "9.11.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.0.0", - "@babel/runtime": "^7.0.0", - "core-js": "^3.0.0", - "debug": "^4.1.1", - "glob-to-regexp": "^0.4.0", - "is-subset": "^0.1.1", - "lodash.isequal": "^4.5.0", - "path-to-regexp": "^2.2.1", - "querystring": "^0.2.0", - "whatwg-url": "^6.5.0" - }, - "engines": { - "node": ">=4.0.0" - }, - "funding": { - "type": "charity", - "url": "https://www.justgiving.com/refugee-support-europe" - }, - "peerDependencies": { - "node-fetch": "*" - }, - "peerDependenciesMeta": { - "node-fetch": { - "optional": true - } - } - }, - "node_modules/fetch-mock-jest": { - "version": "1.5.1", - "dev": true, - "license": "MIT", - "dependencies": { - "fetch-mock": "^9.11.0" - }, - "engines": { - "node": ">=8.0.0" - }, - "funding": { - "type": "charity", - "url": "https://www.justgiving.com/refugee-support-europe" - }, - "peerDependencies": { - "node-fetch": "*" - }, - "peerDependenciesMeta": { - "node-fetch": { - "optional": true - } - } - }, - "node_modules/fetch-mock/node_modules/tr46": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/fetch-mock/node_modules/webidl-conversions": { - "version": "4.0.2", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/fetch-mock/node_modules/whatwg-url": { - "version": "6.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/figures": { - "version": "3.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-type": { - "version": "18.2.0", - "license": "MIT", - "dependencies": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0", - "token-types": "^5.0.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/file-type?sponsor=1" - } - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/filelist": { - "version": "1.0.4", - "license": "Apache-2.0", - "dependencies": { - "minimatch": "^5.0.1" - } - }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/filesize": { - "version": "10.0.6", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 10.4.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/flatstr": { - "version": "1.0.12", - "license": "MIT" - }, - "node_modules/fnv1a": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/follow-redirects": { - "version": "1.14.1", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/foreach": { - "version": "2.0.5", - "license": "MIT" - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "8.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, - "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "typescript": ">3.6.0", - "webpack": "^5.11.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "10.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/form-data": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "license": "MIT", - "engines": { - "node": ">= 14.17" - } - }, - "node_modules/formidable": { - "version": "2.1.1", - "license": "MIT", - "dependencies": { - "dezalgo": "^1.0.4", - "hexoid": "^1.0.0", - "once": "^1.4.0", - "qs": "^6.11.0" - }, - "funding": { - "url": "https://ko-fi.com/tunnckoCore/commissions" - } - }, - "node_modules/freeport-promise": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-extra": { - "version": "0.30.0", - "license": "MIT", - "optional": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - } - }, - "node_modules/fs-extra/node_modules/rimraf": { - "version": "2.7.1", - "license": "ISC", - "optional": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fs-monkey": { - "version": "1.0.4", - "dev": true, - "license": "Unlicense" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "license": "ISC" - }, - "node_modules/function-bind": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/function-timeout": { - "version": "0.1.1", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gar": { - "version": "1.0.4", - "license": "MIT" - }, - "node_modules/gauge": { - "version": "3.0.2", - "license": "ISC", - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-browser-rtc": { - "version": "1.1.0", - "license": "MIT", - "optional": true - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-folder-size": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "gar": "^1.0.4" - }, - "bin": { - "get-folder-size": "bin/get-folder-size.js" - }, - "engines": { - "node": ">=14.13.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-iterator": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-port": { - "version": "5.1.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/glob": { - "version": "7.2.0", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "license": "BSD-2-Clause" - }, - "node_modules/global-dirs": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/go-ipfs": { - "name": "mocked-go-ipfs", - "version": "0.17.0", - "license": "ISC" - }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "license": "ISC" - }, - "node_modules/hamt-sharding": { - "version": "3.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "sparse-array": "^1.3.1", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/hamt-sharding/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/hapi-pino": { - "version": "8.5.0", - "license": "MIT", - "dependencies": { - "@hapi/hoek": "^9.0.0", - "abstract-logging": "^2.0.0", - "pino": "^6.0.0", - "pino-pretty": "^4.0.0" - } - }, - "node_modules/har-schema": { - "version": "2.0.0", - "license": "ISC", - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "license": "MIT", - "optional": true, - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.1", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-own-prop": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-symbols": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "license": "ISC" - }, - "node_modules/has-yarn": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hash-base": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "node_modules/hashlru": { - "version": "2.3.0", - "license": "MIT" - }, - "node_modules/hat": { - "version": "0.0.3", - "license": "MIT/X11", - "optional": true - }, - "node_modules/he": { - "version": "1.2.0", - "license": "MIT", - "bin": { - "he": "bin/he" - } - }, - "node_modules/header-case": { - "version": "2.0.4", - "license": "MIT", - "dependencies": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/headless": { - "version": "1.1.0", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/hexoid": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/home-path": { - "version": "1.0.7", - "license": "MIT", - "optional": true - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "license": "BSD-2-Clause" - }, - "node_modules/http-errors": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-proxy": { - "version": "1.18.1", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/http-server": { - "version": "0.12.3", - "license": "MIT", - "dependencies": { - "basic-auth": "^1.0.3", - "colors": "^1.4.0", - "corser": "^2.0.1", - "ecstatic": "^3.3.2", - "http-proxy": "^1.18.0", - "minimist": "^1.2.5", - "opener": "^1.5.1", - "portfinder": "^1.0.25", - "secure-compare": "3.0.1", - "union": "~0.5.0" - }, - "bin": { - "hs": "bin/http-server", - "http-server": "bin/http-server" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, - "node_modules/image-size": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "queue": "6.0.2" - }, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-lazy": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-local/node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/locate-path": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/path-exists": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local/node_modules/pkg-dir": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "license": "ISC" - }, - "node_modules/inquirer": { - "version": "8.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/interface-blockstore": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "interface-store": "^3.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/interface-datastore": { - "version": "7.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "interface-store": "^3.0.0", - "nanoid": "^4.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/interface-datastore/node_modules/nanoid": { - "version": "4.0.0", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/interface-datastore/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/interface-store": { - "version": "3.0.4", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/internal-slot": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/interpret": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/ip": { - "version": "1.1.5", - "license": "MIT" - }, - "node_modules/ip-regex": { - "version": "4.3.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/ipfs": { - "version": "0.66.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "ipfs-cli": "^0.16.0", - "ipfs-core": "^0.18.0", - "semver": "^7.3.2", - "update-notifier": "^6.0.0" - }, - "bin": { - "jsipfs": "src/cli.js" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "optionalDependencies": { - "electron-webrtc": "^0.3.0", - "wrtc": "^0.4.6" - } - }, - "node_modules/ipfs-bitswap": { - "version": "15.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/topology": "^4.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@vascosantos/moving-average": "^1.1.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "blockstore-core": "^3.0.0", - "interface-blockstore": "^4.0.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "just-debounce-it": "^3.0.1", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "readable-stream": "^4.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0", - "varint-decoder": "^1.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/ipfs-bitswap/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/ipfs-bitswap/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-bitswap/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/readable-stream": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/ipfs-bitswap/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli": { - "version": "0.16.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "byteman": "^1.3.5", - "execa": "^6.1.0", - "get-folder-size": "^4.0.0", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-daemon": "^0.16.0", - "ipfs-http-client": "^60.0.0", - "ipfs-utils": "^9.0.13", - "it-concat": "^3.0.1", - "it-merge": "^2.0.0", - "it-pipe": "^2.0.3", - "it-split": "^2.0.0", - "it-tar": "^6.0.0", - "jsondiffpatch": "^0.4.1", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "pretty-bytes": "^6.0.0", - "progress": "^2.0.3", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2", - "yargs": "^17.4.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/execa": { - "version": "6.1.0", - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/ipfs-cli/node_modules/human-signals": { - "version": "3.0.1", - "license": "Apache-2.0", - "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/ipfs-cli/node_modules/is-stream": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-cli/node_modules/mimic-fn": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/npm-run-path": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/onetime": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/path-key": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/strip-final-newline": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-cli/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core": { - "version": "0.18.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@chainsafe/libp2p-noise": "^11.0.0", - "@ipld/car": "^5.0.0", - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/bootstrap": "^6.0.0", - "@libp2p/crypto": "^1.0.0", - "@libp2p/delegated-content-routing": "^4.0.0", - "@libp2p/delegated-peer-routing": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.6", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/kad-dht": "^7.0.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/mplex": "^7.1.1", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/websockets": "^5.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.1.5", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "@multiformats/murmur3": "^2.0.0", - "any-signal": "^3.0.0", - "array-shuffle": "^3.0.0", - "blockstore-core": "^3.0.0", - "browser-readablestream-to-it": "^2.0.0", - "dag-jose": "^4.0.0", - "datastore-core": "^8.0.1", - "datastore-pubsub": "^7.0.0", - "dlv": "^1.1.3", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "hashlru": "^2.3.0", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-bitswap": "^15.0.0", - "ipfs-core-config": "^0.7.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-client": "^60.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-unixfs-exporter": "^10.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "ipfs-utils": "^9.0.9", - "ipns": "^5.0.1", - "is-domain-name": "^1.0.1", - "is-ipfs": "^8.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-tar": "^6.0.0", - "it-to-buffer": "^3.0.0", - "just-safe-set": "^4.0.2", - "libp2p": "^0.42.0", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "pako": "^2.0.4", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config": { - "version": "0.7.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@chainsafe/libp2p-gossipsub": "^6.0.0", - "@libp2p/floodsub": "^6.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/mdns": "^6.0.0", - "@libp2p/prometheus-metrics": "^1.0.1", - "@libp2p/tcp": "^6.0.2", - "@libp2p/webrtc-star": "^6.0.0", - "blockstore-datastore-adapter": "^5.0.0", - "datastore-core": "^8.0.1", - "datastore-fs": "^8.0.0", - "datastore-level": "^9.0.0", - "err-code": "^3.0.1", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-utils": "^9.0.13", - "is-ipfs": "^8.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-foreach": "^1.0.0", - "p-queue": "^7.2.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-config/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-core-config/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types": { - "version": "0.14.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/node": "^18.0.0", - "interface-datastore": "^7.0.0", - "ipfs-unixfs": "^9.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-types/node_modules/@types/node": { - "version": "18.11.19", - "license": "MIT" - }, - "node_modules/ipfs-core-utils": { - "version": "0.18.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "any-signal": "^3.0.0", - "blob-to-it": "^2.0.0", - "browser-readablestream-to-it": "^2.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-utils": "^9.0.13", - "it-all": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "nanoid": "^4.0.0", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-utils/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-utils/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core-utils/node_modules/nanoid": { - "version": "4.0.1", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/ipfs-core-utils/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-core/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-daemon": { - "version": "0.16.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "@libp2p/webrtc-star": "^6.0.0", - "@mapbox/node-pre-gyp": "^1.0.5", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-server": "^0.12.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-http-server": "^0.15.0", - "ipfs-utils": "^9.0.13", - "libp2p": "^0.42.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "optionalDependencies": { - "electron-webrtc": "^0.3.0", - "prom-client": "^14.0.1", - "wrtc": "^0.4.6" - } - }, - "node_modules/ipfs-grpc-protocol": { - "version": "0.8.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server": { - "version": "0.12.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@grpc/grpc-js": "^1.1.8", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "change-case": "^4.1.1", - "coercer": "^1.1.2", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-protocol": "^0.8.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "nanoid": "^4.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "ws": "^8.5.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-grpc-server/node_modules/nanoid": { - "version": "4.0.1", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/ipfs-grpc-server/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-grpc-server/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client": { - "version": "60.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "any-signal": "^3.0.0", - "dag-jose": "^4.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-utils": "^9.0.13", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-client/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-gateway": { - "version": "0.13.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/logger": "^2.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-http-response": "^6.0.0", - "is-ipfs": "^8.0.0", - "it-last": "^2.0.0", - "it-to-stream": "^1.0.0", - "joi": "^17.2.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-gateway/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-response": { - "version": "6.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/logger": "^2.0.0", - "ejs": "^3.1.6", - "file-type": "^18.0.0", - "filesize": "^10.0.5", - "it-map": "^2.0.0", - "it-reader": "^6.0.1", - "it-to-stream": "^1.0.0", - "mime-types": "^2.1.30", - "p-try-each": "^1.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-response/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server": { - "version": "0.15.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@hapi/boom": "^9.1.0", - "@hapi/content": "^5.0.2", - "@hapi/hapi": "^20.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "any-signal": "^3.0.0", - "dlv": "^1.1.3", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-multipart": "^3.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reduce": "^2.0.0", - "joi": "^17.2.1", - "just-safe-set": "^4.0.2", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "stream-to-it": "^0.2.2", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "optionalDependencies": { - "prom-client": "^14.0.1" - } - }, - "node_modules/ipfs-http-server/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-http-server/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-log": { - "version": "5.4.2", - "license": "MIT", - "dependencies": { - "json-stringify-deterministic": "^1.0.1", - "multihashing-async": "^2.0.1", - "orbit-db-identity-provider": "^0.3.1", - "orbit-db-io": "^1.1.2", - "p-do-whilst": "^1.1.0", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-whilst": "^2.1.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/ipfs-log/node_modules/iso-random-stream": { - "version": "1.1.2", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ipfs-log/node_modules/libp2p-crypto": { - "version": "0.16.4", - "license": "MIT", - "dependencies": { - "asmcrypto.js": "^2.3.2", - "asn1.js": "^5.0.1", - "async": "^2.6.1", - "bn.js": "^4.11.8", - "browserify-aes": "^1.2.0", - "bs58": "^4.0.1", - "iso-random-stream": "^1.1.0", - "keypair": "^1.0.1", - "libp2p-crypto-secp256k1": "~0.3.0", - "multihashing-async": "~0.5.1", - "node-forge": "^0.10.0", - "pem-jwk": "^2.0.0", - "protons": "^1.0.1", - "rsa-pem-to-jwk": "^1.1.3", - "tweetnacl": "^1.0.0", - "ursa-optional": "~0.10.0" - }, - "engines": { - "node": ">=10.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/ipfs-log/node_modules/libp2p-crypto/node_modules/multihashing-async": { - "version": "0.5.2", - "license": "MIT", - "dependencies": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - }, - "engines": { - "node": ">=6.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/ipfs-log/node_modules/multibase": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/ipfs-log/node_modules/multibase/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/ipfs-log/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/ipfs-log/node_modules/multihashes": { - "version": "0.4.21", - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "node_modules/ipfs-log/node_modules/multihashes/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/ipfs-log/node_modules/orbit-db-identity-provider": { - "version": "0.3.1", - "license": "MIT", - "dependencies": { - "ethers": "^5.0.8", - "orbit-db-keystore": "~0.3.5" - } - }, - "node_modules/ipfs-log/node_modules/orbit-db-io": { - "version": "1.1.2", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/ipfs-log/node_modules/orbit-db-keystore": { - "version": "0.3.5", - "license": "MIT", - "dependencies": { - "elliptic": "^6.5.3", - "level": "~5.0.1", - "leveldown": "~5.1.1", - "levelup": "~4.1.0", - "libp2p-crypto": "^0.16.0", - "libp2p-crypto-secp256k1": "^0.3.0", - "lru": "^3.1.0", - "mkdirp": "^0.5.5", - "safe-buffer": "^5.2.1" - } - }, - "node_modules/ipfs-log/node_modules/tweetnacl": { - "version": "1.0.3", - "license": "Unlicense" - }, - "node_modules/ipfs-log/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/ipfs-pubsub-1on1": { - "version": "0.1.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.1" - } - }, - "node_modules/ipfs-pubsub-peer-monitor": { - "version": "0.0.10", - "license": "MIT", - "dependencies": { - "p-forever": "^2.1.0" - } - }, - "node_modules/ipfs-repo": { - "version": "17.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "bytes": "^3.1.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-repo-migrations": "^15.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "just-safe-get": "^4.1.1", - "just-safe-set": "^4.1.1", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "proper-lockfile": "^4.0.0", - "quick-lru": "^6.1.1", - "sort-keys": "^5.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo-migrations": { - "version": "15.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "fnv1a": "^1.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-length": "^2.0.0", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo-migrations/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo-migrations/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-repo-migrations/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-repo-migrations/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-parallel-batch": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-batch": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-repo/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-repo/node_modules/quick-lru": { - "version": "6.1.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-repo/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "err-code": "^3.0.1", - "protobufjs": "^7.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter": { - "version": "10.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/p-queue": { - "version": "7.3.3", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfs-unixfs-exporter/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer": { - "version": "12.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-batch": "^2.0.0", - "it-first": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "rabin-wasm": "^0.1.4", - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/it-parallel-batch": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-batch": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/ipfs-unixfs/node_modules/protobufjs": { - "version": "7.2.1", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-utils": { - "version": "9.0.14", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "any-signal": "^3.0.0", - "browser-readablestream-to-it": "^1.0.0", - "buffer": "^6.0.1", - "electron-fetch": "^1.7.2", - "err-code": "^3.0.1", - "is-electron": "^2.2.0", - "iso-url": "^1.1.5", - "it-all": "^1.0.4", - "it-glob": "^1.0.1", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "nanoid": "^3.1.20", - "native-fetch": "^3.0.0", - "node-fetch": "^2.6.8", - "react-native-fetch-api": "^3.0.0", - "stream-to-it": "^0.2.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-utils/node_modules/browser-readablestream-to-it": { - "version": "1.0.3", - "license": "ISC" - }, - "node_modules/ipfsd-ctl": { - "version": "12.2.2", - "license": "Apache-2.0 OR MIT", - "peer": true, - "dependencies": { - "@hapi/boom": "^10.0.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/interface-peer-id": "^1.0.4", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "execa": "^6.1.0", - "ipfs-utils": "^9.0.1", - "joi": "^17.2.1", - "merge-options": "^3.0.1", - "nanoid": "^4.0.0", - "p-wait-for": "^5.0.0", - "temp-write": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfsd-ctl/node_modules/@hapi/boom": { - "version": "10.0.0", - "license": "BSD-3-Clause", - "peer": true, - "dependencies": { - "@hapi/hoek": "10.x.x" - } - }, - "node_modules/ipfsd-ctl/node_modules/@hapi/hoek": { - "version": "10.0.1", - "license": "BSD-3-Clause", - "peer": true - }, - "node_modules/ipfsd-ctl/node_modules/execa": { - "version": "6.1.0", - "license": "MIT", - "peer": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/ipfsd-ctl/node_modules/human-signals": { - "version": "3.0.1", - "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/ipfsd-ctl/node_modules/is-stream": { - "version": "3.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/mimic-fn": { - "version": "4.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/nanoid": { - "version": "4.0.0", - "license": "MIT", - "peer": true, - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/ipfsd-ctl/node_modules/npm-run-path": { - "version": "5.1.0", - "license": "MIT", - "peer": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/onetime": { - "version": "6.0.0", - "license": "MIT", - "peer": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/path-key": { - "version": "4.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/strip-final-newline": { - "version": "3.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ipfsd-ctl/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "peer": true, - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipns": { - "version": "5.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "cborg": "^1.3.3", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "timestamp-nano": "^1.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipns/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipns/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "dev": true, - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "2.0.5", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/is-callable": { - "version": "1.2.4", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.8.0", - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-domain-name": { - "version": "1.0.1", - "license": "ISC" - }, - "node_modules/is-electron": { - "version": "2.2.1", - "license": "MIT" - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "license": "MIT", - "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-ip": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "ip-regex": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-ipfs": { - "version": "8.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "iso-url": "^1.1.3", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/is-ipfs/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/is-nan": { - "version": "1.3.2", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-node": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-npm": { - "version": "6.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.6", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-obj": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-promise": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-regexp": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.1", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-subset": { - "version": "0.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.8", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array/node_modules/es-abstract": { - "version": "1.19.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-weakref": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-yarn-global": { - "version": "0.4.1", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/iso-constants": { - "version": "0.1.2", - "hasInstallScript": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/iso-random-stream": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "events": "^3.3.0", - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/iso-url": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "license": "MIT", - "optional": true - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.5", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/it-all": { - "version": "1.0.6", - "license": "ISC" - }, - "node_modules/it-batch": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-batched-bytes": { - "version": "1.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.4.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-batched-bytes/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-concat": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-concat/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-drain": { - "version": "1.0.5", - "license": "ISC" - }, - "node_modules/it-filter": { - "version": "1.0.3", - "license": "ISC" - }, - "node_modules/it-first": { - "version": "1.0.7", - "license": "ISC" - }, - "node_modules/it-foreach": { - "version": "1.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-glob": { - "version": "1.0.2", - "license": "ISC", - "dependencies": { - "@types/minimatch": "^3.0.4", - "minimatch": "^3.0.4" - } - }, - "node_modules/it-handshake": { - "version": "4.1.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-handshake/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/it-handshake/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-last": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-length": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-length-prefixed": { - "version": "8.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "err-code": "^3.0.1", - "it-stream-types": "^1.0.4", - "uint8-varint": "^1.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-length-prefixed/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-map": { - "version": "1.0.6", - "license": "ISC" - }, - "node_modules/it-merge": { - "version": "1.0.4", - "license": "ISC", - "dependencies": { - "it-pushable": "^1.4.0" - } - }, - "node_modules/it-multipart": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "formidable": "^2.0.1", - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-multipart/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pair": { - "version": "2.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-stream-types": "^1.0.3", - "p-defer": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pair/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-parallel": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "p-defer": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-parallel-batch": { - "version": "1.0.11", - "license": "ISC", - "dependencies": { - "it-batch": "^1.0.9" - } - }, - "node_modules/it-parallel-batch/node_modules/it-batch": { - "version": "1.0.9", - "license": "ISC" - }, - "node_modules/it-parallel/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-pb-stream": { - "version": "2.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-peekable": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pipe": { - "version": "2.0.5", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-merge": "^2.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.3" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pipe/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pipe/node_modules/it-pushable": { - "version": "3.1.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-pushable": { - "version": "1.4.2", - "license": "MIT", - "dependencies": { - "fast-fifo": "^1.0.0" - } - }, - "node_modules/it-reader": { - "version": "6.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-reduce": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-sort": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-all": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-sort/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-split": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arraylist": "^2.4.1" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-stream-types": { - "version": "1.0.4", - "license": "Apache-2.0 OR MIT" - }, - "node_modules/it-take": { - "version": "1.0.2", - "license": "ISC" - }, - "node_modules/it-tar": { - "version": "6.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "iso-constants": "^0.1.2", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "it-to-buffer": "^3.0.0", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-tar/node_modules/p-defer": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/it-tar/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-to-buffer": { - "version": "3.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-to-buffer/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-to-stream": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "fast-fifo": "^1.0.0", - "get-iterator": "^1.0.2", - "p-defer": "^3.0.0", - "p-fifo": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "node_modules/it-ws": { - "version": "5.0.6", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "event-iterator": "^2.0.0", - "iso-url": "^1.1.2", - "it-stream-types": "^1.0.2", - "uint8arrays": "^4.0.2", - "ws": "^8.4.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-ws/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-ws/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/iterare": { - "version": "1.2.1", - "license": "ISC", - "engines": { - "node": ">=6" - } - }, - "node_modules/jake": { - "version": "10.8.5", - "license": "Apache-2.0", - "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, - "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jake/node_modules/async": { - "version": "3.2.4", - "license": "MIT" - }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/jake/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/core": "^29.4.2", - "@jest/types": "^29.4.2", - "import-local": "^3.0.2", - "jest-cli": "^29.4.2" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-changed-files": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-changed-files/node_modules/yocto-queue": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-circus": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "p-limit": "^3.1.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-circus/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-circus/node_modules/yocto-queue": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-cli": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/core": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.4.2", - "@jest/types": "^29.4.2", - "babel-jest": "^29.4.2", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-config/node_modules/parse-json": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-config/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-docblock": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "jest-util": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-each/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-environment-node": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-get-type": { - "version": "27.5.1", - "license": "MIT", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-haste-map": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/jest-leak-detector": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-leak-detector/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-matcher-utils/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.4.2", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/@babel/code-frame": { - "version": "7.18.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-message-util/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-mock": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-util": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "license": "MIT", - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-regex-util": "^29.4.2", - "jest-snapshot": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-resolve/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-resolve/node_modules/resolve.exports": { - "version": "2.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.4.2", - "@jest/environment": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-leak-detector": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-util": "^29.4.2", - "jest-watcher": "^29.4.2", - "jest-worker": "^29.4.2", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/buffer-from": { - "version": "1.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner/node_modules/yocto-queue": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-runtime": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/globals": "^29.4.2", - "@jest/source-map": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "semver": "^7.3.5", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/strip-bom": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "natural-compare": "^1.4.0", - "pretty-format": "^29.4.2", - "semver": "^7.3.5" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-snapshot/node_modules/jest-get-type": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/pretty-format": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^29.4.2", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "leven": "^3.1.0", - "pretty-format": "^29.4.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate/node_modules/jest-get-type": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/leven": { - "version": "3.1.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/jest-validate/node_modules/pretty-format": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/react-is": { - "version": "18.2.0", - "devOptional": true, - "license": "MIT" - }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher": { - "version": "29.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.4.2", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker": { - "version": "29.4.2", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "jest-util": "^29.4.2", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "devOptional": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "devOptional": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jmespath": { - "version": "0.15.0", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/joi": { - "version": "17.8.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/address": "^5.1.0", - "@hapi/formula": "^3.0.2", - "@hapi/hoek": "^11.0.2", - "@hapi/pinpoint": "^2.0.1", - "@hapi/tlds": "^1.0.1", - "@hapi/topo": "^6.0.1" - } - }, - "node_modules/joi/node_modules/@hapi/hoek": { - "version": "11.0.2", - "license": "BSD-3-Clause" - }, - "node_modules/joi/node_modules/@hapi/topo": { - "version": "6.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^11.0.2" - } - }, - "node_modules/joycon": { - "version": "2.2.5", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/js-sha3": { - "version": "0.8.0", - "license": "MIT" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/jsesc": { - "version": "2.5.2", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "license": "MIT" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "license": "(AFL-2.1 OR BSD-3-Clause)", - "optional": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "license": "MIT" - }, - "node_modules/json-stringify-deterministic": { - "version": "1.0.8", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "license": "ISC", - "optional": true - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/jsondiffpatch": { - "version": "0.4.1", - "license": "MIT", - "dependencies": { - "chalk": "^2.3.0", - "diff-match-patch": "^1.0.0" - }, - "bin": { - "jsondiffpatch": "bin/jsondiffpatch" - }, - "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/jsonfile": { - "version": "2.4.0", - "license": "MIT", - "optional": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/just-debounce-it": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/just-safe-get": { - "version": "4.2.0", - "license": "MIT" - }, - "node_modules/just-safe-set": { - "version": "4.2.1", - "license": "MIT" - }, - "node_modules/k-bucket": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/keypair": { - "version": "1.0.4", - "license": "BSD / GPL" - }, - "node_modules/keyv": { - "version": "4.5.2", - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/klaw": { - "version": "1.3.1", - "license": "MIT", - "optional": true, - "optionalDependencies": { - "graceful-fs": "^4.1.9" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/latest-version": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "package-json": "^8.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/level": { - "version": "8.0.0", - "license": "MIT", - "dependencies": { - "browser-level": "^1.0.1", - "classic-level": "^1.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/level" - } - }, - "node_modules/level-concat-iterator": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "catering": "^2.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/level-errors": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "errno": "~0.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/level-iterator-stream": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.4.0", - "xtend": "^4.0.2" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/level-supports": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/level-transcoder": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "buffer": "^6.0.3", - "module-error": "^1.0.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/leveldown": { - "version": "6.1.1", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "abstract-leveldown": "^7.2.0", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/levelup": { - "version": "4.1.0", - "license": "MIT", - "dependencies": { - "deferred-leveldown": "~5.1.0", - "level-errors": "~2.0.0", - "level-iterator-stream": "~4.0.0", - "xtend": "~4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/leven": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/libp2p": { - "version": "0.42.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@achingbrain/nat-port-mapper": "^1.0.3", - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-encrypter": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-libp2p": "^1.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-routing": "^1.0.1", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/multistream-select": "^3.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/peer-store": "^6.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-foreach": "^1.0.0", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-pair": "^2.0.2", - "it-pipe": "^2.0.3", - "it-sort": "^2.0.0", - "it-stream-types": "^1.0.4", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "node-forge": "^1.3.1", - "p-fifo": "^1.0.0", - "p-retry": "^5.0.0", - "p-settle": "^5.0.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "rate-limiter-flexible": "^2.3.11", - "retimer": "^3.0.0", - "sanitize-filename": "^1.6.3", - "set-delayed-interval": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2", - "wherearewe": "^2.0.0", - "xsalsa20": "^1.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p-crypto": { - "version": "0.21.2", - "license": "MIT", - "dependencies": { - "@noble/ed25519": "^1.5.1", - "@noble/secp256k1": "^1.3.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.0", - "multiformats": "^9.4.5", - "node-forge": "^1.2.1", - "protobufjs": "^6.11.2", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1": { - "version": "0.3.1", - "license": "MIT", - "dependencies": { - "async": "^2.6.2", - "bs58": "^4.0.1", - "multihashing-async": "~0.6.0", - "nodeify": "^1.0.1", - "safe-buffer": "^5.1.2", - "secp256k1": "^3.6.2" - }, - "engines": { - "node": ">=6.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/multibase": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/multihashes": { - "version": "0.4.21", - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/multihashing-async": { - "version": "0.6.0", - "license": "MIT", - "dependencies": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - }, - "engines": { - "node": ">=6.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/secp256k1": { - "version": "3.8.0", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "bindings": "^1.5.0", - "bip66": "^1.1.5", - "bn.js": "^4.11.8", - "create-hash": "^1.2.0", - "drbg.js": "^1.0.1", - "elliptic": "^6.5.2", - "nan": "^2.14.0", - "safe-buffer": "^5.1.2" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/libp2p-crypto-secp256k1/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/libp2p-crypto/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/libp2p-crypto/node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/libp2p/node_modules/@libp2p/interface-peer-id": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/@libp2p/peer-record": { - "version": "5.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/abortable-iterator": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "node_modules/libp2p/node_modules/get-iterator": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/libp2p/node_modules/ip-regex": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/libp2p/node_modules/ipaddr.js": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/libp2p/node_modules/it-all": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-drain": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-filter": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-first": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-map": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-merge": { - "version": "2.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "it-pushable": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/it-pushable": { - "version": "3.1.0", - "license": "MIT" - }, - "node_modules/libp2p/node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/libp2p/node_modules/private-ip": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/libp2p/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/uint8arrays/node_modules/multiformats": { - "version": "10.0.3", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libp2p/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/libphonenumber-js": { - "version": "1.9.44", - "license": "MIT" - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "dev": true, - "license": "MIT" - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "license": "MIT", - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "2.0.4", - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/loader-utils/node_modules/json5": { - "version": "2.2.3", - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "license": "MIT" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "license": "MIT" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "dev": true, - "license": "MIT" - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/logplease": { - "version": "1.2.15", - "license": "MIT" - }, - "node_modules/long": { - "version": "4.0.0", - "license": "Apache-2.0" - }, - "node_modules/longbits": { - "version": "1.1.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "byte-access": "^1.0.1", - "uint8arraylist": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lru": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/luxon": { - "version": "1.28.0", - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/macos-release": { - "version": "2.5.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/magic-string": { - "version": "0.30.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "dev": true, - "license": "ISC" - }, - "node_modules/makeerror": { - "version": "1.0.12", - "license": "BSD-3-Clause", - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", - "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/memfs": { - "version": "3.5.3", - "dev": true, - "license": "Unlicense", - "dependencies": { - "fs-monkey": "^1.0.4" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/merge-options": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "is-plain-obj": "^2.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/methods": { - "version": "1.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "4.0.4", - "license": "MIT", - "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.51.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.34", - "license": "MIT", - "dependencies": { - "mime-db": "1.51.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "license": "ISC" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/minimatch": { - "version": "3.0.4", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "4.2.8", - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "license": "MIT", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/mkdirp": { - "version": "0.5.5", - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/mock-fs": { - "version": "5.1.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/module-error": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/mortice": { - "version": "3.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "nanoid": "^4.0.0", - "observable-webworkers": "^2.0.1", - "p-queue": "^7.2.0", - "p-timeout": "^6.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/mortice/node_modules/nanoid": { - "version": "4.0.0", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/mortice/node_modules/p-queue": { - "version": "7.3.0", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mortice/node_modules/p-queue/node_modules/p-timeout": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mortice/node_modules/p-timeout": { - "version": "6.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mri": { - "version": "1.1.4", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/multer": { - "version": "1.4.4-lts.1", - "license": "MIT", - "dependencies": { - "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", - "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/multiaddr": { - "version": "10.0.1", - "license": "MIT", - "dependencies": { - "dns-over-http-resolver": "^1.2.3", - "err-code": "^3.0.1", - "is-ip": "^3.1.0", - "multiformats": "^9.4.5", - "uint8arrays": "^3.0.0", - "varint": "^6.0.0" - } - }, - "node_modules/multiaddr/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/multibase": { - "version": "4.0.6", - "license": "MIT", - "dependencies": { - "@multiformats/base-x": "^4.0.1" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "license": "MIT", - "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" - } - }, - "node_modules/multiformats": { - "version": "11.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/multihashes": { - "version": "4.0.3", - "license": "MIT", - "dependencies": { - "multibase": "^4.0.1", - "uint8arrays": "^3.0.0", - "varint": "^5.0.2" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/multihashes/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/multihashing-async": { - "version": "2.1.4", - "license": "MIT", - "dependencies": { - "blakejs": "^1.1.0", - "err-code": "^3.0.0", - "js-sha3": "^0.8.0", - "multihashes": "^4.0.1", - "murmurhash3js-revisited": "^3.0.0", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/murmurhash3js": { - "version": "3.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/murmurhash3js-revisited": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "dev": true, - "license": "ISC" - }, - "node_modules/nan": { - "version": "2.17.0", - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.4", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/napi-macros": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/native-fetch": { - "version": "3.0.0", - "license": "MIT", - "peerDependencies": { - "node-fetch": "*" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/ndjson": { - "version": "1.5.0", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "json-stringify-safe": "^5.0.1", - "minimist": "^1.2.0", - "split2": "^2.1.0", - "through2": "^2.0.3" - }, - "bin": { - "ndjson": "cli.js" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "license": "MIT" - }, - "node_modules/netmask": { - "version": "2.0.2", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/nice-try": { - "version": "1.0.5", - "dev": true, - "license": "MIT" - }, - "node_modules/no-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/node-addon-api": { - "version": "2.0.2", - "license": "MIT" - }, - "node_modules/node-emoji": { - "version": "1.11.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash": "^4.17.21" - } - }, - "node_modules/node-fetch": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-forge": { - "version": "0.10.0", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/node-gyp-build": { - "version": "4.3.0", - "license": "MIT", - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "1.1.77", - "license": "MIT" - }, - "node_modules/nodeify": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "is-promise": "~1.0.0", - "promise": "~1.3.0" - } - }, - "node_modules/nopt": { - "version": "5.0.0", - "license": "ISC", - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npmlog": { - "version": "5.0.1", - "license": "ISC", - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "node_modules/nugget": { - "version": "2.2.0", - "license": "BSD", - "optional": true, - "dependencies": { - "debug": "^2.1.3", - "minimist": "^1.1.0", - "pretty-bytes": "^4.0.2", - "progress-stream": "^1.1.0", - "request": "^2.45.0", - "single-line-log": "^1.1.2", - "throttleit": "0.0.2" - }, - "bin": { - "nugget": "bin.js" - } - }, - "node_modules/nugget/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/nugget/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/nugget/node_modules/pretty-bytes": { - "version": "4.0.2", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.11.1", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.5", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "0.4.0", - "license": "MIT", - "optional": true - }, - "node_modules/object.assign": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.assign/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/observable-webworkers": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/opener": { - "version": "1.5.2", - "license": "(WTFPL OR MIT)", - "bin": { - "opener": "bin/opener-bin.js" - } - }, - "node_modules/optimist": { - "version": "0.3.7", - "license": "MIT/X11", - "dependencies": { - "wordwrap": "~0.0.2" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ora/node_modules/bl": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/ora/node_modules/buffer": { - "version": "5.7.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/orbit-db": { - "version": "0.29.0", - "license": "MIT", - "dependencies": { - "ipfs-pubsub-1on1": "^0.1.0", - "is-node": "^1.0.2", - "logplease": "^1.2.15", - "orbit-db-access-controllers": "^0.4.0", - "orbit-db-cache": "^0.5.0", - "orbit-db-counterstore": "^2.0.0", - "orbit-db-docstore": "^2.0.0", - "orbit-db-eventstore": "^2.0.0", - "orbit-db-feedstore": "^2.0.0", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "orbit-db-keystore": "^2.0.0", - "orbit-db-kvstore": "^2.0.0", - "orbit-db-pubsub": "^0.7.0", - "orbit-db-storage-adapter": "^0.9.0", - "orbit-db-store": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/orbit-db-access-controllers": { - "version": "0.4.0", - "license": "MIT", - "dependencies": { - "orbit-db-io": "^3.0.0", - "p-map-series": "^3.0.0", - "safe-buffer": "^5.2.1" - } - }, - "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-pb": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db-access-controllers/node_modules/orbit-db-io": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/orbit-db-identity-provider": { - "version": "0.5.0", - "license": "MIT", - "dependencies": { - "@ethersproject/wallet": "^5.7.0", - "assert": "^2.0.0", - "dids": "^3.4.0", - "lru": "^3.1.0", - "orbit-db-keystore": "^2.0.0", - "path-browserify": "^1.0.1", - "stream-browserify": "^3.0.0", - "uint8arrays": "^4.0.3" - } - }, - "node_modules/orbit-db-identity-provider/node_modules/uint8arrays": { - "version": "4.0.3", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db-io": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/orbit-db-io/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/orbit-db-keystore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "@libp2p/crypto": "^1.0.11", - "elliptic": "^6.5.4", - "level": "^8.0.0", - "lru": "^3.1.0", - "mkdirp": "^2.1.1", - "safe-buffer": "^5.2.1", - "secp256k1": "^5.0.0" - } - }, - "node_modules/orbit-db-keystore/node_modules/mkdirp": { - "version": "2.1.6", - "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/orbit-db-keystore/node_modules/node-addon-api": { - "version": "5.1.0", - "license": "MIT" - }, - "node_modules/orbit-db-keystore/node_modules/secp256k1": { - "version": "5.0.0", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "elliptic": "^6.5.4", - "node-addon-api": "^5.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/orbit-db-pubsub": { - "version": "0.6.0", - "license": "MIT", - "dependencies": { - "ipfs-pubsub-peer-monitor": "~0.0.5", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "node_modules/orbit-db-storage-adapter": { - "version": "0.9.0", - "license": "MIT", - "dependencies": { - "level": "^8.0.0", - "mkdirp": "^2.1.1" - } - }, - "node_modules/orbit-db-storage-adapter/node_modules/mkdirp": { - "version": "2.1.3", - "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/orbit-db-store": { - "version": "4.3.4", - "license": "MIT", - "dependencies": { - "ipfs-log": "^5.4.1", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.14", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-queue": "^6.6.2", - "readable-stream": "~3.6.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "orbit-db-io": "*" - } - }, - "node_modules/orbit-db-store/node_modules/p-queue": { - "version": "6.6.2", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db-store/node_modules/p-timeout": { - "version": "3.2.0", - "license": "MIT", - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/orbit-db/node_modules/@ipld/dag-cbor": { - "version": "9.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db/node_modules/@ipld/dag-pb": { - "version": "4.0.0", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/orbit-db/node_modules/aggregate-error": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/clean-stack": { - "version": "4.2.0", - "license": "MIT", - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/crdts": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/orbit-db/node_modules/escape-string-regexp": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/indent-string": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/ipfs-log": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "json-stringify-deterministic": "^1.0.8", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "p-do-whilst": "^2.0.0", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-whilst": "^3.0.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/orbit-db/node_modules/ipfs-log/node_modules/p-map": { - "version": "5.5.0", - "license": "MIT", - "dependencies": { - "aggregate-error": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-cache": { - "version": "0.5.0", - "license": "MIT", - "dependencies": { - "logplease": "~1.2.15" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-counterstore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "crdts": "^0.2.0" - }, - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-docstore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "p-map": "~1.1.1" - }, - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-eventstore": { - "version": "2.0.0", - "license": "MIT", - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-feedstore": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "orbit-db-eventstore": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-io": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "go-ipfs": "*", - "ipfs": "*", - "ipfsd-ctl": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-kvstore": { - "version": "2.0.0", - "license": "MIT", - "peerDependencies": { - "orbit-db-store": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-pubsub": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "ipfs-pubsub-peer-monitor": "^0.1.0", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-store": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "ipfs-log": "^6.0.0", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.15", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-queue": "^7.3.0", - "readable-stream": "~4.3.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "orbit-db-io": "*" - } - }, - "node_modules/orbit-db/node_modules/orbit-db-store/node_modules/p-map": { - "version": "5.5.0", - "license": "MIT", - "dependencies": { - "aggregate-error": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/p-do-whilst": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/p-each-series": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/p-map": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/orbit-db/node_modules/p-whilst": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/orbit-db/node_modules/readable-stream": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/orbit-db/node_modules/wherearewe": { - "version": "2.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "is-electron": "^2.2.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/os-name": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "macos-release": "^2.5.0", - "windows-release": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-defer": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-do-whilst": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-each-series": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-event": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "p-timeout": "^5.0.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-fifo": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "fast-fifo": "^1.0.0", - "p-defer": "^3.0.0" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-forever": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map-series": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-queue": { - "version": "7.3.4", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-reduce": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-reflect": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-retry": { - "version": "5.1.1", - "license": "MIT", - "dependencies": { - "@types/retry": "0.12.1", - "retry": "^0.13.1" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-retry/node_modules/retry": { - "version": "0.13.1", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/p-series": { - "version": "1.1.0", - "license": "MIT", - "dependencies": { - "@sindresorhus/is": "^0.7.0", - "p-reduce": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-series/node_modules/@sindresorhus/is": { - "version": "0.7.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-settle": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "p-limit": "^4.0.0", - "p-reflect": "^3.1.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-settle/node_modules/p-limit": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-timeout": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/p-try-each": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/p-wait-for": { - "version": "5.0.0", - "license": "MIT", - "peer": true, - "dependencies": { - "p-timeout": "^6.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-wait-for/node_modules/p-timeout": { - "version": "6.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-whilst": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/package-json": { - "version": "8.1.0", - "license": "MIT", - "dependencies": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/@sindresorhus/is": { - "version": "5.3.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/package-json/node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "defer-to-connect": "^2.0.1" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/package-json/node_modules/cacheable-lookup": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/package-json/node_modules/cacheable-request": { - "version": "10.2.3", - "license": "MIT", - "dependencies": { - "@types/http-cache-semantics": "^4.0.1", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.0", - "keyv": "^4.5.2", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/package-json/node_modules/got": { - "version": "12.5.3", - "license": "MIT", - "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.1", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/package-json/node_modules/http2-wrapper": { - "version": "2.2.0", - "license": "MIT", - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/package-json/node_modules/lowercase-keys": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/mimic-response": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/normalize-url": { - "version": "8.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/package-json/node_modules/p-cancelable": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12.20" - } - }, - "node_modules/package-json/node_modules/responselike": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "lowercase-keys": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pako": { - "version": "2.1.0", - "license": "(MIT AND Zlib)" - }, - "node_modules/param-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-duration": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/path-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-exists": { - "version": "2.1.0", - "license": "MIT", - "optional": true, - "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.9.2", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^9.1.1", - "minipass": "^5.0.0 || ^6.0.2" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "9.1.2", - "dev": true, - "license": "ISC", - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/path-scurry/node_modules/minipass": { - "version": "6.0.2", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/path-to-regexp": { - "version": "2.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/peek-readable": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/peer-id": { - "version": "0.16.0", - "license": "MIT", - "dependencies": { - "class-is": "^1.1.0", - "libp2p-crypto": "^0.21.0", - "multiformats": "^9.4.5", - "protobufjs": "^6.10.2", - "uint8arrays": "^3.0.0" - }, - "engines": { - "node": ">=15.0.0" - } - }, - "node_modules/peer-id/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/pem-jwk": { - "version": "2.0.0", - "license": "MPL-2.0", - "dependencies": { - "asn1.js": "^5.0.1" - }, - "bin": { - "pem-jwk": "bin/pem-jwk.js" - }, - "engines": { - "node": ">=5.10.0" - } - }, - "node_modules/pend": { - "version": "1.2.0", - "license": "MIT", - "optional": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "license": "MIT", - "optional": true - }, - "node_modules/picomatch": { - "version": "2.3.0", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "license": "MIT", - "optional": true, - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pino": { - "version": "6.14.0", - "license": "MIT", - "dependencies": { - "fast-redact": "^3.0.0", - "fast-safe-stringify": "^2.0.8", - "flatstr": "^1.0.12", - "pino-std-serializers": "^3.1.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "sonic-boom": "^1.0.2" - }, - "bin": { - "pino": "bin.js" - } - }, - "node_modules/pino-pretty": { - "version": "4.8.0", - "license": "MIT", - "dependencies": { - "@hapi/bourne": "^2.0.0", - "args": "^5.0.1", - "chalk": "^4.0.0", - "dateformat": "^4.5.1", - "fast-safe-stringify": "^2.0.7", - "jmespath": "^0.15.0", - "joycon": "^2.2.5", - "pump": "^3.0.0", - "readable-stream": "^3.6.0", - "rfdc": "^1.3.0", - "split2": "^3.1.1", - "strip-json-comments": "^3.1.1" - }, - "bin": { - "pino-pretty": "bin.js" - } - }, - "node_modules/pino-pretty/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/pino-pretty/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/pino-pretty/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/pino-pretty/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/pino-pretty/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/pino-pretty/node_modules/split2": { - "version": "3.2.2", - "license": "ISC", - "dependencies": { - "readable-stream": "^3.0.0" - } - }, - "node_modules/pino-pretty/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pino-std-serializers": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/pirates": { - "version": "4.0.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkijs": { - "version": "3.0.8", - "license": "BSD-3-Clause", - "dependencies": { - "asn1js": "^3.0.5", - "bytestreamjs": "^2.0.0", - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/platform": { - "version": "1.3.6", - "license": "MIT" - }, - "node_modules/pluralize": { - "version": "8.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/portfinder": { - "version": "1.0.28", - "license": "MIT", - "dependencies": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" - }, - "engines": { - "node": ">= 0.12.0" - } - }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/pretty-bytes": { - "version": "6.1.0", - "license": "MIT", - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pretty-format": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/private-ip": { - "version": "2.3.3", - "license": "MIT", - "dependencies": { - "ip-regex": "^4.3.0", - "ipaddr.js": "^2.0.1", - "is-ip": "^3.1.0", - "netmask": "^2.0.2" - } - }, - "node_modules/private-ip/node_modules/ipaddr.js": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/process": { - "version": "0.11.10", - "license": "MIT", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/process-warning": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/progress": { - "version": "2.0.3", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/progress-stream": { - "version": "1.2.0", - "license": "BSD-2-Clause", - "optional": true, - "dependencies": { - "speedometer": "~0.1.2", - "through2": "~0.2.3" - } - }, - "node_modules/progress-stream/node_modules/isarray": { - "version": "0.0.1", - "license": "MIT", - "optional": true - }, - "node_modules/progress-stream/node_modules/readable-stream": { - "version": "1.1.14", - "license": "MIT", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/progress-stream/node_modules/string_decoder": { - "version": "0.10.31", - "license": "MIT", - "optional": true - }, - "node_modules/progress-stream/node_modules/through2": { - "version": "0.2.3", - "license": "MIT", - "optional": true, - "dependencies": { - "readable-stream": "~1.1.9", - "xtend": "~2.1.1" - } - }, - "node_modules/progress-stream/node_modules/xtend": { - "version": "2.1.2", - "optional": true, - "dependencies": { - "object-keys": "~0.4.0" - }, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/prom-client": { - "version": "14.1.1", - "license": "Apache-2.0", - "dependencies": { - "tdigest": "^0.1.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/promise": { - "version": "1.3.0", - "license": "MIT", - "dependencies": { - "is-promise": "~1" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/proper-lockfile": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "retry": "^0.12.0", - "signal-exit": "^3.0.2" - } - }, - "node_modules/proto-list": { - "version": "1.2.4", - "license": "ISC" - }, - "node_modules/protobufjs": { - "version": "6.11.2", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - }, - "bin": { - "pbjs": "bin/pbjs", - "pbts": "bin/pbts" - } - }, - "node_modules/protocol-buffers-schema": { - "version": "3.6.0", - "license": "MIT" - }, - "node_modules/protons": { - "version": "1.2.1", - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "protocol-buffers-schema": "^3.3.1", - "signed-varint": "^2.0.1", - "varint": "^5.0.0" - } - }, - "node_modules/protons-runtime": { - "version": "4.0.1", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.3.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - }, - "peerDependencies": { - "uint8arraylist": "^2.3.2" - } - }, - "node_modules/protons-runtime/node_modules/long": { - "version": "5.2.1", - "license": "Apache-2.0" - }, - "node_modules/protons-runtime/node_modules/protobufjs": { - "version": "7.1.2", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "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": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/protons/node_modules/buffer": { - "version": "5.7.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/protons/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "license": "MIT", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-addr/node_modules/forwarded": { - "version": "0.2.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/prr": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/pseudomap": { - "version": "1.0.2", - "license": "ISC", - "optional": true - }, - "node_modules/psl": { - "version": "1.9.0", - "license": "MIT", - "optional": true - }, - "node_modules/pump": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pupa": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "escape-goat": "^4.0.0" - }, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pvtsutils": { - "version": "1.3.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/pvutils": { - "version": "1.1.3", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/querystring": { - "version": "0.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/queue": { - "version": "6.0.2", - "license": "MIT", - "dependencies": { - "inherits": "~2.0.3" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/quick-format-unescaped": { - "version": "4.0.4", - "license": "MIT" - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rabin-wasm": { - "version": "0.1.5", - "license": "MIT", - "dependencies": { - "@assemblyscript/loader": "^0.9.4", - "bl": "^5.0.0", - "debug": "^4.3.1", - "minimist": "^1.2.5", - "node-fetch": "^2.6.1", - "readable-stream": "^3.6.0" - }, - "bin": { - "rabin-wasm": "cli/bin.js" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/rate-limiter-flexible": { - "version": "2.4.1", - "license": "ISC" - }, - "node_modules/raw-body": { - "version": "2.5.1", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-is": { - "version": "17.0.2", - "license": "MIT" - }, - "node_modules/react-native-fetch-api": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "p-defer": "^3.0.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readable-web-to-node-stream": { - "version": "3.0.2", - "license": "MIT", - "dependencies": { - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "dev": true, - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/receptacle": { - "version": "1.3.2", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/rechoir": { - "version": "0.8.0", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve": "^1.20.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/reflect-metadata": { - "version": "0.1.13", - "license": "Apache-2.0" - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "dev": true, - "license": "MIT" - }, - "node_modules/registry-auth-token": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "@pnpm/npm-conf": "^1.0.4" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/registry-url": { - "version": "6.0.1", - "license": "MIT", - "dependencies": { - "rc": "1.2.8" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/request": { - "version": "2.88.2", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "license": "MIT", - "optional": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/requires-port": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.20.0", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "license": "MIT" - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve.exports": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/retimer": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/retry": { - "version": "0.12.0", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/rfdc": { - "version": "1.3.0", - "license": "MIT" - }, - "node_modules/rimraf": { - "version": "3.0.2", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/rpc-utils": { - "version": "0.6.2", - "license": "(Apache-2.0 OR MIT)", - "dependencies": { - "nanoid": "^3.3.1" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/rsa-pem-to-jwk": { - "version": "1.1.3", - "license": "Apache 2.0", - "dependencies": { - "object-assign": "^2.0.0", - "rsa-unpack": "0.0.6" - } - }, - "node_modules/rsa-pem-to-jwk/node_modules/object-assign": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rsa-unpack": { - "version": "0.0.6", - "license": "MIT", - "dependencies": { - "optimist": "~0.3.5" - }, - "bin": { - "rsa-unpack": "bin/cmd.js" - } - }, - "node_modules/run-async": { - "version": "2.4.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel-limit": { - "version": "1.1.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/run-script-os": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz", - "integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==", - "dev": true, - "bin": { - "run-os": "index.js", - "run-script-os": "index.js" - } - }, - "node_modules/rxjs": { - "version": "7.8.1", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/sanitize-filename": { - "version": "1.6.3", - "license": "WTFPL OR ISC", - "dependencies": { - "truncate-utf8-bytes": "^1.0.0" - } - }, - "node_modules/sax": { - "version": "1.2.4", - "license": "ISC" - }, - "node_modules/schema-utils": { - "version": "3.2.0", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/scrypt-js": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/secp256k1": { - "version": "4.0.3", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "elliptic": "^6.5.4", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/secure-compare": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/semver": { - "version": "7.3.8", - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-diff": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/send": { - "version": "0.18.0", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "license": "MIT" - }, - "node_modules/sentence-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "license": "MIT", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/set-delayed-interval": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "license": "ISC" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "license": "(MIT AND BSD-3-Clause)", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/shelljs": { - "version": "0.8.5", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/shelljs/node_modules/interpret": { - "version": "1.4.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/shelljs/node_modules/rechoir": { - "version": "0.6.2", - "dev": true, - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "license": "ISC" - }, - "node_modules/signed-varint": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "varint": "~5.0.0" - } - }, - "node_modules/signed-varint/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/single-line-log": { - "version": "1.1.2", - "license": "MIT", - "optional": true, - "dependencies": { - "string-width": "^1.0.1" - } - }, - "node_modules/single-line-log/node_modules/ansi-regex": { - "version": "2.1.1", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/single-line-log/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "license": "MIT", - "optional": true, - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/single-line-log/node_modules/string-width": { - "version": "1.0.2", - "license": "MIT", - "optional": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/single-line-log/node_modules/strip-ansi": { - "version": "3.0.1", - "license": "MIT", - "optional": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "dev": true, - "license": "MIT" - }, - "node_modules/slash": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "license": "MIT", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/snake-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/socket.io": { - "version": "4.6.0", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.4", - "base64id": "~2.0.0", - "debug": "~4.3.2", - "engine.io": "~6.4.0", - "socket.io-adapter": "~2.5.2", - "socket.io-parser": "~4.2.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/socket.io-adapter": { - "version": "2.5.2", - "license": "MIT", - "dependencies": { - "ws": "~8.11.0" - } - }, - "node_modules/socket.io-client": { - "version": "4.5.4", - "license": "MIT", - "dependencies": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.2", - "engine.io-client": "~6.2.3", - "socket.io-parser": "~4.2.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/socket.io-parser": { - "version": "4.2.1", - "license": "MIT", - "dependencies": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/socks": { - "version": "2.6.1", - "license": "MIT", - "dependencies": { - "ip": "^1.1.5", - "smart-buffer": "^4.1.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "agent-base": "^6.0.2", - "debug": "4", - "socks": "^2.3.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/sonic-boom": { - "version": "1.4.1", - "license": "MIT", - "dependencies": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" - } - }, - "node_modules/sort-keys": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "is-plain-obj": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/sort-keys/node_modules/is-plain-obj": { - "version": "4.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/buffer-from": { - "version": "1.1.2", - "license": "MIT" - }, - "node_modules/sparse-array": { - "version": "1.3.2", - "license": "ISC" - }, - "node_modules/speedometer": { - "version": "0.1.4", - "optional": true - }, - "node_modules/split2": { - "version": "2.2.0", - "license": "ISC", - "optional": true, - "dependencies": { - "through2": "^2.0.2" - } - }, - "node_modules/sprintf-js": { - "version": "1.1.2", - "license": "BSD-3-Clause" - }, - "node_modules/sshpk": { - "version": "1.17.0", - "license": "MIT", - "optional": true, - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sshpk/node_modules/jsbn": { - "version": "0.1.1", - "license": "MIT", - "optional": true - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-to-it": { - "version": "0.2.4", - "license": "MIT", - "dependencies": { - "get-iterator": "^1.0.2" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-length": { - "version": "4.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/string-replace-loader": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "peerDependencies": { - "webpack": "^5" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strtok3": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/sumchecker": { - "version": "1.3.1", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "debug": "^2.2.0", - "es6-promise": "^4.0.5" - } - }, - "node_modules/sumchecker/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "optional": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/sumchecker/node_modules/ms": { - "version": "2.0.0", - "license": "MIT", - "optional": true - }, - "node_modules/super-regex": { - "version": "0.2.0", - "license": "MIT", - "dependencies": { - "clone-regexp": "^3.0.0", - "function-timeout": "^0.1.0", - "time-span": "^5.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/symbol-observable": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "6.1.13", - "license": "ISC", - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tdigest": { - "version": "0.1.2", - "license": "MIT", - "dependencies": { - "bintrees": "1.0.2" - } - }, - "node_modules/temp-dir": { - "version": "2.0.0", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/temp-write": { - "version": "5.0.0", - "license": "MIT", - "peer": true, - "dependencies": { - "graceful-fs": "^4.2.6", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "uuid": "^8.3.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/temp-write/node_modules/uuid": { - "version": "8.3.2", - "license": "MIT", - "peer": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/terser": { - "version": "5.18.0", - "license": "BSD-2-Clause", - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/supports-color": { - "version": "8.1.1", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/terser/node_modules/acorn": { - "version": "8.8.2", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "license": "MIT" - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/throttleit": { - "version": "0.0.2", - "license": "MIT", - "optional": true - }, - "node_modules/through": { - "version": "2.3.8", - "dev": true, - "license": "MIT" - }, - "node_modules/through2": { - "version": "2.0.5", - "license": "MIT", - "optional": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.7", - "license": "MIT", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT", - "optional": true - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "optional": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/thunky": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/time-span": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "convert-hrtime": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/timeout-abort-controller": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "retimer": "^3.0.0" - } - }, - "node_modules/timestamp-nano": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/tmp": { - "version": "0.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "rimraf": "^3.0.0" - }, - "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "license": "BSD-3-Clause" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/token-types": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "license": "MIT" - }, - "node_modules/tree-kill": { - "version": "1.2.2", - "dev": true, - "license": "MIT", - "bin": { - "tree-kill": "cli.js" - } - }, - "node_modules/truncate-utf8-bytes": { - "version": "1.0.2", - "license": "WTFPL", - "dependencies": { - "utf8-byte-length": "^1.0.1" - } - }, - "node_modules/ts-jest": { - "version": "29.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "7.x", - "yargs-parser": "^21.0.1" - }, - "bin": { - "ts-jest": "cli.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": ">=7.0.0-beta.0 <8", - "@jest/types": "^29.0.0", - "babel-jest": "^29.0.0", - "jest": "^29.0.0", - "typescript": ">=4.3" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@jest/types": { - "optional": true - }, - "babel-jest": { - "optional": true - }, - "esbuild": { - "optional": true - } - } - }, - "node_modules/ts-jest-resolver": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "jest-resolve": "^27.2.5" - } - }, - "node_modules/ts-jest-resolver/node_modules/@jest/types": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/@types/yargs": { - "version": "16.0.5", - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/ts-jest-resolver/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ts-jest-resolver/node_modules/camelcase": { - "version": "6.3.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ts-jest-resolver/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ts-jest-resolver/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/ts-jest-resolver/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-haste-map": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-regex-util": { - "version": "27.5.1", - "license": "MIT", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-resolve": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-util": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-validate": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-worker": { - "version": "27.5.1", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/ts-jest-resolver/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/ts-jest-resolver/node_modules/leven": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/ts-jest-resolver/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-jest/node_modules/json5": { - "version": "2.2.3", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/ts-jest/node_modules/yargs-parser": { - "version": "21.1.1", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/ts-loader": { - "version": "9.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "typescript": "*", - "webpack": "^5.0.0" - } - }, - "node_modules/ts-loader/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ts-loader/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ts-loader/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ts-loader/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/ts-loader/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-loader/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-node": { - "version": "10.9.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/ts-node/node_modules/acorn": { - "version": "8.8.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/tsconfig-paths-webpack-plugin": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/json5": { - "version": "2.2.3", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tslib": { - "version": "2.5.3", - "license": "0BSD" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "license": "Unlicense", - "optional": true - }, - "node_modules/type-detect": { - "version": "4.0.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "2.19.0", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "license": "MIT", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "license": "MIT" - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "license": "MIT", - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/uid": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "@lukeed/csprng": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/uint8-varint": { - "version": "1.0.4", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "byte-access": "^1.0.0", - "longbits": "^1.1.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8-varint/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8-varint/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arraylist": { - "version": "2.4.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arraylist/node_modules/multiformats": { - "version": "10.0.2", - "license": "Apache-2.0 OR MIT", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arraylist/node_modules/uint8arrays": { - "version": "4.0.2", - "license": "Apache-2.0 OR MIT", - "dependencies": { - "multiformats": "^10.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/uint8arrays": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "multiformats": "^9.4.2" - } - }, - "node_modules/uint8arrays/node_modules/multiformats": { - "version": "9.9.0", - "license": "(Apache-2.0 AND MIT)" - }, - "node_modules/unbox-primitive": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undici": { - "version": "5.12.0", - "license": "MIT", - "peer": true, - "dependencies": { - "busboy": "^1.6.0" - }, - "engines": { - "node": ">=12.18" - } - }, - "node_modules/union": { - "version": "0.5.0", - "dependencies": { - "qs": "^6.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/unique-string": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "crypto-random-string": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/universalify": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/update-notifier": { - "version": "6.0.2", - "license": "BSD-2-Clause", - "dependencies": { - "boxen": "^7.0.0", - "chalk": "^5.0.1", - "configstore": "^6.0.0", - "has-yarn": "^3.0.0", - "import-lazy": "^4.0.0", - "is-ci": "^3.0.1", - "is-installed-globally": "^0.4.0", - "is-npm": "^6.0.0", - "is-yarn-global": "^0.4.0", - "latest-version": "^7.0.0", - "pupa": "^3.1.0", - "semver": "^7.3.7", - "semver-diff": "^4.0.0", - "xdg-basedir": "^5.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/yeoman/update-notifier?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/chalk": { - "version": "5.1.2", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/is-ci": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/upper-case": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/upper-case-first": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-join": { - "version": "2.0.5", - "license": "MIT" - }, - "node_modules/ursa-optional": { - "version": "0.10.2", - "hasInstallScript": true, - "license": "Apache-2.0", - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.14.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/utf8-byte-length": { - "version": "1.0.4", - "license": "WTFPL" - }, - "node_modules/util": { - "version": "0.12.4", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "3.4.0", - "license": "MIT", - "optional": true, - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/v8-to-istanbul": { - "version": "9.0.1", - "dev": true, - "license": "ISC", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/validator": { - "version": "13.7.0", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/varint": { - "version": "6.0.0", - "license": "MIT" - }, - "node_modules/varint-decoder": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "varint": "^5.0.0" - }, - "engines": { - "node": ">=4.0.0", - "npm": ">=3.0.0" - } - }, - "node_modules/varint-decoder/node_modules/varint": { - "version": "5.0.2", - "license": "MIT" - }, - "node_modules/vary": { - "version": "1.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/wait-for-expect": { - "version": "3.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/walker": { - "version": "1.0.8", - "license": "Apache-2.0", - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "license": "MIT", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/webcrypto-core": { - "version": "1.7.7", - "license": "MIT", - "dependencies": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "asn1js": "^3.0.1", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "license": "BSD-2-Clause" - }, - "node_modules/webpack": { - "version": "5.75.0", - "license": "MIT", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-cli": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.0.1", - "@webpack-cli/info": "^2.0.1", - "@webpack-cli/serve": "^2.0.1", - "colorette": "^2.0.14", - "commander": "^9.4.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" - }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true - }, - "webpack-bundle-analyzer": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/webpack-cli/node_modules/colorette": { - "version": "2.0.19", - "dev": true, - "license": "MIT" - }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "9.5.0", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || >=14" - } - }, - "node_modules/webpack-merge": { - "version": "5.8.0", - "dev": true, - "license": "MIT", - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/webpack-node-externals": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "license": "MIT", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/acorn": { - "version": "8.8.2", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.8.0", - "license": "MIT", - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.7", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array/node_modules/es-abstract": { - "version": "1.19.1", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array/node_modules/object-keys": { - "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "license": "ISC", - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/widest-line": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "string-width": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/widest-line/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/widest-line/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/strip-ansi": { - "version": "7.0.1", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/wildcard": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/windows-release": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "execa": "^4.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/windows-release/node_modules/execa": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/windows-release/node_modules/get-stream": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/windows-release/node_modules/human-signals": { - "version": "1.1.1", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/wordwrap": { - "version": "0.0.3", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "license": "ISC" - }, - "node_modules/write-file-atomic": { - "version": "3.0.3", - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/wrtc": { - "version": "0.4.7", - "bundleDependencies": [ - "node-pre-gyp" - ], - "hasInstallScript": true, - "license": "BSD-2-Clause", - "optional": true, - "dependencies": { - "node-pre-gyp": "^0.13.0" - }, - "engines": { - "node": "^8.11.2 || >=10.0.0" - }, - "optionalDependencies": { - "domexception": "^1.0.1" - } - }, - "node_modules/ws": { - "version": "8.11.0", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xdg-basedir": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/xml2js": { - "version": "0.4.23", - "license": "MIT", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "license": "MIT", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/xmlhttprequest-ssl": { - "version": "2.0.0", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/xsalsa20": { - "version": "1.2.0", - "license": "MIT" - }, - "node_modules/xtend": { - "version": "4.0.2", - "license": "MIT", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, - "node_modules/yaml": { - "version": "1.10.2", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "17.6.2", - "license": "MIT", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs/node_modules/yargs-parser": { - "version": "21.1.1", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/yauzl": { - "version": "2.10.0", - "license": "MIT", - "optional": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - }, - "dependencies": { - "@achingbrain/ip-address": { - "version": "8.1.0", - "requires": { - "jsbn": "1.1.0", - "sprintf-js": "1.1.2" - } - }, - "@achingbrain/nat-port-mapper": { - "version": "1.0.7", - "requires": { - "@achingbrain/ssdp": "^4.0.1", - "@libp2p/logger": "^2.0.0", - "default-gateway": "^6.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.7", - "p-defer": "^4.0.0", - "p-timeout": "^5.0.2", - "xml2js": "^0.4.23" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "@achingbrain/ssdp": { - "version": "4.0.1", - "requires": { - "event-iterator": "^2.0.0", - "freeport-promise": "^2.0.0", - "merge-options": "^3.0.4", - "uuid": "^8.3.2", - "xml2js": "^0.4.23" - }, - "dependencies": { - "uuid": { - "version": "8.3.2" - } - } - }, - "@angular-devkit/core": { - "version": "16.1.0", - "dev": true, - "requires": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "7.8.1", - "source-map": "0.7.4" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "dev": true - }, - "source-map": { - "version": "0.7.4", - "dev": true - } - } - }, - "@angular-devkit/schematics": { - "version": "16.1.0", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", - "ora": "5.4.1", - "rxjs": "7.8.1" - } - }, - "@angular-devkit/schematics-cli": { - "version": "16.1.0", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "ansi-colors": "4.1.3", - "inquirer": "8.2.4", - "symbol-observable": "4.0.0", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "inquirer": { - "version": "8.2.4", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yargs-parser": { - "version": "21.1.1", - "dev": true - } - } - }, - "@assemblyscript/loader": { - "version": "0.9.4" - }, - "@babel/code-frame": { - "version": "7.12.11", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/compat-data": { - "version": "7.14.4", - "dev": true - }, - "@babel/core": { - "version": "7.14.3", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.3", - "@babel/helper-compilation-targets": "^7.13.16", - "@babel/helper-module-transforms": "^7.14.2", - "@babel/helpers": "^7.14.0", - "@babel/parser": "^7.14.3", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "json5": { - "version": "2.2.0", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "semver": { - "version": "6.3.0", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.14.3", - "dev": true, - "requires": { - "@babel/types": "^7.14.2", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "dev": true - } - } - }, - "@babel/helper-compilation-targets": { - "version": "7.14.4", - "dev": true, - "requires": { - "@babel/compat-data": "^7.14.4", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.16.6", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "dev": true - } - } - }, - "@babel/helper-function-name": { - "version": "7.14.2", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/types": "^7.12.13" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.13.12", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-module-imports": { - "version": "7.13.12", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-module-transforms": { - "version": "7.14.2", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-simple-access": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/helper-validator-identifier": "^7.14.0", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/types": "^7.12.13" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.20.2", - "dev": true - }, - "@babel/helper-replace-supers": { - "version": "7.14.4", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.4" - } - }, - "@babel/helper-simple-access": { - "version": "7.13.12", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/types": "^7.12.13" - } - }, - "@babel/helper-string-parser": { - "version": "7.19.4", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.22.5", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.12.17", - "dev": true - }, - "@babel/helpers": { - "version": "7.14.0", - "dev": true, - "requires": { - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" - } - }, - "@babel/highlight": { - "version": "7.22.5", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.20.13", - "dev": true - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.19.0" - } - }, - "@babel/runtime": { - "version": "7.20.13", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.11" - } - }, - "@babel/template": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - } - } - }, - "@babel/traverse": { - "version": "7.14.2", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "globals": { - "version": "11.12.0", - "dev": true - } - } - }, - "@babel/types": { - "version": "7.20.7", - "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - } - }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "dev": true - }, - "@chainsafe/is-ip": { - "version": "2.0.1" - }, - "@chainsafe/libp2p-gossipsub": { - "version": "6.1.0", - "requires": { - "@libp2p/crypto": "^1.0.3", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.3.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/pubsub": "^6.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "denque": "^1.5.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "protobufjs": "^6.11.2", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/peer-record": { - "version": "5.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-all": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.0" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@chainsafe/libp2p-noise": { - "version": "11.0.0", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection-encrypter": "^3.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/hkdf": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.1", - "it-length-prefixed": "^8.0.2", - "it-pair": "^2.0.2", - "it-pb-stream": "^2.0.2", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - }, - "dependencies": { - "multiformats": { - "version": "11.0.1" - } - } - }, - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "@colors/colors": { - "version": "1.5.0", - "dev": true, - "optional": true - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@didtools/cacao": { - "version": "1.1.0", - "requires": { - "@ipld/dag-cbor": "^7.0.1", - "apg-js": "^4.1.1", - "caip": "^1.1.0", - "multiformats": "^9.5.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "7.0.3", - "requires": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "multiformats": { - "version": "9.9.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - }, - "dependencies": { - "multiformats": { - "version": "11.0.1" - } - } - } - } - }, - "@didtools/pkh-ethereum": { - "version": "0.0.1", - "requires": { - "@didtools/cacao": "^1.0.0", - "@ethersproject/wallet": "^5.7.0", - "@stablelib/random": "^1.0.2", - "caip": "^1.1.0" - } - }, - "@discoveryjs/json-ext": { - "version": "0.5.7", - "dev": true - }, - "@ethersproject/abi": { - "version": "5.7.0", - "requires": { - "@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": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0" - } - }, - "@ethersproject/abstract-signer": { - "version": "5.7.0", - "requires": { - "@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": { - "version": "5.7.0", - "requires": { - "@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": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0" - } - }, - "@ethersproject/basex": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/properties": "^5.7.0" - } - }, - "@ethersproject/bignumber": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "bn.js": "^5.2.1" - }, - "dependencies": { - "bn.js": { - "version": "5.2.1" - } - } - }, - "@ethersproject/bytes": { - "version": "5.7.0", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/constants": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0" - } - }, - "@ethersproject/contracts": { - "version": "5.7.0", - "requires": { - "@ethersproject/abi": "^5.7.0", - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0" - } - }, - "@ethersproject/hash": { - "version": "5.7.0", - "requires": { - "@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/hdnode": { - "version": "5.7.0", - "requires": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "@ethersproject/json-wallets": { - "version": "5.7.0", - "requires": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "aes-js": "3.0.0", - "scrypt-js": "3.0.1" - } - }, - "@ethersproject/keccak256": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "js-sha3": "0.8.0" - } - }, - "@ethersproject/logger": { - "version": "5.7.0" - }, - "@ethersproject/networks": { - "version": "5.7.1", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/pbkdf2": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/sha2": "^5.7.0" - } - }, - "@ethersproject/properties": { - "version": "5.7.0", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/providers": { - "version": "5.7.2", - "requires": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0", - "bech32": "1.1.4", - "ws": "7.4.6" - }, - "dependencies": { - "ws": { - "version": "7.4.6", - "requires": {} - } - } - }, - "@ethersproject/random": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/rlp": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/sha2": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "hash.js": "1.1.7" - } - }, - "@ethersproject/signing-key": { - "version": "5.7.0", - "requires": { - "@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" - }, - "dependencies": { - "bn.js": { - "version": "5.2.1" - } - } - }, - "@ethersproject/solidity": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@ethersproject/strings": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/transactions": { - "version": "5.7.0", - "requires": { - "@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/units": { - "version": "5.7.0", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/wallet": { - "version": "5.7.0", - "requires": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/json-wallets": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "@ethersproject/web": { - "version": "5.7.1", - "requires": { - "@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" - } - }, - "@ethersproject/wordlists": { - "version": "5.7.0", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@grpc/grpc-js": { - "version": "1.8.7", - "requires": { - "@grpc/proto-loader": "^0.7.0", - "@types/node": ">=12.12.47" - } - }, - "@grpc/proto-loader": { - "version": "0.7.4", - "requires": { - "@types/long": "^4.0.1", - "lodash.camelcase": "^4.3.0", - "long": "^4.0.0", - "protobufjs": "^7.0.0", - "yargs": "^16.2.0" - }, - "dependencies": { - "cliui": { - "version": "7.0.4", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - }, - "dependencies": { - "long": { - "version": "5.2.1" - } - } - }, - "yargs": { - "version": "16.2.0", - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - } - } - }, - "@hapi/accept": { - "version": "5.0.2", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/address": { - "version": "5.1.0", - "requires": { - "@hapi/hoek": "^11.0.2" - }, - "dependencies": { - "@hapi/hoek": { - "version": "11.0.2" - } - } - }, - "@hapi/ammo": { - "version": "5.0.1", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/b64": { - "version": "5.0.0", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/boom": { - "version": "9.1.4", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/bounce": { - "version": "2.0.0", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/bourne": { - "version": "2.1.0" - }, - "@hapi/call": { - "version": "8.0.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/catbox": { - "version": "11.1.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/podium": "4.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/catbox-memory": { - "version": "5.0.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/content": { - "version": "5.0.2", - "requires": { - "@hapi/boom": "9.x.x" - } - }, - "@hapi/cryptiles": { - "version": "5.1.0", - "requires": { - "@hapi/boom": "9.x.x" - } - }, - "@hapi/file": { - "version": "2.0.0" - }, - "@hapi/formula": { - "version": "3.0.2" - }, - "@hapi/hapi": { - "version": "20.2.2", - "requires": { - "@hapi/accept": "^5.0.1", - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/bounce": "^2.0.0", - "@hapi/call": "^8.0.0", - "@hapi/catbox": "^11.1.1", - "@hapi/catbox-memory": "^5.0.0", - "@hapi/heavy": "^7.0.1", - "@hapi/hoek": "^9.0.4", - "@hapi/mimos": "^6.0.0", - "@hapi/podium": "^4.1.1", - "@hapi/shot": "^5.0.5", - "@hapi/somever": "^3.0.0", - "@hapi/statehood": "^7.0.4", - "@hapi/subtext": "^7.0.3", - "@hapi/teamwork": "^5.1.1", - "@hapi/topo": "^5.0.0", - "@hapi/validate": "^1.1.1" - } - }, - "@hapi/heavy": { - "version": "7.0.1", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/hoek": { - "version": "9.1.1" - }, - "@hapi/iron": { - "version": "6.0.0", - "requires": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/mimos": { - "version": "6.0.0", - "requires": { - "@hapi/hoek": "9.x.x", - "mime-db": "1.x.x" - } - }, - "@hapi/nigel": { - "version": "4.0.2", - "requires": { - "@hapi/hoek": "^9.0.4", - "@hapi/vise": "^4.0.0" - } - }, - "@hapi/pez": { - "version": "5.0.3", - "requires": { - "@hapi/b64": "5.x.x", - "@hapi/boom": "9.x.x", - "@hapi/content": "^5.0.2", - "@hapi/hoek": "9.x.x", - "@hapi/nigel": "4.x.x" - } - }, - "@hapi/pinpoint": { - "version": "2.0.1" - }, - "@hapi/podium": { - "version": "4.1.3", - "requires": { - "@hapi/hoek": "9.x.x", - "@hapi/teamwork": "5.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/shot": { - "version": "5.0.5", - "requires": { - "@hapi/hoek": "9.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/somever": { - "version": "3.0.1", - "requires": { - "@hapi/bounce": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/statehood": { - "version": "7.0.4", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/bounce": "2.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/cryptiles": "5.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/iron": "6.x.x", - "@hapi/validate": "1.x.x" - } - }, - "@hapi/subtext": { - "version": "7.0.4", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/content": "^5.0.2", - "@hapi/file": "2.x.x", - "@hapi/hoek": "9.x.x", - "@hapi/pez": "^5.0.1", - "@hapi/wreck": "17.x.x" - } - }, - "@hapi/teamwork": { - "version": "5.1.1" - }, - "@hapi/tlds": { - "version": "1.0.1" - }, - "@hapi/topo": { - "version": "5.0.0", - "requires": { - "@hapi/hoek": "^9.0.0" - } - }, - "@hapi/validate": { - "version": "1.1.3", - "requires": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0" - } - }, - "@hapi/vise": { - "version": "4.0.0", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/wreck": { - "version": "17.2.0", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/bourne": "2.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@ipld/car": { - "version": "5.1.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "cborg": "^1.9.0", - "multiformats": "^11.0.0", - "varint": "^6.0.0" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - } - } - }, - "@ipld/dag-cbor": { - "version": "6.0.13", - "requires": { - "cborg": "^1.2.1", - "multiformats": "^9.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "@ipld/dag-json": { - "version": "10.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "2.1.13", - "requires": { - "multiformats": "^9.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "dev": true - } - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "dev": true - }, - "@jest/console": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/core": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/console": "^29.4.2", - "@jest/reporters": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.4.2", - "jest-config": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-resolve-dependencies": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "jest-watcher": "^29.4.2", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/environment": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2" - } - }, - "@jest/expect": { - "version": "29.4.2", - "dev": true, - "requires": { - "expect": "^29.4.2", - "jest-snapshot": "^29.4.2" - } - }, - "@jest/expect-utils": { - "version": "29.4.2", - "dev": true, - "requires": { - "jest-get-type": "^29.4.2" - }, - "dependencies": { - "jest-get-type": { - "version": "29.4.2", - "dev": true - } - } - }, - "@jest/fake-timers": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - } - }, - "@jest/globals": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/types": "^29.4.2", - "jest-mock": "^29.4.2" - } - }, - "@jest/reporters": { - "version": "29.4.2", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/schemas": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@sinclair/typebox": "^0.25.16" - } - }, - "@jest/source-map": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - } - }, - "@jest/test-result": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/console": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/test-result": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "slash": "^3.0.0" - } - }, - "@jest/transform": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.4.2", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "convert-source-map": { - "version": "2.0.0", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "write-file-atomic": { - "version": "4.0.2", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - } - } - } - }, - "@jest/types": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/schemas": "^29.4.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0" - }, - "@jridgewell/set-array": { - "version": "1.1.2" - }, - "@jridgewell/source-map": { - "version": "0.3.3", - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.17", - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4" - }, - "@libp2p/bootstrap": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-info": "^1.0.7", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/crypto": { - "version": "1.0.11", - "requires": { - "@libp2p/interface-keys": "^1.0.2", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^4.0.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "node-forge": { - "version": "1.3.1" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@libp2p/delegated-content-routing": { - "version": "4.0.0", - "requires": { - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "it-drain": "^2.0.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-drain": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - } - } - }, - "@libp2p/delegated-peer-routing": { - "version": "4.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.1", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "any-signal": "^3.0.1", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "p-defer": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - } - } - }, - "@libp2p/floodsub": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/pubsub": "^6.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.3" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-address-manager": { - "version": "2.0.1", - "requires": { - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/interface-connection": { - "version": "3.0.3", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - } - }, - "@libp2p/interface-connection-encrypter": { - "version": "3.0.2", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.1.2" - } - }, - "@libp2p/interface-connection-manager": { - "version": "1.3.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/interface-content-routing": { - "version": "2.0.1", - "requires": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - } - }, - "@libp2p/interface-dht": { - "version": "2.0.1", - "requires": { - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-keychain": { - "version": "2.0.4", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-keys": { - "version": "1.0.7" - }, - "@libp2p/interface-libp2p": { - "version": "1.1.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-peer-routing": "^1.0.0", - "@libp2p/interface-peer-store": "^1.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-metrics": { - "version": "4.0.5", - "requires": { - "@libp2p/interface-connection": "^3.0.0" - } - }, - "@libp2p/interface-peer-discovery": { - "version": "1.0.2", - "requires": { - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - } - }, - "@libp2p/interface-peer-id": { - "version": "1.0.6", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - } - } - }, - "@libp2p/interface-peer-info": { - "version": "1.0.8", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/interface-peer-routing": { - "version": "1.0.2", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interfaces": "^3.0.0" - } - }, - "@libp2p/interface-peer-store": { - "version": "1.2.3", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interface-peer-info": "^1.0.0", - "@libp2p/interface-record": "^2.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@libp2p/interface-pubsub": { - "version": "3.0.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-pushable": "^3.0.0", - "uint8arraylist": "^2.1.2" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.0" - } - } - }, - "@libp2p/interface-record": { - "version": "2.0.2", - "requires": { - "@libp2p/interface-peer-id": "^1.0.0", - "uint8arraylist": "^2.1.2" - } - }, - "@libp2p/interface-registrar": { - "version": "2.0.4", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-peer-id": "^1.0.0" - } - }, - "@libp2p/interface-stream-muxer": { - "version": "3.0.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "it-stream-types": "^1.0.4" - } - }, - "@libp2p/interface-transport": { - "version": "2.1.1", - "requires": { - "@libp2p/interface-connection": "^3.0.0", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interfaces": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "it-stream-types": "^1.0.4" - } - }, - "@libp2p/interfaces": { - "version": "3.3.1" - }, - "@libp2p/kad-dht": { - "version": "7.0.0", - "requires": { - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-first": "^2.0.0", - "it-length": "^2.0.0", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.3", - "it-stream-types": "^1.0.4", - "it-take": "^2.0.0", - "k-bucket": "^5.1.0", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "p-queue": "^7.2.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "ip-regex": { - "version": "5.0.0" - }, - "ipaddr.js": { - "version": "2.0.1" - }, - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.0" - }, - "it-take": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.0", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "private-ip": { - "version": "3.0.0", - "requires": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - } - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@libp2p/logger": { - "version": "2.0.5", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "debug": "^4.3.3", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/mdns": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/multicast-dns": "^7.2.1", - "multicast-dns": "^7.2.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/mplex": { - "version": "7.1.1", - "requires": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "benchmark": "^2.1.4", - "err-code": "^3.0.1", - "it-batched-bytes": "^1.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.4", - "rate-limiter-flexible": "^2.3.9", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.0" - }, - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "@libp2p/multistream-select": { - "version": "3.1.1", - "requires": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-first": "^1.0.6", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-merge": "^1.0.4", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.0" - }, - "multiformats": { - "version": "10.0.2" - }, - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "@libp2p/peer-collections": { - "version": "3.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/peer-id": { - "version": "2.0.1", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@libp2p/peer-id-factory": { - "version": "2.0.1", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/peer-store": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/peer-record": { - "version": "5.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - } - }, - "it-all": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/prometheus-metrics": { - "version": "1.1.3", - "requires": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.2", - "@libp2p/logger": "^2.0.2", - "it-foreach": "^1.0.0", - "it-stream-types": "^1.0.4" - } - }, - "@libp2p/pubsub": { - "version": "6.0.1", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/topology": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.2.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/record": { - "version": "3.0.0", - "requires": { - "@libp2p/interface-dht": "^2.0.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8arraylist": "^2.1.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/tcp": { - "version": "6.1.2", - "requires": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "stream-to-it": "^0.2.2" - } - }, - "@libp2p/topology": { - "version": "4.0.1", - "requires": { - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/logger": "^2.0.1", - "it-all": "^2.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-all": { - "version": "2.0.0" - } - } - }, - "@libp2p/tracked-map": { - "version": "3.0.2", - "requires": { - "@libp2p/interface-metrics": "^4.0.0" - } - }, - "@libp2p/utils": { - "version": "3.0.2", - "requires": { - "@achingbrain/ip-address": "^8.1.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-peer-store": "^1.2.1", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "is-loopback-addr": "^2.0.1", - "it-stream-types": "^1.0.4", - "private-ip": "^2.1.1", - "uint8arraylist": "^2.3.2" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "is-loopback-addr": { - "version": "2.0.1" - } - } - }, - "@libp2p/webrtc-peer": { - "version": "2.0.2", - "requires": { - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "it-pushable": "^3.0.0", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "p-event": "^5.0.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.2" - }, - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/webrtc-star": { - "version": "6.0.0", - "requires": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-discovery": "^1.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.2", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.1", - "@libp2p/webrtc-peer": "^2.0.0", - "@libp2p/webrtc-star-protocol": "^3.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "delay": "^5.0.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.2", - "multiformats": "^11.0.0", - "p-defer": "^4.0.0", - "socket.io-client": "^4.1.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "@libp2p/webrtc-star-protocol": { - "version": "3.0.0", - "requires": { - "@multiformats/multiaddr": "^11.0.0", - "socket.io-client": "^4.1.2" - } - }, - "@libp2p/websockets": { - "version": "5.0.0", - "requires": { - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-transport": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.2", - "abortable-iterator": "^4.0.2", - "err-code": "^3.0.1", - "it-ws": "^5.0.0", - "p-defer": "^4.0.0", - "p-timeout": "^6.0.0", - "wherearewe": "^2.0.1" - }, - "dependencies": { - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "p-defer": { - "version": "4.0.0" - }, - "p-timeout": { - "version": "6.0.0" - }, - "wherearewe": { - "version": "2.0.1", - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "@lukeed/csprng": { - "version": "1.1.0" - }, - "@mapbox/node-pre-gyp": { - "version": "1.0.10", - "requires": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - } - }, - "@multiformats/base-x": { - "version": "4.0.1" - }, - "@multiformats/mafmt": { - "version": "11.0.3", - "requires": { - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@multiformats/multiaddr": { - "version": "11.4.0", - "requires": { - "@chainsafe/is-ip": "^2.0.1", - "dns-over-http-resolver": "^2.1.0", - "err-code": "^3.0.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "dns-over-http-resolver": { - "version": "2.1.0", - "requires": { - "debug": "^4.3.1", - "native-fetch": "^4.0.2", - "receptacle": "^1.3.2" - } - }, - "native-fetch": { - "version": "4.0.2", - "requires": {} - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - } - } - }, - "@multiformats/multiaddr-to-uri": { - "version": "9.0.2", - "requires": { - "@multiformats/multiaddr": "^11.0.0" - } - }, - "@multiformats/murmur3": { - "version": "2.1.2", - "requires": { - "multiformats": "^11.0.0", - "murmurhash3js-revisited": "^3.0.0" - } - }, - "@multiformats/uri-to-multiaddr": { - "version": "7.0.0", - "requires": { - "@multiformats/multiaddr": "^11.0.0", - "is-ip": "^5.0.0" - }, - "dependencies": { - "ip-regex": { - "version": "5.0.0" - }, - "is-ip": { - "version": "5.0.0", - "requires": { - "ip-regex": "^5.0.0", - "super-regex": "^0.2.0" - } - } - } - }, - "@nestjs/cli": { - "version": "10.0.3", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "@angular-devkit/schematics-cli": "16.1.0", - "@nestjs/schematics": "^10.0.1", - "chalk": "4.1.2", - "chokidar": "3.5.3", - "cli-table3": "0.6.3", - "commander": "4.1.1", - "fork-ts-checker-webpack-plugin": "8.0.0", - "inquirer": "8.2.5", - "node-emoji": "1.11.0", - "ora": "5.4.1", - "os-name": "4.0.1", - "rimraf": "4.4.1", - "shelljs": "0.8.5", - "source-map-support": "0.5.21", - "tree-kill": "1.2.2", - "tsconfig-paths": "4.2.0", - "tsconfig-paths-webpack-plugin": "4.0.1", - "typescript": "5.1.3", - "webpack": "5.87.0", - "webpack-node-externals": "3.0.0" - }, - "dependencies": { - "@types/estree": { - "version": "1.0.1", - "dev": true - }, - "@webassemblyjs/ast": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.6", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.6", - "dev": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.6", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "acorn": { - "version": "8.9.0", - "dev": true - }, - "acorn-import-assertions": { - "version": "1.9.0", - "dev": true, - "requires": {} - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "commander": { - "version": "4.1.1", - "dev": true - }, - "es-module-lexer": { - "version": "1.3.0", - "dev": true - }, - "glob": { - "version": "9.3.5", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "minimatch": "^8.0.2", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - } - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "json5": { - "version": "2.2.3", - "dev": true - }, - "minimatch": { - "version": "8.0.4", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "rimraf": { - "version": "4.4.1", - "dev": true, - "requires": { - "glob": "^9.2.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "requires": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "typescript": { - "version": "5.1.3", - "dev": true - }, - "webpack": { - "version": "5.87.0", - "dev": true, - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - } - } - } - }, - "@nestjs/common": { - "version": "10.0.2", - "requires": { - "iterare": "1.2.1", - "tslib": "2.5.3", - "uid": "2.0.2" - } - }, - "@nestjs/core": { - "version": "10.0.2", - "requires": { - "@nuxtjs/opencollective": "0.3.2", - "fast-safe-stringify": "2.1.1", - "iterare": "1.2.1", - "path-to-regexp": "3.2.0", - "tslib": "2.5.3", - "uid": "2.0.2" - }, - "dependencies": { - "path-to-regexp": { - "version": "3.2.0" - } - } - }, - "@nestjs/platform-express": { - "version": "10.0.2", - "requires": { - "body-parser": "1.20.2", - "cors": "2.8.5", - "express": "4.18.2", - "multer": "1.4.4-lts.1", - "tslib": "2.5.3" - }, - "dependencies": { - "body-parser": { - "version": "1.20.2", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - } - }, - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - }, - "raw-body": { - "version": "2.5.2", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - } - } - }, - "@nestjs/schematics": { - "version": "10.0.1", - "dev": true, - "requires": { - "@angular-devkit/core": "16.1.0", - "@angular-devkit/schematics": "16.1.0", - "comment-json": "4.2.3", - "jsonc-parser": "3.2.0", - "pluralize": "8.0.0" - } - }, - "@nestjs/testing": { - "version": "10.0.2", - "dev": true, - "requires": { - "tslib": "2.5.3" - } - }, - "@noble/ed25519": { - "version": "1.7.1" - }, - "@noble/secp256k1": { - "version": "1.7.0" - }, - "@nuxtjs/opencollective": { - "version": "0.3.2", - "requires": { - "chalk": "^4.1.0", - "consola": "^2.15.0", - "node-fetch": "^2.6.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@peculiar/asn1-schema": { - "version": "2.3.6", - "requires": { - "asn1js": "^3.0.5", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "@peculiar/json-schema": { - "version": "1.1.12", - "requires": { - "tslib": "^2.0.0" - } - }, - "@peculiar/webcrypto": { - "version": "1.4.3", - "requires": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "pvtsutils": "^1.3.2", - "tslib": "^2.5.0", - "webcrypto-core": "^1.7.7" - } - }, - "@pnpm/network.ca-file": { - "version": "1.0.2", - "requires": { - "graceful-fs": "4.2.10" - } - }, - "@pnpm/npm-conf": { - "version": "1.0.5", - "requires": { - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - } - }, - "@protobufjs/aspromise": { - "version": "1.1.2" - }, - "@protobufjs/base64": { - "version": "1.1.2" - }, - "@protobufjs/codegen": { - "version": "2.0.4" - }, - "@protobufjs/eventemitter": { - "version": "1.1.0" - }, - "@protobufjs/fetch": { - "version": "1.1.0", - "requires": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "@protobufjs/float": { - "version": "1.0.2" - }, - "@protobufjs/inquire": { - "version": "1.1.0" - }, - "@protobufjs/path": { - "version": "1.1.2" - }, - "@protobufjs/pool": { - "version": "1.1.0" - }, - "@protobufjs/utf8": { - "version": "1.1.0" - }, - "@sinclair/typebox": { - "version": "0.25.21", - "devOptional": true - }, - "@sinonjs/commons": { - "version": "2.0.0", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "10.0.2", - "dev": true, - "requires": { - "@sinonjs/commons": "^2.0.0" - } - }, - "@socket.io/component-emitter": { - "version": "3.1.0" - }, - "@stablelib/aead": { - "version": "1.0.1" - }, - "@stablelib/binary": { - "version": "1.0.1", - "requires": { - "@stablelib/int": "^1.0.1" - } - }, - "@stablelib/bytes": { - "version": "1.0.1" - }, - "@stablelib/chacha": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/chacha20poly1305": { - "version": "1.0.1", - "requires": { - "@stablelib/aead": "^1.0.1", - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/poly1305": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/constant-time": { - "version": "1.0.1" - }, - "@stablelib/ed25519": { - "version": "1.0.3", - "requires": { - "@stablelib/random": "^1.0.2", - "@stablelib/sha512": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/hash": { - "version": "1.0.1" - }, - "@stablelib/hkdf": { - "version": "1.0.1", - "requires": { - "@stablelib/hash": "^1.0.1", - "@stablelib/hmac": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/hmac": { - "version": "1.0.1", - "requires": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/int": { - "version": "1.0.1" - }, - "@stablelib/keyagreement": { - "version": "1.0.1", - "requires": { - "@stablelib/bytes": "^1.0.1" - } - }, - "@stablelib/poly1305": { - "version": "1.0.1", - "requires": { - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/random": { - "version": "1.0.2", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/sha256": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/sha512": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/hash": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/wipe": { - "version": "1.0.1" - }, - "@stablelib/x25519": { - "version": "1.0.3", - "requires": { - "@stablelib/keyagreement": "^1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/xchacha20": { - "version": "1.0.1", - "requires": { - "@stablelib/binary": "^1.0.1", - "@stablelib/chacha": "^1.0.1", - "@stablelib/wipe": "^1.0.1" - } - }, - "@stablelib/xchacha20poly1305": { - "version": "1.0.1", - "requires": { - "@stablelib/aead": "^1.0.1", - "@stablelib/chacha20poly1305": "^1.0.1", - "@stablelib/constant-time": "^1.0.1", - "@stablelib/wipe": "^1.0.1", - "@stablelib/xchacha20": "^1.0.1" - } - }, - "@tokenizer/token": { - "version": "0.3.0" - }, - "@tsconfig/node10": { - "version": "1.0.9", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.3", - "dev": true - }, - "@types/babel__core": { - "version": "7.20.0", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.11.1", - "dev": true, - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/bn.js": { - "version": "5.1.1", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/body-parser": { - "version": "1.19.0", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/connect": { - "version": "3.4.34", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/cookie": { - "version": "0.4.1" - }, - "@types/cookiejar": { - "version": "2.1.2", - "dev": true - }, - "@types/cors": { - "version": "2.8.13", - "requires": { - "@types/node": "*" - } - }, - "@types/crypto-js": { - "version": "4.0.2", - "dev": true - }, - "@types/dns-packet": { - "version": "5.2.4", - "requires": { - "@types/node": "*" - } - }, - "@types/elliptic": { - "version": "6.4.14", - "dev": true, - "requires": { - "@types/bn.js": "*" - } - }, - "@types/eslint": { - "version": "8.4.10", - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "@types/eslint-scope": { - "version": "3.7.4", - "requires": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "@types/estree": { - "version": "0.0.51" - }, - "@types/events": { - "version": "1.2.0", - "dev": true - }, - "@types/express": { - "version": "4.17.15", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.31", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.32", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "@types/graceful-fs": { - "version": "4.1.5", - "requires": { - "@types/node": "*" - } - }, - "@types/http-cache-semantics": { - "version": "4.0.1" - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.3" - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "28.1.8", - "dev": true, - "requires": { - "expect": "^28.0.0", - "pretty-format": "^28.0.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.5" - } - }, - "@jest/expect-utils": { - "version": "28.1.3", - "dev": true, - "requires": { - "jest-get-type": "^28.0.2" - } - }, - "@jest/schemas": { - "version": "28.1.3", - "dev": true, - "requires": { - "@sinclair/typebox": "^0.24.1" - } - }, - "@jest/types": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - } - }, - "@sinclair/typebox": { - "version": "0.24.51", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "diff-sequences": { - "version": "28.1.1", - "dev": true - }, - "expect": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/expect-utils": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3" - } - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-diff": { - "version": "28.1.3", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^28.1.1", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - } - }, - "jest-get-type": { - "version": "28.0.2", - "dev": true - }, - "jest-matcher-utils": { - "version": "28.1.3", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - } - }, - "jest-message-util": { - "version": "28.1.3", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-util": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "pretty-format": { - "version": "28.1.3", - "dev": true, - "requires": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@types/json-schema": { - "version": "7.0.11" - }, - "@types/long": { - "version": "4.0.1" - }, - "@types/luxon": { - "version": "3.3.0", - "dev": true - }, - "@types/mime": { - "version": "2.0.3", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.5" - }, - "@types/mock-fs": { - "version": "4.13.1", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/multicast-dns": { - "version": "7.2.1", - "requires": { - "@types/dns-packet": "*", - "@types/node": "*" - } - }, - "@types/node": { - "version": "18.11.9" - }, - "@types/node-fetch": { - "version": "2.5.11", - "dev": true, - "requires": { - "@types/node": "*", - "form-data": "^3.0.0" - } - }, - "@types/orbit-db": { - "version": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", - "dev": true, - "from": "@types/orbit-db@git+https://github.com/orbitdb/orbit-db-types.git", - "requires": { - "@types/elliptic": "^6.4.6", - "@types/events": "^1.2.0", - "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", - "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", - "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", - "dev": true, - "requires": { - "cborg": "^2.0.1", - "multiformats": "^12.0.1" - }, - "dependencies": { - "multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true - } - } - }, - "@libp2p/crypto": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", - "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", - "dev": true, - "requires": { - "@libp2p/interface-keys": "^1.0.2", - "@libp2p/interfaces": "^3.2.0", - "@noble/ed25519": "^1.6.0", - "@noble/secp256k1": "^1.5.4", - "multiformats": "^11.0.0", - "node-forge": "^1.1.0", - "protons-runtime": "^5.0.0", - "uint8arraylist": "^2.4.3", - "uint8arrays": "^4.0.2" - } - }, - "@types/ipfs": { - "version": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", - "dev": true, - "from": "@types/ipfs@git+https://github.com/lukas2005/types-ipfs.git" - }, - "cborg": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", - "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", - "dev": true - }, - "long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", - "dev": true - }, - "node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true - }, - "orbit-db": { - "version": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", - "dev": true, - "from": "orbit-db@git+https://github.com/orbitdb/orbit-db.git", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@libp2p/crypto": "^1.0.12", - "it-pipe": "^2.0.5", - "level": "8.0.0", - "lru": "^3.1.0", - "multiformats": "^11.0.1", - "p-queue": "^7.3.4", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.3" - } - }, - "protobufjs": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", - "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", - "dev": true, - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "protons-runtime": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", - "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", - "dev": true, - "requires": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.4.3" - } - }, - "uint8arraylist": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", - "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", - "dev": true, - "requires": { - "uint8arrays": "^4.0.2" - } - }, - "uint8arrays": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", - "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", - "dev": true, - "requires": { - "multiformats": "^12.0.1" - }, - "dependencies": { - "multiformats": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", - "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", - "dev": true - } - } - } - } - }, - "@types/parse-json": { - "version": "4.0.0", - "dev": true - }, - "@types/prettier": { - "version": "2.7.1", - "dev": true - }, - "@types/qs": { - "version": "6.9.5", - "dev": true - }, - "@types/range-parser": { - "version": "1.2.3", - "dev": true - }, - "@types/retry": { - "version": "0.12.1" - }, - "@types/serve-static": { - "version": "1.15.0", - "dev": true, - "requires": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "@types/stack-utils": { - "version": "2.0.1", - "dev": true - }, - "@types/superagent": { - "version": "4.1.18", - "dev": true, - "requires": { - "@types/cookiejar": "*", - "@types/node": "*" - } - }, - "@types/supertest": { - "version": "2.0.12", - "dev": true, - "requires": { - "@types/superagent": "*" - } - }, - "@types/tmp": { - "version": "0.2.3", - "dev": true - }, - "@types/validator": { - "version": "13.1.4" - }, - "@types/ws": { - "version": "8.5.3", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/yargs": { - "version": "17.0.15", - "devOptional": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0" - }, - "@vascosantos/moving-average": { - "version": "1.1.0" - }, - "@webassemblyjs/ast": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.1", - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.1", - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.1" - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@webpack-cli/configtest": { - "version": "2.0.1", - "dev": true, - "requires": {} - }, - "@webpack-cli/info": { - "version": "2.0.1", - "dev": true, - "requires": {} - }, - "@webpack-cli/serve": { - "version": "2.0.1", - "dev": true, - "requires": {} - }, - "@xtuc/ieee754": { - "version": "1.2.0" - }, - "@xtuc/long": { - "version": "4.2.2" - }, - "abbrev": { - "version": "1.1.1" - }, - "abort-controller": { - "version": "3.0.0", - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "abortable-iterator": { - "version": "3.0.2", - "requires": { - "get-iterator": "^1.0.2" - } - }, - "abstract-level": { - "version": "1.0.3", - "requires": { - "buffer": "^6.0.3", - "catering": "^2.1.0", - "is-buffer": "^2.0.5", - "level-supports": "^4.0.0", - "level-transcoder": "^1.0.1", - "module-error": "^1.0.1", - "queue-microtask": "^1.2.3" - }, - "dependencies": { - "level-supports": { - "version": "4.0.1" - } - } - }, - "abstract-leveldown": { - "version": "7.2.0", - "requires": { - "buffer": "^6.0.3", - "catering": "^2.0.0", - "is-buffer": "^2.0.5", - "level-concat-iterator": "^3.0.0", - "level-supports": "^2.0.1", - "queue-microtask": "^1.2.3" - } - }, - "abstract-logging": { - "version": "2.0.1" - }, - "accepts": { - "version": "1.3.8", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn-walk": { - "version": "8.2.0", - "dev": true - }, - "aes-js": { - "version": "3.0.0" - }, - "agent-base": { - "version": "6.0.2", - "requires": { - "debug": "4" - } - }, - "aggregate-error": { - "version": "3.1.0", - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-formats": { - "version": "2.1.1", - "dev": true, - "requires": { - "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "dev": true - } - } - }, - "ajv-keywords": { - "version": "3.5.2", - "requires": {} - }, - "ansi-align": { - "version": "3.0.1", - "requires": { - "string-width": "^4.1.0" - } - }, - "ansi-colors": { - "version": "4.1.3", - "dev": true - }, - "ansi-escapes": { - "version": "4.3.2", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - }, - "dependencies": { - "type-fest": { - "version": "0.21.3", - "dev": true - } - } - }, - "ansi-regex": { - "version": "5.0.1" - }, - "ansi-styles": { - "version": "3.2.1", - "requires": { - "color-convert": "^1.9.0" - } - }, - "any-signal": { - "version": "3.0.1" - }, - "anymatch": { - "version": "3.1.2", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "apg-js": { - "version": "4.1.3" - }, - "append-field": { - "version": "1.0.0" - }, - "aproba": { - "version": "2.0.0" - }, - "are-we-there-yet": { - "version": "2.0.0", - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "arg": { - "version": "4.1.3", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - }, - "dependencies": { - "sprintf-js": { - "version": "1.0.3", - "dev": true - } - } - }, - "args": { - "version": "5.0.3", - "requires": { - "camelcase": "5.0.0", - "chalk": "2.4.2", - "leven": "2.1.0", - "mri": "1.1.4" - }, - "dependencies": { - "camelcase": { - "version": "5.0.0" - } - } - }, - "array-flatten": { - "version": "1.1.1" - }, - "array-shuffle": { - "version": "3.0.0" - }, - "array-timsort": { - "version": "1.0.3", - "dev": true - }, - "asap": { - "version": "2.0.6" - }, - "asmcrypto.js": { - "version": "2.3.2" - }, - "asn1": { - "version": "0.2.6", - "optional": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "5.4.1", - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "asn1js": { - "version": "3.0.5", - "requires": { - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - } - }, - "assert": { - "version": "2.0.0", - "requires": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "optional": true - }, - "async": { - "version": "2.6.3", - "requires": { - "lodash": "^4.17.14" - } - }, - "asynckit": { - "version": "0.4.0", - "devOptional": true - }, - "atomic-sleep": { - "version": "1.0.0" - }, - "available-typed-arrays": { - "version": "1.0.5" - }, - "aws-sign2": { - "version": "0.7.0", - "optional": true - }, - "aws4": { - "version": "1.12.0", - "optional": true - }, - "babel-jest": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/transform": "^29.4.2", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.4.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "dev": true, - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - } - }, - "babel-preset-jest": { - "version": "29.4.2", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^29.4.2", - "babel-preset-current-node-syntax": "^1.0.0" - } - }, - "balanced-match": { - "version": "1.0.0" - }, - "base-x": { - "version": "3.0.9", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "base64-js": { - "version": "1.3.1" - }, - "base64id": { - "version": "2.0.0" - }, - "basic-auth": { - "version": "1.1.0" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "optional": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bech32": { - "version": "1.1.4" - }, - "benchmark": { - "version": "2.1.4", - "requires": { - "lodash": "^4.17.4", - "platform": "^1.3.3" - } - }, - "big.js": { - "version": "5.2.2" - }, - "binary-extensions": { - "version": "2.2.0", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bintrees": { - "version": "1.0.2" - }, - "bip66": { - "version": "1.1.5", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "bl": { - "version": "5.1.0", - "requires": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "blakejs": { - "version": "1.1.0" - }, - "blob-to-it": { - "version": "2.0.0", - "requires": { - "browser-readablestream-to-it": "^2.0.0" - } - }, - "blockstore-core": { - "version": "3.0.0", - "requires": { - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-store": "^3.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-take": "^2.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-take": { - "version": "2.0.0" - } - } - }, - "blockstore-datastore-adapter": { - "version": "5.0.0", - "requires": { - "blockstore-core": "^3.0.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-drain": "^2.0.0", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "it-drain": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - } - } - }, - "bn.js": { - "version": "4.11.9" - }, - "body-parser": { - "version": "1.20.1", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - } - } - }, - "boxen": { - "version": "7.0.0", - "requires": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.0", - "chalk": "^5.0.1", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1" - }, - "ansi-styles": { - "version": "6.2.1" - }, - "camelcase": { - "version": "7.0.0" - }, - "chalk": { - "version": "5.1.2" - }, - "emoji-regex": { - "version": "9.2.2" - }, - "string-width": { - "version": "5.1.2", - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.0.1", - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.0.1", - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "requires": { - "fill-range": "^7.0.1" - } - }, - "brorand": { - "version": "1.1.0" - }, - "browser-level": { - "version": "1.0.1", - "requires": { - "abstract-level": "^1.0.2", - "catering": "^2.1.1", - "module-error": "^1.0.2", - "run-parallel-limit": "^1.1.0" - } - }, - "browser-readablestream-to-it": { - "version": "2.0.0" - }, - "browserify-aes": { - "version": "1.2.0", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserslist": { - "version": "4.16.6", - "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - } - }, - "bs-logger": { - "version": "0.2.6", - "dev": true, - "requires": { - "fast-json-stable-stringify": "2.x" - } - }, - "bs58": { - "version": "4.0.1", - "requires": { - "base-x": "^3.0.2" - } - }, - "bser": { - "version": "2.1.1", - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "6.0.3", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "buffer-crc32": { - "version": "0.2.13", - "optional": true - }, - "buffer-xor": { - "version": "1.0.3" - }, - "busboy": { - "version": "1.6.0", - "requires": { - "streamsearch": "^1.1.0" - } - }, - "byte-access": { - "version": "1.0.1", - "requires": { - "uint8arraylist": "^2.0.0" - } - }, - "byteman": { - "version": "1.3.5" - }, - "bytes": { - "version": "3.1.2" - }, - "bytestreamjs": { - "version": "2.0.1" - }, - "caip": { - "version": "1.1.0" - }, - "call-bind": { - "version": "1.0.2", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "dev": true - }, - "camel-case": { - "version": "4.1.2", - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "camelcase": { - "version": "5.3.1", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001235" - }, - "canonicalize": { - "version": "1.0.8" - }, - "capital-case": { - "version": "1.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "caseless": { - "version": "0.12.0", - "optional": true - }, - "catering": { - "version": "2.1.1" - }, - "cborg": { - "version": "1.10.0" - }, - "chalk": { - "version": "2.4.2", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "change-case": { - "version": "4.1.2", - "requires": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "char-regex": { - "version": "1.0.2", - "dev": true - }, - "chardet": { - "version": "0.7.0", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "chownr": { - "version": "2.0.0" - }, - "chrome-trace-event": { - "version": "1.0.3" - }, - "ci-info": { - "version": "3.7.0" - }, - "cipher-base": { - "version": "1.0.4", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "cjs-module-lexer": { - "version": "1.2.2", - "dev": true - }, - "class-is": { - "version": "1.1.0" - }, - "class-transformer": { - "version": "0.5.1" - }, - "class-validator": { - "version": "0.13.1", - "requires": { - "@types/validator": "^13.1.3", - "libphonenumber-js": "^1.9.7", - "validator": "^13.5.2" - } - }, - "classic-level": { - "version": "1.2.0", - "requires": { - "abstract-level": "^1.0.2", - "catering": "^2.1.0", - "module-error": "^1.0.1", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - } - }, - "clean-stack": { - "version": "2.2.0" - }, - "cli-boxes": { - "version": "3.0.0" - }, - "cli-cursor": { - "version": "3.1.0", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.9.0", - "dev": true - }, - "cli-table": { - "version": "0.3.6", - "requires": { - "colors": "1.0.3" - }, - "dependencies": { - "colors": { - "version": "1.0.3" - } - } - }, - "cli-table3": { - "version": "0.6.3", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "string-width": "^4.2.0" - } - }, - "cli-width": { - "version": "3.0.0", - "dev": true - }, - "cliui": { - "version": "8.0.1", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "clone": { - "version": "1.0.4", - "dev": true - }, - "clone-deep": { - "version": "4.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - } - }, - "clone-regexp": { - "version": "3.0.0", - "requires": { - "is-regexp": "^3.0.0" - } - }, - "co": { - "version": "4.6.0", - "dev": true - }, - "code-point-at": { - "version": "1.1.0", - "optional": true - }, - "coercer": { - "version": "1.1.2" - }, - "collect-v8-coverage": { - "version": "1.0.1", - "dev": true - }, - "color-convert": { - "version": "1.9.3", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3" - }, - "color-support": { - "version": "1.1.3" - }, - "colorette": { - "version": "1.2.2" - }, - "colors": { - "version": "1.4.0" - }, - "combined-stream": { - "version": "1.0.8", - "devOptional": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "7.2.0" - }, - "comment-json": { - "version": "4.2.3", - "dev": true, - "requires": { - "array-timsort": "^1.0.3", - "core-util-is": "^1.0.3", - "esprima": "^4.0.1", - "has-own-prop": "^2.0.0", - "repeat-string": "^1.6.1" - }, - "dependencies": { - "core-util-is": { - "version": "1.0.3", - "dev": true - } - } - }, - "concat-map": { - "version": "0.0.1" - }, - "concat-stream": { - "version": "1.6.2", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - }, - "dependencies": { - "buffer-from": { - "version": "1.1.2" - }, - "readable-stream": { - "version": "2.3.7", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2" - }, - "string_decoder": { - "version": "1.1.1", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "config-chain": { - "version": "1.1.13", - "requires": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "configstore": { - "version": "6.0.0", - "requires": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" - } - }, - "consola": { - "version": "2.15.3" - }, - "console-control-strings": { - "version": "1.1.0" - }, - "constant-case": { - "version": "3.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "content-disposition": { - "version": "0.5.4", - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5" - }, - "convert-hrtime": { - "version": "5.0.0" - }, - "convert-source-map": { - "version": "1.7.0", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "dev": true - } - } - }, - "cookie": { - "version": "0.4.2" - }, - "cookie-signature": { - "version": "1.0.6" - }, - "core-js": { - "version": "3.27.2", - "dev": true - }, - "core-util-is": { - "version": "1.0.2" - }, - "cors": { - "version": "2.8.5", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "corser": { - "version": "2.0.1" - }, - "cosmiconfig": { - "version": "7.1.0", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "dependencies": { - "parse-json": { - "version": "5.2.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - } - } - }, - "create-hash": { - "version": "1.2.0", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "create-require": { - "version": "1.1.1", - "dev": true - }, - "cross-env": { - "version": "5.2.1", - "dev": true, - "requires": { - "cross-spawn": "^6.0.5" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "dev": true - }, - "semver": { - "version": "5.7.1", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "dev": true - }, - "which": { - "version": "1.3.1", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "cross-spawn": { - "version": "7.0.3", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-js": { - "version": "4.1.1" - }, - "crypto-random-string": { - "version": "4.0.0", - "requires": { - "type-fest": "^1.0.1" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0" - } - } - }, - "dag-jose": { - "version": "4.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - } - } - }, - "dag-jose-utils": { - "version": "2.0.0", - "requires": { - "@ipld/dag-cbor": "^7.0.1", - "multiformats": "^9.5.1" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "7.0.3", - "requires": { - "cborg": "^1.6.0", - "multiformats": "^9.5.4" - } - }, - "multiformats": { - "version": "9.9.0" - } - } - }, - "dashdash": { - "version": "1.14.1", - "optional": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "datastore-core": { - "version": "8.0.2", - "requires": { - "@libp2p/logger": "^2.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^1.0.4", - "it-drain": "^1.0.4", - "it-filter": "^1.0.2", - "it-map": "^1.0.5", - "it-merge": "^1.0.1", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-take": "^1.0.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.0" - }, - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "datastore-fs": { - "version": "8.0.0", - "requires": { - "datastore-core": "^8.0.1", - "fast-write-atomic": "^0.2.0", - "interface-datastore": "^7.0.0", - "it-glob": "^1.0.1", - "it-map": "^1.0.5", - "it-parallel-batch": "^1.0.9", - "mkdirp": "^1.0.4" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4" - } - } - }, - "datastore-level": { - "version": "9.0.4", - "requires": { - "abstract-level": "^1.0.3", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "it-filter": "^2.0.0", - "it-map": "^2.0.0", - "it-sort": "^2.0.0", - "it-take": "^2.0.0", - "level": "8.0.0" - }, - "dependencies": { - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-take": { - "version": "2.0.0" - } - } - }, - "datastore-pubsub": { - "version": "7.0.0", - "requires": { - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.0", - "datastore-core": "^8.0.1", - "interface-datastore": "^7.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "dateformat": { - "version": "4.6.3" - }, - "debug": { - "version": "4.3.4", - "requires": { - "ms": "2.1.2" - } - }, - "decompress-response": { - "version": "6.0.0", - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0" - } - } - }, - "dedent": { - "version": "0.7.0", - "dev": true - }, - "deep-extend": { - "version": "0.6.0" - }, - "deepmerge": { - "version": "4.3.0", - "dev": true - }, - "default-gateway": { - "version": "6.0.3", - "requires": { - "execa": "^5.0.0" - } - }, - "defaults": { - "version": "1.0.4", - "dev": true, - "requires": { - "clone": "^1.0.2" - } - }, - "defer-to-connect": { - "version": "2.0.1" - }, - "deferred-leveldown": { - "version": "5.1.0", - "requires": { - "abstract-leveldown": "~6.0.0", - "inherits": "^2.0.3" - }, - "dependencies": { - "abstract-leveldown": { - "version": "6.0.3", - "requires": { - "level-concat-iterator": "~2.0.0", - "xtend": "~4.0.0" - } - }, - "level-concat-iterator": { - "version": "2.0.1" - } - } - }, - "define-properties": { - "version": "1.1.3", - "requires": { - "object-keys": "^1.0.12" - }, - "dependencies": { - "object-keys": { - "version": "1.1.1" - } - } - }, - "delay": { - "version": "5.0.0" - }, - "delayed-stream": { - "version": "1.0.0", - "devOptional": true - }, - "delegates": { - "version": "1.0.0" - }, - "denque": { - "version": "1.5.1" - }, - "depd": { - "version": "2.0.0" - }, - "destroy": { - "version": "1.2.0" - }, - "detect-libc": { - "version": "2.0.1" - }, - "detect-newline": { - "version": "3.1.0", - "dev": true - }, - "dezalgo": { - "version": "1.0.4", - "requires": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "did-jwt": { - "version": "6.11.0", - "requires": { - "@stablelib/ed25519": "^1.0.2", - "@stablelib/random": "^1.0.1", - "@stablelib/sha256": "^1.0.1", - "@stablelib/x25519": "^1.0.2", - "@stablelib/xchacha20poly1305": "^1.0.1", - "bech32": "^2.0.0", - "canonicalize": "^1.0.8", - "did-resolver": "^4.0.0", - "elliptic": "^6.5.4", - "js-sha3": "^0.8.0", - "multiformats": "^9.6.5", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "bech32": { - "version": "2.0.0" - }, - "did-resolver": { - "version": "4.0.1" - }, - "multiformats": { - "version": "9.9.0" - } - } - }, - "did-resolver": { - "version": "3.2.2" - }, - "dids": { - "version": "3.4.0", - "requires": { - "@didtools/cacao": "^1.0.0", - "@didtools/pkh-ethereum": "^0.0.1", - "@stablelib/random": "^1.0.1", - "dag-jose-utils": "^2.0.0", - "did-jwt": "^6.0.0", - "did-resolver": "^3.1.5", - "multiformats": "^9.4.10", - "rpc-utils": "^0.6.1", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "diff": { - "version": "4.0.2", - "dev": true - }, - "diff-match-patch": { - "version": "1.0.5" - }, - "diff-sequences": { - "version": "29.4.2", - "dev": true - }, - "dlv": { - "version": "1.1.3" - }, - "dns-over-http-resolver": { - "version": "1.2.3", - "requires": { - "debug": "^4.3.1", - "native-fetch": "^3.0.0", - "receptacle": "^1.3.2" - } - }, - "dns-packet": { - "version": "5.4.0", - "requires": { - "@leichtgewicht/ip-codec": "^2.0.1" - } - }, - "domexception": { - "version": "1.0.1", - "optional": true, - "requires": { - "webidl-conversions": "^4.0.2" - }, - "dependencies": { - "webidl-conversions": { - "version": "4.0.2", - "optional": true - } - } - }, - "dot-case": { - "version": "3.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "dot-prop": { - "version": "6.0.1", - "requires": { - "is-obj": "^2.0.0" - } - }, - "dotenv": { - "version": "8.2.0" - }, - "drbg.js": { - "version": "1.0.1", - "requires": { - "browserify-aes": "^1.0.6", - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4" - } - }, - "eastasianwidth": { - "version": "0.2.0" - }, - "ecc-jsbn": { - "version": "0.1.2", - "optional": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "jsbn": { - "version": "0.1.1", - "optional": true - } - } - }, - "ecstatic": { - "version": "3.3.2", - "requires": { - "he": "^1.1.1", - "mime": "^1.6.0", - "minimist": "^1.1.0", - "url-join": "^2.0.5" - } - }, - "ee-first": { - "version": "1.1.1" - }, - "ejs": { - "version": "3.1.8", - "requires": { - "jake": "^10.8.5" - } - }, - "electron": { - "version": "1.8.8", - "optional": true, - "requires": { - "@types/node": "^8.0.24", - "electron-download": "^3.0.1", - "extract-zip": "^1.0.3" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "optional": true - } - } - }, - "electron-download": { - "version": "3.3.0", - "optional": true, - "requires": { - "debug": "^2.2.0", - "fs-extra": "^0.30.0", - "home-path": "^1.0.1", - "minimist": "^1.2.0", - "nugget": "^2.0.0", - "path-exists": "^2.1.0", - "rc": "^1.1.2", - "semver": "^5.3.0", - "sumchecker": "^1.2.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - }, - "semver": { - "version": "5.7.1", - "optional": true - } - } - }, - "electron-eval": { - "version": "0.9.10", - "optional": true, - "requires": { - "cross-spawn": "^5.1.0", - "electron": "^1.6.11", - "headless": "https://github.com/paulkernfeld/node-headless/tarball/master", - "ndjson": "^1.5.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "optional": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "lru-cache": { - "version": "4.1.5", - "optional": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "shebang-command": { - "version": "1.2.0", - "optional": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "optional": true - }, - "which": { - "version": "1.3.1", - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "yallist": { - "version": "2.1.2", - "optional": true - } - } - }, - "electron-fetch": { - "version": "1.7.4", - "requires": { - "encoding": "^0.1.13" - } - }, - "electron-to-chromium": { - "version": "1.3.749" - }, - "electron-webrtc": { - "version": "0.3.0", - "optional": true, - "requires": { - "debug": "^2.2.0", - "electron-eval": "^0.9.0", - "get-browser-rtc": "^1.0.2", - "hat": "^0.0.3" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - } - } - }, - "elliptic": { - "version": "6.5.4", - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "emittery": { - "version": "0.13.1", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0" - }, - "emojis-list": { - "version": "3.0.0" - }, - "encodeurl": { - "version": "1.0.2" - }, - "encoding": { - "version": "0.1.13", - "requires": { - "iconv-lite": "^0.6.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.2", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "end-of-stream": { - "version": "1.4.4", - "requires": { - "once": "^1.4.0" - } - }, - "engine.io": { - "version": "6.4.0", - "requires": { - "@types/cookie": "^0.4.1", - "@types/cors": "^2.8.12", - "@types/node": ">=10.0.0", - "accepts": "~1.3.4", - "base64id": "2.0.0", - "cookie": "~0.4.1", - "cors": "~2.8.5", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.11.0" - } - }, - "engine.io-client": { - "version": "6.2.3", - "requires": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", - "xmlhttprequest-ssl": "~2.0.0" - }, - "dependencies": { - "ws": { - "version": "8.2.3", - "requires": {} - } - } - }, - "engine.io-parser": { - "version": "5.0.4" - }, - "enhanced-resolve": { - "version": "5.15.0", - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "envinfo": { - "version": "7.8.1", - "dev": true - }, - "err-code": { - "version": "3.0.1" - }, - "errno": { - "version": "0.1.8", - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-module-lexer": { - "version": "0.9.3" - }, - "es-to-primitive": { - "version": "1.2.1", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es6-object-assign": { - "version": "1.1.0" - }, - "es6-promise": { - "version": "4.2.8", - "optional": true - }, - "escalade": { - "version": "3.1.1" - }, - "escape-goat": { - "version": "4.0.0" - }, - "escape-html": { - "version": "1.0.3" - }, - "escape-string-regexp": { - "version": "1.0.5" - }, - "eslint-scope": { - "version": "5.1.1", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "esprima": { - "version": "4.0.1", - "dev": true - }, - "esrecurse": { - "version": "4.3.0", - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0" - } - } - }, - "estraverse": { - "version": "4.3.0" - }, - "etag": { - "version": "1.8.1" - }, - "ethers": { - "version": "5.7.2", - "requires": { - "@ethersproject/abi": "5.7.0", - "@ethersproject/abstract-provider": "5.7.0", - "@ethersproject/abstract-signer": "5.7.0", - "@ethersproject/address": "5.7.0", - "@ethersproject/base64": "5.7.0", - "@ethersproject/basex": "5.7.0", - "@ethersproject/bignumber": "5.7.0", - "@ethersproject/bytes": "5.7.0", - "@ethersproject/constants": "5.7.0", - "@ethersproject/contracts": "5.7.0", - "@ethersproject/hash": "5.7.0", - "@ethersproject/hdnode": "5.7.0", - "@ethersproject/json-wallets": "5.7.0", - "@ethersproject/keccak256": "5.7.0", - "@ethersproject/logger": "5.7.0", - "@ethersproject/networks": "5.7.1", - "@ethersproject/pbkdf2": "5.7.0", - "@ethersproject/properties": "5.7.0", - "@ethersproject/providers": "5.7.2", - "@ethersproject/random": "5.7.0", - "@ethersproject/rlp": "5.7.0", - "@ethersproject/sha2": "5.7.0", - "@ethersproject/signing-key": "5.7.0", - "@ethersproject/solidity": "5.7.0", - "@ethersproject/strings": "5.7.0", - "@ethersproject/transactions": "5.7.0", - "@ethersproject/units": "5.7.0", - "@ethersproject/wallet": "5.7.0", - "@ethersproject/web": "5.7.1", - "@ethersproject/wordlists": "5.7.0" - } - }, - "event-iterator": { - "version": "2.0.0" - }, - "event-target-shim": { - "version": "5.0.1" - }, - "eventemitter3": { - "version": "4.0.7" - }, - "events": { - "version": "3.3.0" - }, - "evp_bytestokey": { - "version": "1.0.3", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "execa": { - "version": "5.1.1", - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "exit": { - "version": "0.1.2", - "dev": true - }, - "expect": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/expect-utils": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2" - }, - "dependencies": { - "jest-get-type": { - "version": "29.4.2", - "dev": true - } - } - }, - "express": { - "version": "4.18.2", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "cookie": { - "version": "0.5.0" - }, - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - }, - "path-to-regexp": { - "version": "0.1.7" - } - } - }, - "extend": { - "version": "3.0.2", - "optional": true - }, - "external-editor": { - "version": "3.1.0", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "dependencies": { - "tmp": { - "version": "0.0.33", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - } - } - }, - "extract-zip": { - "version": "1.7.0", - "optional": true, - "requires": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - } - } - }, - "extsprintf": { - "version": "1.3.0", - "optional": true - }, - "fast-deep-equal": { - "version": "3.1.3" - }, - "fast-fifo": { - "version": "1.0.0" - }, - "fast-json-stable-stringify": { - "version": "2.1.0" - }, - "fast-redact": { - "version": "3.1.2" - }, - "fast-safe-stringify": { - "version": "2.1.1" - }, - "fast-write-atomic": { - "version": "0.2.1" - }, - "fastest-levenshtein": { - "version": "1.0.16", - "dev": true - }, - "fb-watchman": { - "version": "2.0.1", - "requires": { - "bser": "2.1.1" - } - }, - "fd-slicer": { - "version": "1.1.0", - "optional": true, - "requires": { - "pend": "~1.2.0" - } - }, - "fetch-mock": { - "version": "9.11.0", - "dev": true, - "requires": { - "@babel/core": "^7.0.0", - "@babel/runtime": "^7.0.0", - "core-js": "^3.0.0", - "debug": "^4.1.1", - "glob-to-regexp": "^0.4.0", - "is-subset": "^0.1.1", - "lodash.isequal": "^4.5.0", - "path-to-regexp": "^2.2.1", - "querystring": "^0.2.0", - "whatwg-url": "^6.5.0" - }, - "dependencies": { - "tr46": { - "version": "1.0.1", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "dev": true - }, - "whatwg-url": { - "version": "6.5.0", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } - } - }, - "fetch-mock-jest": { - "version": "1.5.1", - "dev": true, - "requires": { - "fetch-mock": "^9.11.0" - } - }, - "figures": { - "version": "3.2.0", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-type": { - "version": "18.2.0", - "requires": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0", - "token-types": "^5.0.1" - } - }, - "file-uri-to-path": { - "version": "1.0.0" - }, - "filelist": { - "version": "1.0.4", - "requires": { - "minimatch": "^5.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.6", - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "filesize": { - "version": "10.0.6" - }, - "fill-range": { - "version": "7.0.1", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.2.0", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0" - } - } - }, - "flatstr": { - "version": "1.0.12" - }, - "fnv1a": { - "version": "1.1.1" - }, - "follow-redirects": { - "version": "1.14.1" - }, - "foreach": { - "version": "2.0.5" - }, - "forever-agent": { - "version": "0.6.1", - "optional": true - }, - "fork-ts-checker-webpack-plugin": { - "version": "8.0.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.22.5", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.5" - } - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "fs-extra": { - "version": "10.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "form-data": { - "version": "3.0.0", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "form-data-encoder": { - "version": "2.1.4" - }, - "formidable": { - "version": "2.1.1", - "requires": { - "dezalgo": "^1.0.4", - "hexoid": "^1.0.0", - "once": "^1.4.0", - "qs": "^6.11.0" - } - }, - "freeport-promise": { - "version": "2.0.0" - }, - "fresh": { - "version": "0.5.2" - }, - "fs-extra": { - "version": "0.30.0", - "optional": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - }, - "dependencies": { - "rimraf": { - "version": "2.7.1", - "optional": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "fs-minipass": { - "version": "2.1.0", - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "fs-monkey": { - "version": "1.0.4", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0" - }, - "function-bind": { - "version": "1.1.1" - }, - "function-timeout": { - "version": "0.1.1" - }, - "gar": { - "version": "1.0.4" - }, - "gauge": { - "version": "3.0.2", - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "dev": true - }, - "get-browser-rtc": { - "version": "1.1.0", - "optional": true - }, - "get-caller-file": { - "version": "2.0.5" - }, - "get-folder-size": { - "version": "4.0.0", - "requires": { - "gar": "^1.0.4" - } - }, - "get-intrinsic": { - "version": "1.1.1", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "get-iterator": { - "version": "1.0.2" - }, - "get-package-type": { - "version": "0.1.0", - "dev": true - }, - "get-port": { - "version": "5.1.1" - }, - "get-stream": { - "version": "6.0.1" - }, - "get-symbol-description": { - "version": "1.0.0", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "getpass": { - "version": "0.1.7", - "optional": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.2.0", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1" - }, - "global-dirs": { - "version": "3.0.1", - "requires": { - "ini": "2.0.0" - }, - "dependencies": { - "ini": { - "version": "2.0.0" - } - } - }, - "go-ipfs": { - "version": "npm:mocked-go-ipfs@0.17.0" - }, - "graceful-fs": { - "version": "4.2.10" - }, - "hamt-sharding": { - "version": "3.0.2", - "requires": { - "sparse-array": "^1.3.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "hapi-pino": { - "version": "8.5.0", - "requires": { - "@hapi/hoek": "^9.0.0", - "abstract-logging": "^2.0.0", - "pino": "^6.0.0", - "pino-pretty": "^4.0.0" - } - }, - "har-schema": { - "version": "2.0.0", - "optional": true - }, - "har-validator": { - "version": "5.1.5", - "optional": true, - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.1" - }, - "has-flag": { - "version": "3.0.0" - }, - "has-own-prop": { - "version": "2.0.0", - "dev": true - }, - "has-symbols": { - "version": "1.0.2" - }, - "has-tostringtag": { - "version": "1.0.0", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-unicode": { - "version": "2.0.1" - }, - "has-yarn": { - "version": "3.0.0" - }, - "hash-base": { - "version": "3.1.0", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "hash.js": { - "version": "1.1.7", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "hashlru": { - "version": "2.3.0" - }, - "hat": { - "version": "0.0.3", - "optional": true - }, - "he": { - "version": "1.2.0" - }, - "header-case": { - "version": "2.0.4", - "requires": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "headless": { - "version": "1.1.0", - "optional": true - }, - "hexoid": { - "version": "1.0.0" - }, - "hmac-drbg": { - "version": "1.0.1", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "home-path": { - "version": "1.0.7", - "optional": true - }, - "html-escaper": { - "version": "2.0.2", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.0" - }, - "http-errors": { - "version": "2.0.0", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-proxy": { - "version": "1.18.1", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-server": { - "version": "0.12.3", - "requires": { - "basic-auth": "^1.0.3", - "colors": "^1.4.0", - "corser": "^2.0.1", - "ecstatic": "^3.3.2", - "http-proxy": "^1.18.0", - "minimist": "^1.2.5", - "opener": "^1.5.1", - "portfinder": "^1.0.25", - "secure-compare": "3.0.1", - "union": "~0.5.0" - } - }, - "http-signature": { - "version": "1.2.0", - "optional": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-proxy-agent": { - "version": "5.0.0", - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0" - }, - "iconv-lite": { - "version": "0.4.24", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1" - }, - "image-size": { - "version": "1.0.1", - "requires": { - "queue": "6.0.2" - } - }, - "import-fresh": { - "version": "3.3.0", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "import-lazy": { - "version": "4.0.0" - }, - "import-local": { - "version": "3.1.0", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - } - } - }, - "imurmurhash": { - "version": "0.1.4" - }, - "indent-string": { - "version": "4.0.0" - }, - "inflight": { - "version": "1.0.6", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4" - }, - "ini": { - "version": "1.3.8" - }, - "inquirer": { - "version": "8.2.5", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "interface-blockstore": { - "version": "4.0.1", - "requires": { - "interface-store": "^3.0.0", - "multiformats": "^11.0.0" - } - }, - "interface-datastore": { - "version": "7.0.4", - "requires": { - "interface-store": "^3.0.0", - "nanoid": "^4.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "nanoid": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "interface-store": { - "version": "3.0.4" - }, - "internal-slot": { - "version": "1.0.3", - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "interpret": { - "version": "3.1.1", - "dev": true - }, - "ip": { - "version": "1.1.5" - }, - "ip-regex": { - "version": "4.3.0" - }, - "ipaddr.js": { - "version": "1.9.1" - }, - "ipfs": { - "version": "0.66.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "electron-webrtc": "^0.3.0", - "ipfs-cli": "^0.16.0", - "ipfs-core": "^0.18.0", - "semver": "^7.3.2", - "update-notifier": "^6.0.0", - "wrtc": "^0.4.6" - } - }, - "ipfs-bitswap": { - "version": "15.0.2", - "requires": { - "@libp2p/interface-connection": "^3.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-store": "^1.2.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/topology": "^4.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@vascosantos/moving-average": "^1.1.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "blockstore-core": "^3.0.0", - "interface-blockstore": "^4.0.0", - "it-length-prefixed": "^8.0.2", - "it-pipe": "^2.0.4", - "just-debounce-it": "^3.0.1", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "readable-stream": "^4.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0", - "varint-decoder": "^1.0.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "readable-stream": { - "version": "4.3.0", - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-cli": { - "version": "0.16.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "byteman": "^1.3.5", - "execa": "^6.1.0", - "get-folder-size": "^4.0.0", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-daemon": "^0.16.0", - "ipfs-http-client": "^60.0.0", - "ipfs-utils": "^9.0.13", - "it-concat": "^3.0.1", - "it-merge": "^2.0.0", - "it-pipe": "^2.0.3", - "it-split": "^2.0.0", - "it-tar": "^6.0.0", - "jsondiffpatch": "^0.4.1", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "pretty-bytes": "^6.0.0", - "progress": "^2.0.3", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2", - "yargs": "^17.4.0" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "execa": { - "version": "6.1.0", - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - } - }, - "human-signals": { - "version": "3.0.1" - }, - "is-stream": { - "version": "3.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "mimic-fn": { - "version": "4.0.0" - }, - "npm-run-path": { - "version": "5.1.0", - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0" - }, - "strip-final-newline": { - "version": "3.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-core": { - "version": "0.18.0", - "requires": { - "@chainsafe/libp2p-noise": "^11.0.0", - "@ipld/car": "^5.0.0", - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/bootstrap": "^6.0.0", - "@libp2p/crypto": "^1.0.0", - "@libp2p/delegated-content-routing": "^4.0.0", - "@libp2p/delegated-peer-routing": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.6", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.2.0", - "@libp2p/kad-dht": "^7.0.0", - "@libp2p/logger": "^2.0.5", - "@libp2p/mplex": "^7.1.1", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/record": "^3.0.0", - "@libp2p/websockets": "^5.0.0", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.1.5", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "@multiformats/murmur3": "^2.0.0", - "any-signal": "^3.0.0", - "array-shuffle": "^3.0.0", - "blockstore-core": "^3.0.0", - "browser-readablestream-to-it": "^2.0.0", - "dag-jose": "^4.0.0", - "datastore-core": "^8.0.1", - "datastore-pubsub": "^7.0.0", - "dlv": "^1.1.3", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "hashlru": "^2.3.0", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-bitswap": "^15.0.0", - "ipfs-core-config": "^0.7.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-client": "^60.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-unixfs-exporter": "^10.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "ipfs-utils": "^9.0.9", - "ipns": "^5.0.1", - "is-domain-name": "^1.0.1", - "is-ipfs": "^8.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel": "^3.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-tar": "^6.0.0", - "it-to-buffer": "^3.0.0", - "just-safe-set": "^4.0.2", - "libp2p": "^0.42.0", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "pako": "^2.0.4", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-core-config": { - "version": "0.7.0", - "requires": { - "@chainsafe/libp2p-gossipsub": "^6.0.0", - "@libp2p/floodsub": "^6.0.0", - "@libp2p/logger": "^2.0.2", - "@libp2p/mdns": "^6.0.0", - "@libp2p/prometheus-metrics": "^1.0.1", - "@libp2p/tcp": "^6.0.2", - "@libp2p/webrtc-star": "^6.0.0", - "blockstore-datastore-adapter": "^5.0.0", - "datastore-core": "^8.0.1", - "datastore-fs": "^8.0.0", - "datastore-level": "^9.0.0", - "err-code": "^3.0.1", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "ipfs-repo": "^17.0.0", - "ipfs-utils": "^9.0.13", - "is-ipfs": "^8.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-foreach": "^1.0.0", - "p-queue": "^7.2.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-core-types": { - "version": "0.14.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-keychain": "^2.0.0", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@types/node": "^18.0.0", - "interface-datastore": "^7.0.0", - "ipfs-unixfs": "^9.0.0", - "multiformats": "^11.0.0" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@types/node": { - "version": "18.11.19" - } - } - }, - "ipfs-core-utils": { - "version": "0.18.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/multiaddr-to-uri": "^9.0.1", - "any-signal": "^3.0.0", - "blob-to-it": "^2.0.0", - "browser-readablestream-to-it": "^2.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-unixfs": "^9.0.0", - "ipfs-utils": "^9.0.13", - "it-all": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "nanoid": "^4.0.0", - "parse-duration": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "nanoid": { - "version": "4.0.1" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-daemon": { - "version": "0.16.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "@libp2p/webrtc-star": "^6.0.0", - "@mapbox/node-pre-gyp": "^1.0.5", - "electron-webrtc": "^0.3.0", - "ipfs-core": "^0.18.0", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-server": "^0.12.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-http-server": "^0.15.0", - "ipfs-utils": "^9.0.13", - "libp2p": "^0.42.0", - "prom-client": "^14.0.1", - "wrtc": "^0.4.6" - } - }, - "ipfs-grpc-protocol": { - "version": "0.8.0" - }, - "ipfs-grpc-server": { - "version": "0.12.0", - "requires": { - "@grpc/grpc-js": "^1.1.8", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "change-case": "^4.1.1", - "coercer": "^1.1.2", - "ipfs-core-types": "^0.14.0", - "ipfs-grpc-protocol": "^0.8.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-peekable": "^2.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "nanoid": "^4.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "ws": "^8.5.0" - }, - "dependencies": { - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - }, - "long": { - "version": "5.2.1" - }, - "nanoid": { - "version": "4.0.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-http-client": { - "version": "60.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-json": "^10.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "any-signal": "^3.0.0", - "dag-jose": "^4.0.0", - "err-code": "^3.0.1", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-utils": "^9.0.13", - "it-first": "^2.0.0", - "it-last": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "stream-to-it": "^0.2.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-first": { - "version": "2.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-http-gateway": { - "version": "0.13.0", - "requires": { - "@hapi/ammo": "^5.0.1", - "@hapi/boom": "^9.1.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/logger": "^2.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-http-response": "^6.0.0", - "is-ipfs": "^8.0.0", - "it-last": "^2.0.0", - "it-to-stream": "^1.0.0", - "joi": "^17.2.1", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-http-response": { - "version": "6.0.0", - "requires": { - "@libp2p/logger": "^2.0.0", - "ejs": "^3.1.6", - "file-type": "^18.0.0", - "filesize": "^10.0.5", - "it-map": "^2.0.0", - "it-reader": "^6.0.1", - "it-to-stream": "^1.0.0", - "mime-types": "^2.1.30", - "p-try-each": "^1.0.1" - }, - "dependencies": { - "it-map": { - "version": "2.0.0" - } - } - }, - "ipfs-http-server": { - "version": "0.15.0", - "requires": { - "@hapi/boom": "^9.1.0", - "@hapi/content": "^5.0.2", - "@hapi/hapi": "^20.0.0", - "@ipld/dag-pb": "^4.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "@multiformats/uri-to-multiaddr": "^7.0.0", - "any-signal": "^3.0.0", - "dlv": "^1.1.3", - "hapi-pino": "^8.5.0", - "ipfs-core-types": "^0.14.0", - "ipfs-core-utils": "^0.18.0", - "ipfs-http-gateway": "^0.13.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-multipart": "^3.0.0", - "it-pipe": "^2.0.3", - "it-pushable": "^3.0.0", - "it-reduce": "^2.0.0", - "joi": "^17.2.1", - "just-safe-set": "^4.0.2", - "multiformats": "^11.0.0", - "parse-duration": "^1.0.0", - "prom-client": "^14.0.1", - "stream-to-it": "^0.2.2", - "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-log": { - "version": "5.4.2", - "requires": { - "json-stringify-deterministic": "^1.0.1", - "multihashing-async": "^2.0.1", - "orbit-db-identity-provider": "^0.3.1", - "orbit-db-io": "^1.1.2", - "p-do-whilst": "^1.1.0", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-whilst": "^2.1.0" - }, - "dependencies": { - "iso-random-stream": { - "version": "1.1.2", - "requires": { - "buffer": "^6.0.3", - "readable-stream": "^3.4.0" - } - }, - "libp2p-crypto": { - "version": "0.16.4", - "requires": { - "asmcrypto.js": "^2.3.2", - "asn1.js": "^5.0.1", - "async": "^2.6.1", - "bn.js": "^4.11.8", - "browserify-aes": "^1.2.0", - "bs58": "^4.0.1", - "iso-random-stream": "^1.1.0", - "keypair": "^1.0.1", - "libp2p-crypto-secp256k1": "~0.3.0", - "multihashing-async": "~0.5.1", - "node-forge": "^0.10.0", - "pem-jwk": "^2.0.0", - "protons": "^1.0.1", - "rsa-pem-to-jwk": "^1.1.3", - "tweetnacl": "^1.0.0", - "ursa-optional": "~0.10.0" - }, - "dependencies": { - "multihashing-async": { - "version": "0.5.2", - "requires": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - } - } - } - }, - "multibase": { - "version": "0.7.0", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - } - } - }, - "multiformats": { - "version": "9.9.0" - }, - "multihashes": { - "version": "0.4.21", - "requires": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - } - } - }, - "orbit-db-identity-provider": { - "version": "0.3.1", - "requires": { - "ethers": "^5.0.8", - "orbit-db-keystore": "~0.3.5" - } - }, - "orbit-db-io": { - "version": "1.1.2", - "requires": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - } - }, - "orbit-db-keystore": { - "version": "0.3.5", - "requires": { - "elliptic": "^6.5.3", - "level": "8.0.0", - "leveldown": "^6", - "levelup": "~4.1.0", - "libp2p-crypto": "^0.16.0", - "libp2p-crypto-secp256k1": "^0.3.0", - "lru": "^3.1.0", - "mkdirp": "^0.5.5", - "safe-buffer": "^5.2.1" - } - }, - "tweetnacl": { - "version": "1.0.3" - }, - "varint": { - "version": "5.0.2" - } - } - }, - "ipfs-pubsub-1on1": { - "version": "0.1.0", - "requires": { - "safe-buffer": "~5.2.1" - } - }, - "ipfs-pubsub-peer-monitor": { - "version": "0.0.10", - "requires": { - "p-forever": "^2.1.0" - } - }, - "ipfs-repo": { - "version": "17.0.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "bytes": "^3.1.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "ipfs-repo-migrations": "^15.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "just-safe-get": "^4.1.1", - "just-safe-set": "^4.1.1", - "merge-options": "^3.0.4", - "mortice": "^3.0.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "proper-lockfile": "^4.0.0", - "quick-lru": "^6.1.1", - "sort-keys": "^5.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-parallel-batch": { - "version": "2.0.0", - "requires": { - "it-batch": "^2.0.0" - } - }, - "it-pushable": { - "version": "3.1.2" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "quick-lru": { - "version": "6.1.1" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-repo-migrations": { - "version": "15.0.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/multiaddr": "^11.0.0", - "cborg": "^1.3.4", - "datastore-core": "^8.0.1", - "debug": "^4.1.0", - "fnv1a": "^1.0.1", - "interface-blockstore": "^4.0.0", - "interface-datastore": "^7.0.0", - "it-length": "^2.0.0", - "multiformats": "^11.0.0", - "protobufjs": "^7.0.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-unixfs": { - "version": "9.0.0", - "requires": { - "err-code": "^3.0.1", - "protobufjs": "^7.0.0" - }, - "dependencies": { - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.2.1", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - } - } - }, - "ipfs-unixfs-exporter": { - "version": "10.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-last": "^2.0.0", - "it-map": "^2.0.0", - "it-parallel": "^3.0.0", - "it-pipe": "^2.0.4", - "it-pushable": "^3.1.0", - "multiformats": "^11.0.0", - "p-queue": "^7.3.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-map": { - "version": "2.0.0" - }, - "it-pushable": { - "version": "3.1.2" - }, - "p-queue": { - "version": "7.3.3", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-unixfs-importer": { - "version": "12.0.0", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-batch": "^2.0.0", - "it-first": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "rabin-wasm": "^0.1.4", - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "it-all": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-parallel-batch": { - "version": "2.0.0", - "requires": { - "it-batch": "^2.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "ipfs-utils": { - "version": "9.0.14", - "requires": { - "any-signal": "^3.0.0", - "browser-readablestream-to-it": "^1.0.0", - "buffer": "^6.0.1", - "electron-fetch": "^1.7.2", - "err-code": "^3.0.1", - "is-electron": "^2.2.0", - "iso-url": "^1.1.5", - "it-all": "^1.0.4", - "it-glob": "^1.0.1", - "it-to-stream": "^1.0.0", - "merge-options": "^3.0.4", - "nanoid": "^3.1.20", - "native-fetch": "^3.0.0", - "node-fetch": "^2.6.8", - "react-native-fetch-api": "^3.0.0", - "stream-to-it": "^0.2.2" - }, - "dependencies": { - "browser-readablestream-to-it": { - "version": "1.0.3" - } - } - }, - "ipfsd-ctl": { - "version": "12.2.2", - "peer": true, - "requires": { - "@hapi/boom": "^10.0.0", - "@hapi/hapi": "^20.0.0", - "@libp2p/interface-peer-id": "^1.0.4", - "@libp2p/logger": "^2.0.0", - "@multiformats/multiaddr": "^11.0.0", - "execa": "^6.1.0", - "ipfs-utils": "^9.0.1", - "joi": "^17.2.1", - "merge-options": "^3.0.1", - "nanoid": "^4.0.0", - "p-wait-for": "^5.0.0", - "temp-write": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "dependencies": { - "@hapi/boom": { - "version": "10.0.0", - "peer": true, - "requires": { - "@hapi/hoek": "10.x.x" - } - }, - "@hapi/hoek": { - "version": "10.0.1", - "peer": true - }, - "execa": { - "version": "6.1.0", - "peer": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "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" - } - }, - "human-signals": { - "version": "3.0.1", - "peer": true - }, - "is-stream": { - "version": "3.0.0", - "peer": true - }, - "mimic-fn": { - "version": "4.0.0", - "peer": true - }, - "nanoid": { - "version": "4.0.0", - "peer": true - }, - "npm-run-path": { - "version": "5.1.0", - "peer": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "peer": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0", - "peer": true - }, - "strip-final-newline": { - "version": "3.0.0", - "peer": true - }, - "wherearewe": { - "version": "2.0.1", - "peer": true, - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "ipns": { - "version": "5.0.1", - "requires": { - "@libp2p/crypto": "^1.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-keys": "^1.0.3", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "cborg": "^1.3.3", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "timestamp-nano": "^1.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "is-arguments": { - "version": "1.1.1", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-arrayish": { - "version": "0.2.1", - "dev": true - }, - "is-bigint": { - "version": "1.0.4", - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-buffer": { - "version": "2.0.5" - }, - "is-callable": { - "version": "1.2.4" - }, - "is-core-module": { - "version": "2.8.0", - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-domain-name": { - "version": "1.0.1" - }, - "is-electron": { - "version": "2.2.1" - }, - "is-extglob": { - "version": "2.1.1", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0" - }, - "is-generator-fn": { - "version": "2.1.0", - "dev": true - }, - "is-generator-function": { - "version": "1.0.10", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-glob": { - "version": "4.0.3", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.4.0", - "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - } - }, - "is-interactive": { - "version": "1.0.0", - "dev": true - }, - "is-ip": { - "version": "3.1.0", - "requires": { - "ip-regex": "^4.0.0" - } - }, - "is-ipfs": { - "version": "8.0.1", - "requires": { - "@multiformats/mafmt": "^11.0.3", - "@multiformats/multiaddr": "^11.0.0", - "iso-url": "^1.1.3", - "multiformats": "^11.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "is-nan": { - "version": "1.3.2", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "is-negative-zero": { - "version": "2.0.1" - }, - "is-node": { - "version": "1.0.2" - }, - "is-npm": { - "version": "6.0.0" - }, - "is-number": { - "version": "7.0.0" - }, - "is-number-object": { - "version": "1.0.6", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-obj": { - "version": "2.0.0" - }, - "is-path-inside": { - "version": "3.0.3" - }, - "is-plain-obj": { - "version": "2.1.0" - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-promise": { - "version": "1.0.1" - }, - "is-regex": { - "version": "1.1.4", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-regexp": { - "version": "3.1.0" - }, - "is-shared-array-buffer": { - "version": "1.0.1" - }, - "is-stream": { - "version": "2.0.1" - }, - "is-string": { - "version": "1.0.7", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-subset": { - "version": "0.1.1", - "dev": true - }, - "is-symbol": { - "version": "1.0.4", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.8", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0" - }, - "dependencies": { - "es-abstract": { - "version": "1.19.1", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - } - }, - "object-keys": { - "version": "1.1.1" - } - } - }, - "is-typedarray": { - "version": "1.0.0" - }, - "is-unicode-supported": { - "version": "0.1.0", - "dev": true - }, - "is-weakref": { - "version": "1.0.1", - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-yarn-global": { - "version": "0.4.1" - }, - "isarray": { - "version": "1.0.0" - }, - "isexe": { - "version": "2.0.0" - }, - "iso-constants": { - "version": "0.1.2" - }, - "iso-random-stream": { - "version": "2.0.2", - "requires": { - "events": "^3.3.0", - "readable-stream": "^3.4.0" - } - }, - "iso-url": { - "version": "1.2.1" - }, - "isobject": { - "version": "3.0.1", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "optional": true - }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "5.2.1", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "dev": true - } - } - }, - "istanbul-lib-report": { - "version": "3.0.0", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - } - }, - "istanbul-reports": { - "version": "3.1.5", - "dev": true, - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "it-all": { - "version": "1.0.6" - }, - "it-batch": { - "version": "2.0.0" - }, - "it-batched-bytes": { - "version": "1.0.0", - "requires": { - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.4.1" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-concat": { - "version": "3.0.1", - "requires": { - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-drain": { - "version": "1.0.5" - }, - "it-filter": { - "version": "1.0.3" - }, - "it-first": { - "version": "1.0.7" - }, - "it-foreach": { - "version": "1.0.0" - }, - "it-glob": { - "version": "1.0.2", - "requires": { - "@types/minimatch": "^3.0.4", - "minimatch": "^3.0.4" - } - }, - "it-handshake": { - "version": "4.1.2", - "requires": { - "it-pushable": "^3.1.0", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.0.0" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.0" - }, - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-last": { - "version": "2.0.0" - }, - "it-length": { - "version": "2.0.0" - }, - "it-length-prefixed": { - "version": "8.0.4", - "requires": { - "err-code": "^3.0.1", - "it-stream-types": "^1.0.4", - "uint8-varint": "^1.0.1", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-map": { - "version": "1.0.6" - }, - "it-merge": { - "version": "1.0.4", - "requires": { - "it-pushable": "^1.4.0" - } - }, - "it-multipart": { - "version": "3.0.0", - "requires": { - "formidable": "^2.0.1", - "it-pushable": "^3.1.0" - }, - "dependencies": { - "it-pushable": { - "version": "3.1.2" - } - } - }, - "it-pair": { - "version": "2.0.3", - "requires": { - "it-stream-types": "^1.0.3", - "p-defer": "^4.0.0" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-parallel": { - "version": "3.0.0", - "requires": { - "p-defer": "^4.0.0" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - } - } - }, - "it-parallel-batch": { - "version": "1.0.11", - "requires": { - "it-batch": "^1.0.9" - }, - "dependencies": { - "it-batch": { - "version": "1.0.9" - } - } - }, - "it-pb-stream": { - "version": "2.0.2", - "requires": { - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - } - }, - "it-peekable": { - "version": "2.0.0" - }, - "it-pipe": { - "version": "2.0.5", - "requires": { - "it-merge": "^2.0.0", - "it-pushable": "^3.1.0", - "it-stream-types": "^1.0.3" - }, - "dependencies": { - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.2" - } - } - }, - "it-pushable": { - "version": "1.4.2", - "requires": { - "fast-fifo": "^1.0.0" - } - }, - "it-reader": { - "version": "6.0.2", - "requires": { - "it-stream-types": "^1.0.4", - "uint8arraylist": "^2.0.0" - } - }, - "it-reduce": { - "version": "2.0.0" - }, - "it-sort": { - "version": "2.0.0", - "requires": { - "it-all": "^2.0.0" - }, - "dependencies": { - "it-all": { - "version": "2.0.0" - } - } - }, - "it-split": { - "version": "2.0.1", - "requires": { - "uint8arraylist": "^2.4.1" - } - }, - "it-stream-types": { - "version": "1.0.4" - }, - "it-take": { - "version": "1.0.2" - }, - "it-tar": { - "version": "6.0.1", - "requires": { - "iso-constants": "^0.1.2", - "it-reader": "^6.0.1", - "it-stream-types": "^1.0.4", - "it-to-buffer": "^3.0.0", - "p-defer": "^4.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "p-defer": { - "version": "4.0.0" - }, - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-to-buffer": { - "version": "3.0.0", - "requires": { - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "it-to-stream": { - "version": "1.0.0", - "requires": { - "buffer": "^6.0.3", - "fast-fifo": "^1.0.0", - "get-iterator": "^1.0.2", - "p-defer": "^3.0.0", - "p-fifo": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "it-ws": { - "version": "5.0.6", - "requires": { - "event-iterator": "^2.0.0", - "iso-url": "^1.1.2", - "it-stream-types": "^1.0.2", - "uint8arrays": "^4.0.2", - "ws": "^8.4.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "iterare": { - "version": "1.2.1" - }, - "jake": { - "version": "10.8.5", - "requires": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "async": { - "version": "3.2.4" - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/core": "^29.4.2", - "@jest/types": "^29.4.2", - "import-local": "^3.0.2", - "jest-cli": "^29.4.2" - } - }, - "jest-changed-files": { - "version": "29.4.2", - "dev": true, - "requires": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" - }, - "dependencies": { - "p-limit": { - "version": "3.1.0", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "yocto-queue": { - "version": "0.1.0", - "dev": true - } - } - }, - "jest-circus": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/expect": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "p-limit": "^3.1.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yocto-queue": { - "version": "0.1.0", - "dev": true - } - } - }, - "jest-cli": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/core": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-config": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.4.2", - "@jest/types": "^29.4.2", - "babel-jest": "^29.4.2", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runner": "^29.4.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "parse-json": { - "version": "5.2.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-diff": { - "version": "29.4.2", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-docblock": { - "version": "29.4.2", - "dev": true, - "requires": { - "detect-newline": "^3.0.0" - } - }, - "jest-each": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "jest-util": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-environment-node": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-mock": "^29.4.2", - "jest-util": "^29.4.2" - } - }, - "jest-get-type": { - "version": "27.5.1" - }, - "jest-haste-map": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.2", - "jest-util": "^29.4.2", - "jest-worker": "^29.4.2", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - } - }, - "jest-leak-detector": { - "version": "29.4.2", - "dev": true, - "requires": { - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - } - } - }, - "jest-matcher-utils": { - "version": "29.4.2", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-message-util": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.4.2", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.4.2", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "dev": true, - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-mock": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "jest-util": "^29.4.2" - } - }, - "jest-pnp-resolver": { - "version": "1.2.3", - "requires": {} - }, - "jest-regex-util": { - "version": "29.4.2", - "devOptional": true - }, - "jest-resolve": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.4.2", - "jest-validate": "^29.4.2", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "resolve.exports": { - "version": "2.0.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-resolve-dependencies": { - "version": "29.4.2", - "dev": true, - "requires": { - "jest-regex-util": "^29.4.2", - "jest-snapshot": "^29.4.2" - } - }, - "jest-runner": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/console": "^29.4.2", - "@jest/environment": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.2", - "jest-environment-node": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-leak-detector": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-runtime": "^29.4.2", - "jest-util": "^29.4.2", - "jest-watcher": "^29.4.2", - "jest-worker": "^29.4.2", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "buffer-from": { - "version": "1.1.2", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.13", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yocto-queue": { - "version": "0.1.0", - "dev": true - } - } - }, - "jest-runtime": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/environment": "^29.4.2", - "@jest/fake-timers": "^29.4.2", - "@jest/globals": "^29.4.2", - "@jest/source-map": "^29.4.2", - "@jest/test-result": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-mock": "^29.4.2", - "jest-regex-util": "^29.4.2", - "jest-resolve": "^29.4.2", - "jest-snapshot": "^29.4.2", - "jest-util": "^29.4.2", - "semver": "^7.3.5", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "strip-bom": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-serializer": { - "version": "27.5.1", - "requires": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - } - }, - "jest-snapshot": { - "version": "29.4.2", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.4.2", - "@jest/transform": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.4.2", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.4.2", - "jest-get-type": "^29.4.2", - "jest-haste-map": "^29.4.2", - "jest-matcher-utils": "^29.4.2", - "jest-message-util": "^29.4.2", - "jest-util": "^29.4.2", - "natural-compare": "^1.4.0", - "pretty-format": "^29.4.2", - "semver": "^7.3.5" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "29.4.2", - "dev": true - }, - "pretty-format": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-util": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/types": "^29.4.2", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-validate": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/types": "^29.4.2", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.2", - "leven": "^3.1.0", - "pretty-format": "^29.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "6.3.0", - "devOptional": true - }, - "chalk": { - "version": "4.1.2", - "devOptional": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "devOptional": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "devOptional": true - }, - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "jest-get-type": { - "version": "29.4.2", - "devOptional": true - }, - "leven": { - "version": "3.1.0", - "devOptional": true - }, - "pretty-format": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@jest/schemas": "^29.4.2", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "devOptional": true - } - } - }, - "react-is": { - "version": "18.2.0", - "devOptional": true - }, - "supports-color": { - "version": "7.2.0", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-watcher": { - "version": "29.4.2", - "dev": true, - "requires": { - "@jest/test-result": "^29.4.2", - "@jest/types": "^29.4.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.4.2", - "string-length": "^4.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-worker": { - "version": "29.4.2", - "devOptional": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.4.2", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "devOptional": true - }, - "supports-color": { - "version": "8.1.1", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jmespath": { - "version": "0.15.0" - }, - "joi": { - "version": "17.8.1", - "requires": { - "@hapi/address": "^5.1.0", - "@hapi/formula": "^3.0.2", - "@hapi/hoek": "^11.0.2", - "@hapi/pinpoint": "^2.0.1", - "@hapi/tlds": "^1.0.1", - "@hapi/topo": "^6.0.1" - }, - "dependencies": { - "@hapi/hoek": { - "version": "11.0.2" - }, - "@hapi/topo": { - "version": "6.0.1", - "requires": { - "@hapi/hoek": "^11.0.2" - } - } - } - }, - "joycon": { - "version": "2.2.5" - }, - "js-sha3": { - "version": "0.8.0" - }, - "js-tokens": { - "version": "4.0.0", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "1.1.0" - }, - "jsesc": { - "version": "2.5.2", - "dev": true - }, - "json-buffer": { - "version": "3.0.1" - }, - "json-parse-even-better-errors": { - "version": "2.3.1" - }, - "json-schema": { - "version": "0.4.0", - "optional": true - }, - "json-schema-traverse": { - "version": "0.4.1" - }, - "json-stringify-deterministic": { - "version": "1.0.8" - }, - "json-stringify-safe": { - "version": "5.0.1", - "optional": true - }, - "jsonc-parser": { - "version": "3.2.0", - "dev": true - }, - "jsondiffpatch": { - "version": "0.4.1", - "requires": { - "chalk": "^2.3.0", - "diff-match-patch": "^1.0.0" - } - }, - "jsonfile": { - "version": "2.4.0", - "optional": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsprim": { - "version": "1.4.2", - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "just-debounce-it": { - "version": "3.2.0" - }, - "just-safe-get": { - "version": "4.2.0" - }, - "just-safe-set": { - "version": "4.2.1" - }, - "k-bucket": { - "version": "5.1.0", - "requires": { - "randombytes": "^2.1.0" - } - }, - "keypair": { - "version": "1.0.4" - }, - "keyv": { - "version": "4.5.2", - "requires": { - "json-buffer": "3.0.1" - } - }, - "kind-of": { - "version": "6.0.3", - "dev": true - }, - "klaw": { - "version": "1.3.1", - "optional": true, - "requires": { - "graceful-fs": "^4.1.9" - } - }, - "kleur": { - "version": "3.0.3", - "dev": true - }, - "latest-version": { - "version": "7.0.0", - "requires": { - "package-json": "^8.1.0" - } - }, - "level": { - "version": "8.0.0", - "requires": { - "browser-level": "^1.0.1", - "classic-level": "^1.2.0" - } - }, - "level-concat-iterator": { - "version": "3.1.0", - "requires": { - "catering": "^2.1.0" - } - }, - "level-errors": { - "version": "2.0.1", - "requires": { - "errno": "~0.1.1" - } - }, - "level-iterator-stream": { - "version": "4.0.2", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.4.0", - "xtend": "^4.0.2" - } - }, - "level-supports": { - "version": "2.1.0" - }, - "level-transcoder": { - "version": "1.0.1", - "requires": { - "buffer": "^6.0.3", - "module-error": "^1.0.1" - } - }, - "leveldown": { - "version": "6.1.1", - "requires": { - "abstract-leveldown": "^7.2.0", - "napi-macros": "~2.0.0", - "node-gyp-build": "^4.3.0" - } - }, - "levelup": { - "version": "4.1.0", - "requires": { - "deferred-leveldown": "~5.1.0", - "level-errors": "~2.0.0", - "level-iterator-stream": "~4.0.0", - "xtend": "~4.0.0" - } - }, - "leven": { - "version": "2.1.0" - }, - "libp2p": { - "version": "0.42.2", - "requires": { - "@achingbrain/nat-port-mapper": "^1.0.3", - "@libp2p/crypto": "^1.0.4", - "@libp2p/interface-address-manager": "^2.0.0", - "@libp2p/interface-connection": "^3.0.2", - "@libp2p/interface-connection-encrypter": "^3.0.1", - "@libp2p/interface-connection-manager": "^1.1.1", - "@libp2p/interface-content-routing": "^2.0.0", - "@libp2p/interface-dht": "^2.0.0", - "@libp2p/interface-libp2p": "^1.0.0", - "@libp2p/interface-metrics": "^4.0.0", - "@libp2p/interface-peer-discovery": "^1.0.1", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-peer-info": "^1.0.3", - "@libp2p/interface-peer-routing": "^1.0.1", - "@libp2p/interface-peer-store": "^1.2.2", - "@libp2p/interface-pubsub": "^3.0.0", - "@libp2p/interface-registrar": "^2.0.3", - "@libp2p/interface-stream-muxer": "^3.0.0", - "@libp2p/interface-transport": "^2.1.0", - "@libp2p/interfaces": "^3.0.3", - "@libp2p/logger": "^2.0.1", - "@libp2p/multistream-select": "^3.0.0", - "@libp2p/peer-collections": "^3.0.0", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/peer-record": "^5.0.0", - "@libp2p/peer-store": "^6.0.0", - "@libp2p/tracked-map": "^3.0.0", - "@libp2p/utils": "^3.0.2", - "@multiformats/mafmt": "^11.0.2", - "@multiformats/multiaddr": "^11.0.0", - "abortable-iterator": "^4.0.2", - "any-signal": "^3.0.0", - "datastore-core": "^8.0.1", - "err-code": "^3.0.1", - "events": "^3.3.0", - "hashlru": "^2.3.0", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-first": "^2.0.0", - "it-foreach": "^1.0.0", - "it-handshake": "^4.1.2", - "it-length-prefixed": "^8.0.2", - "it-map": "^2.0.0", - "it-merge": "^2.0.0", - "it-pair": "^2.0.2", - "it-pipe": "^2.0.3", - "it-sort": "^2.0.0", - "it-stream-types": "^1.0.4", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "node-forge": "^1.3.1", - "p-fifo": "^1.0.0", - "p-retry": "^5.0.0", - "p-settle": "^5.0.0", - "private-ip": "^3.0.0", - "protons-runtime": "^4.0.1", - "rate-limiter-flexible": "^2.3.11", - "retimer": "^3.0.0", - "sanitize-filename": "^1.6.3", - "set-delayed-interval": "^1.0.0", - "timeout-abort-controller": "^3.0.0", - "uint8arraylist": "^2.3.2", - "uint8arrays": "^4.0.2", - "wherearewe": "^2.0.0", - "xsalsa20": "^1.1.0" - }, - "dependencies": { - "@libp2p/interface-peer-id": { - "version": "2.0.1", - "requires": { - "multiformats": "^11.0.0" - } - }, - "@libp2p/peer-record": { - "version": "5.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "@libp2p/interface-peer-id": "^2.0.0", - "@libp2p/interface-record": "^2.0.1", - "@libp2p/logger": "^2.0.5", - "@libp2p/peer-id": "^2.0.0", - "@libp2p/utils": "^3.0.0", - "@multiformats/multiaddr": "^11.0.0", - "err-code": "^3.0.1", - "interface-datastore": "^7.0.0", - "it-all": "^2.0.0", - "it-filter": "^2.0.0", - "it-foreach": "^1.0.0", - "it-map": "^2.0.0", - "it-pipe": "^2.0.3", - "multiformats": "^11.0.0", - "protons-runtime": "^4.0.1", - "uint8-varint": "^1.0.2", - "uint8arraylist": "^2.1.0", - "uint8arrays": "^4.0.2", - "varint": "^6.0.0" - } - }, - "abortable-iterator": { - "version": "4.0.2", - "requires": { - "get-iterator": "^2.0.0", - "it-stream-types": "^1.0.3" - } - }, - "get-iterator": { - "version": "2.0.0" - }, - "ip-regex": { - "version": "5.0.0" - }, - "ipaddr.js": { - "version": "2.0.1" - }, - "it-all": { - "version": "2.0.0" - }, - "it-drain": { - "version": "2.0.0" - }, - "it-filter": { - "version": "2.0.0" - }, - "it-first": { - "version": "2.0.0" - }, - "it-map": { - "version": "2.0.0" - }, - "it-merge": { - "version": "2.0.0", - "requires": { - "it-pushable": "^3.1.0" - } - }, - "it-pushable": { - "version": "3.1.0" - }, - "node-forge": { - "version": "1.3.1" - }, - "private-ip": { - "version": "3.0.0", - "requires": { - "@chainsafe/is-ip": "^2.0.1", - "ip-regex": "^5.0.0", - "ipaddr.js": "^2.0.1", - "netmask": "^2.0.2" - } - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - }, - "dependencies": { - "multiformats": { - "version": "10.0.3" - } - } - }, - "wherearewe": { - "version": "2.0.1", - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "libp2p-crypto": { - "version": "0.21.2", - "requires": { - "@noble/ed25519": "^1.5.1", - "@noble/secp256k1": "^1.3.0", - "err-code": "^3.0.1", - "iso-random-stream": "^2.0.0", - "multiformats": "^9.4.5", - "node-forge": "^1.2.1", - "protobufjs": "^6.11.2", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - }, - "node-forge": { - "version": "1.3.1" - } - } - }, - "libp2p-crypto-secp256k1": { - "version": "0.3.1", - "requires": { - "async": "^2.6.2", - "bs58": "^4.0.1", - "multihashing-async": "~0.6.0", - "nodeify": "^1.0.1", - "safe-buffer": "^5.1.2", - "secp256k1": "^3.6.2" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "multibase": { - "version": "0.7.0", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "multihashes": { - "version": "0.4.21", - "requires": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "multihashing-async": { - "version": "0.6.0", - "requires": { - "blakejs": "^1.1.0", - "js-sha3": "~0.8.0", - "multihashes": "~0.4.13", - "murmurhash3js": "^3.0.1", - "nodeify": "^1.0.1" - } - }, - "secp256k1": { - "version": "3.8.0", - "requires": { - "bindings": "^1.5.0", - "bip66": "^1.1.5", - "bn.js": "^4.11.8", - "create-hash": "^1.2.0", - "drbg.js": "^1.0.1", - "elliptic": "^6.5.2", - "nan": "^2.14.0", - "safe-buffer": "^5.1.2" - } - }, - "varint": { - "version": "5.0.2" - } - } - }, - "libphonenumber-js": { - "version": "1.9.44" - }, - "lines-and-columns": { - "version": "1.2.4", - "dev": true - }, - "loader-runner": { - "version": "4.3.0" - }, - "loader-utils": { - "version": "2.0.4", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "dependencies": { - "json5": { - "version": "2.2.3" - } - } - }, - "lodash": { - "version": "4.17.21" - }, - "lodash.camelcase": { - "version": "4.3.0" - }, - "lodash.isequal": { - "version": "4.5.0", - "dev": true - }, - "lodash.memoize": { - "version": "4.1.2", - "dev": true - }, - "lodash.sortby": { - "version": "4.7.0", - "dev": true - }, - "log-symbols": { - "version": "4.1.0", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "logplease": { - "version": "1.2.15" - }, - "long": { - "version": "4.0.0" - }, - "longbits": { - "version": "1.1.0", - "requires": { - "byte-access": "^1.0.1", - "uint8arraylist": "^2.0.0" - } - }, - "lower-case": { - "version": "2.0.2", - "requires": { - "tslib": "^2.0.3" - } - }, - "lru": { - "version": "3.1.0", - "requires": { - "inherits": "^2.0.1" - } - }, - "lru-cache": { - "version": "6.0.0", - "requires": { - "yallist": "^4.0.0" - } - }, - "luxon": { - "version": "1.28.0" - }, - "macos-release": { - "version": "2.5.1", - "dev": true - }, - "magic-string": { - "version": "0.30.0", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } - }, - "make-dir": { - "version": "3.1.0", - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0" - } - } - }, - "make-error": { - "version": "1.3.6", - "dev": true - }, - "makeerror": { - "version": "1.0.12", - "requires": { - "tmpl": "1.0.5" - } - }, - "md5.js": { - "version": "1.3.5", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "media-typer": { - "version": "0.3.0" - }, - "memfs": { - "version": "3.5.3", - "dev": true, - "requires": { - "fs-monkey": "^1.0.4" - } - }, - "merge-descriptors": { - "version": "1.0.1" - }, - "merge-options": { - "version": "3.0.4", - "requires": { - "is-plain-obj": "^2.1.0" - } - }, - "merge-stream": { - "version": "2.0.0" - }, - "methods": { - "version": "1.1.2" - }, - "micromatch": { - "version": "4.0.4", - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - } - }, - "mime": { - "version": "1.6.0" - }, - "mime-db": { - "version": "1.51.0" - }, - "mime-types": { - "version": "2.1.34", - "requires": { - "mime-db": "1.51.0" - } - }, - "mimic-fn": { - "version": "2.1.0" - }, - "minimalistic-assert": { - "version": "1.0.1" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1" - }, - "minimatch": { - "version": "3.0.4", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8" - }, - "minipass": { - "version": "4.2.8" - }, - "minizlib": { - "version": "2.1.2", - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "mkdirp": { - "version": "0.5.5", - "requires": { - "minimist": "^1.2.5" - } - }, - "mock-fs": { - "version": "5.1.2", - "dev": true - }, - "module-error": { - "version": "1.0.2" - }, - "mortice": { - "version": "3.0.1", - "requires": { - "nanoid": "^4.0.0", - "observable-webworkers": "^2.0.1", - "p-queue": "^7.2.0", - "p-timeout": "^6.0.0" - }, - "dependencies": { - "nanoid": { - "version": "4.0.0" - }, - "p-queue": { - "version": "7.3.0", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - }, - "dependencies": { - "p-timeout": { - "version": "5.1.0" - } - } - }, - "p-timeout": { - "version": "6.0.0" - } - } - }, - "mri": { - "version": "1.1.4" - }, - "ms": { - "version": "2.1.2" - }, - "multer": { - "version": "1.4.4-lts.1", - "requires": { - "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", - "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" - } - }, - "multiaddr": { - "version": "10.0.1", - "requires": { - "dns-over-http-resolver": "^1.2.3", - "err-code": "^3.0.1", - "is-ip": "^3.1.0", - "multiformats": "^9.4.5", - "uint8arrays": "^3.0.0", - "varint": "^6.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "multibase": { - "version": "4.0.6", - "requires": { - "@multiformats/base-x": "^4.0.1" - } - }, - "multicast-dns": { - "version": "7.2.5", - "requires": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - } - }, - "multiformats": { - "version": "11.0.2" - }, - "multihashes": { - "version": "4.0.3", - "requires": { - "multibase": "^4.0.1", - "uint8arrays": "^3.0.0", - "varint": "^5.0.2" - }, - "dependencies": { - "varint": { - "version": "5.0.2" - } - } - }, - "multihashing-async": { - "version": "2.1.4", - "requires": { - "blakejs": "^1.1.0", - "err-code": "^3.0.0", - "js-sha3": "^0.8.0", - "multihashes": "^4.0.1", - "murmurhash3js-revisited": "^3.0.0", - "uint8arrays": "^3.0.0" - } - }, - "murmurhash3js": { - "version": "3.0.1" - }, - "murmurhash3js-revisited": { - "version": "3.0.0" - }, - "mute-stream": { - "version": "0.0.8", - "dev": true - }, - "nan": { - "version": "2.17.0" - }, - "nanoid": { - "version": "3.3.4" - }, - "napi-macros": { - "version": "2.0.0" - }, - "native-fetch": { - "version": "3.0.0", - "requires": {} - }, - "natural-compare": { - "version": "1.4.0", - "dev": true - }, - "ndjson": { - "version": "1.5.0", - "optional": true, - "requires": { - "json-stringify-safe": "^5.0.1", - "minimist": "^1.2.0", - "split2": "^2.1.0", - "through2": "^2.0.3" - } - }, - "negotiator": { - "version": "0.6.3" - }, - "neo-async": { - "version": "2.6.2" - }, - "netmask": { - "version": "2.0.2" - }, - "nice-try": { - "version": "1.0.5", - "dev": true - }, - "no-case": { - "version": "3.0.4", - "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node-abort-controller": { - "version": "3.1.1", - "dev": true - }, - "node-addon-api": { - "version": "2.0.2" - }, - "node-emoji": { - "version": "1.11.0", - "dev": true, - "requires": { - "lodash": "^4.17.21" - } - }, - "node-fetch": { - "version": "2.6.9", - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "node-forge": { - "version": "0.10.0" - }, - "node-gyp-build": { - "version": "4.3.0" - }, - "node-int64": { - "version": "0.4.0" - }, - "node-releases": { - "version": "1.1.77" - }, - "nodeify": { - "version": "1.0.1", - "requires": { - "is-promise": "~1.0.0", - "promise": "~1.3.0" - } - }, - "nopt": { - "version": "5.0.0", - "requires": { - "abbrev": "1" - } - }, - "normalize-path": { - "version": "3.0.0" - }, - "npm-run-path": { - "version": "4.0.1", - "requires": { - "path-key": "^3.0.0" - } - }, - "npmlog": { - "version": "5.0.1", - "requires": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "nugget": { - "version": "2.2.0", - "optional": true, - "requires": { - "debug": "^2.1.3", - "minimist": "^1.1.0", - "pretty-bytes": "^4.0.2", - "progress-stream": "^1.1.0", - "request": "^2.45.0", - "single-line-log": "^1.1.2", - "throttleit": "0.0.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - }, - "pretty-bytes": { - "version": "4.0.2", - "optional": true - } - } - }, - "number-is-nan": { - "version": "1.0.1", - "optional": true - }, - "oauth-sign": { - "version": "0.9.0", - "optional": true - }, - "object-assign": { - "version": "4.1.1" - }, - "object-inspect": { - "version": "1.11.1" - }, - "object-is": { - "version": "1.1.5", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "object-keys": { - "version": "0.4.0", - "optional": true - }, - "object.assign": { - "version": "4.1.2", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "dependencies": { - "object-keys": { - "version": "1.1.1" - } - } - }, - "observable-webworkers": { - "version": "2.0.1" - }, - "on-finished": { - "version": "2.4.1", - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "opener": { - "version": "1.5.2" - }, - "optimist": { - "version": "0.3.7", - "requires": { - "wordwrap": "~0.0.2" - } - }, - "ora": { - "version": "5.4.1", - "dev": true, - "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "bl": { - "version": "4.1.0", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "buffer": { - "version": "5.7.1", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "orbit-db": { - "version": "0.29.0", - "requires": { - "ipfs-pubsub-1on1": "^0.1.0", - "is-node": "^1.0.2", - "logplease": "^1.2.15", - "orbit-db-access-controllers": "^0.4.0", - "orbit-db-cache": "^0.5.0", - "orbit-db-counterstore": "^2.0.0", - "orbit-db-docstore": "^2.0.0", - "orbit-db-eventstore": "^2.0.0", - "orbit-db-feedstore": "^2.0.0", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "orbit-db-keystore": "^2.0.0", - "orbit-db-kvstore": "^2.0.0", - "orbit-db-pubsub": "^0.7.0", - "orbit-db-storage-adapter": "^0.9.0", - "orbit-db-store": "^5.0.0", - "wherearewe": "^2.0.1" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.0", - "requires": { - "multiformats": "^11.0.0" - } - }, - "aggregate-error": { - "version": "4.0.1", - "requires": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - } - }, - "clean-stack": { - "version": "4.2.0", - "requires": { - "escape-string-regexp": "5.0.0" - } - }, - "crdts": { - "version": "0.2.0" - }, - "escape-string-regexp": { - "version": "5.0.0" - }, - "indent-string": { - "version": "5.0.0" - }, - "ipfs-log": { - "version": "6.0.0", - "requires": { - "json-stringify-deterministic": "^1.0.8", - "orbit-db-identity-provider": "^0.5.0", - "orbit-db-io": "^3.0.0", - "p-do-whilst": "^2.0.0", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-whilst": "^3.0.0" - }, - "dependencies": { - "p-map": { - "version": "5.5.0", - "requires": { - "aggregate-error": "^4.0.0" - } - } - } - }, - "orbit-db-cache": { - "version": "0.5.0", - "requires": { - "logplease": "~1.2.15" - } - }, - "orbit-db-counterstore": { - "version": "2.0.0", - "requires": { - "crdts": "^0.2.0" - } - }, - "orbit-db-docstore": { - "version": "2.0.0", - "requires": { - "p-map": "~1.1.1" - } - }, - "orbit-db-eventstore": { - "version": "2.0.0", - "requires": {} - }, - "orbit-db-feedstore": { - "version": "2.0.0", - "requires": { - "orbit-db-eventstore": "*" - } - }, - "orbit-db-io": { - "version": "3.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - } - }, - "orbit-db-kvstore": { - "version": "2.0.0", - "requires": {} - }, - "orbit-db-pubsub": { - "version": "0.7.0", - "requires": { - "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "orbit-db-store": { - "version": "5.0.0", - "requires": { - "ipfs-log": "^6.0.0", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.15", - "p-each-series": "^3.0.0", - "p-map": "^5.5.0", - "p-queue": "^7.3.0", - "readable-stream": "~4.3.0" - }, - "dependencies": { - "p-map": { - "version": "5.5.0", - "requires": { - "aggregate-error": "^4.0.0" - } - } - } - }, - "p-do-whilst": { - "version": "2.0.0" - }, - "p-each-series": { - "version": "3.0.0" - }, - "p-map": { - "version": "1.1.1" - }, - "p-whilst": { - "version": "3.0.0" - }, - "readable-stream": { - "version": "4.3.0", - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - } - }, - "wherearewe": { - "version": "2.0.1", - "requires": { - "is-electron": "^2.2.0" - } - } - } - }, - "orbit-db-access-controllers": { - "version": "0.4.0", - "requires": { - "orbit-db-io": "^3.0.0", - "p-map-series": "^3.0.0", - "safe-buffer": "^5.2.1" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "9.0.0", - "requires": { - "cborg": "^1.10.0", - "multiformats": "^11.0.0" - } - }, - "@ipld/dag-pb": { - "version": "4.0.2", - "requires": { - "multiformats": "^11.0.0" - } - }, - "orbit-db-io": { - "version": "3.0.0", - "requires": { - "@ipld/dag-cbor": "^9.0.0", - "@ipld/dag-pb": "^4.0.0", - "multiformats": "^11.0.0" - } - } - } - }, - "orbit-db-identity-provider": { - "version": "0.5.0", - "requires": { - "@ethersproject/wallet": "^5.7.0", - "assert": "^2.0.0", - "dids": "^3.4.0", - "lru": "^3.1.0", - "orbit-db-keystore": "^2.0.0", - "path-browserify": "^1.0.1", - "stream-browserify": "^3.0.0", - "uint8arrays": "^4.0.3" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, - "orbit-db-io": { - "version": "1.0.2", - "requires": { - "@ipld/dag-cbor": "^6.0.10", - "@ipld/dag-pb": "^2.1.9", - "multiformats": "^9.4.7" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "orbit-db-keystore": { - "version": "2.0.0", - "requires": { - "@libp2p/crypto": "^1.0.11", - "elliptic": "^6.5.4", - "level": "8.0.0", - "lru": "^3.1.0", - "mkdirp": "^2.1.1", - "safe-buffer": "^5.2.1", - "secp256k1": "^5.0.0" - }, - "dependencies": { - "mkdirp": { - "version": "2.1.6" - }, - "node-addon-api": { - "version": "5.1.0" - }, - "secp256k1": { - "version": "5.0.0", - "requires": { - "elliptic": "^6.5.4", - "node-addon-api": "^5.0.0", - "node-gyp-build": "^4.2.0" - } - } - } - }, - "orbit-db-pubsub": { - "version": "0.6.0", - "requires": { - "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", - "logplease": "~1.2.14", - "p-series": "^1.1.0" - } - }, - "orbit-db-storage-adapter": { - "version": "0.9.0", - "requires": { - "level": "8.0.0", - "mkdirp": "^2.1.1" - }, - "dependencies": { - "mkdirp": { - "version": "2.1.3" - } - } - }, - "orbit-db-store": { - "version": "4.3.4", - "requires": { - "ipfs-log": "^5.4.1", - "it-to-stream": "^1.0.0", - "logplease": "^1.2.14", - "p-each-series": "^2.1.0", - "p-map": "^4.0.0", - "p-queue": "^6.6.2", - "readable-stream": "~3.6.0" - }, - "dependencies": { - "p-queue": { - "version": "6.6.2", - "requires": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - } - }, - "p-timeout": { - "version": "3.2.0", - "requires": { - "p-finally": "^1.0.0" - } - } - } - }, - "os-name": { - "version": "4.0.1", - "dev": true, - "requires": { - "macos-release": "^2.5.0", - "windows-release": "^4.0.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "dev": true - }, - "p-defer": { - "version": "3.0.0" - }, - "p-do-whilst": { - "version": "1.1.0" - }, - "p-each-series": { - "version": "2.2.0" - }, - "p-event": { - "version": "5.0.1", - "requires": { - "p-timeout": "^5.0.2" - } - }, - "p-fifo": { - "version": "1.0.0", - "requires": { - "fast-fifo": "^1.0.0", - "p-defer": "^3.0.0" - } - }, - "p-finally": { - "version": "1.0.0" - }, - "p-forever": { - "version": "2.1.0" - }, - "p-limit": { - "version": "2.3.0", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-map": { - "version": "4.0.0", - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-map-series": { - "version": "3.0.0" - }, - "p-queue": { - "version": "7.3.4", - "requires": { - "eventemitter3": "^4.0.7", - "p-timeout": "^5.0.2" - } - }, - "p-reduce": { - "version": "1.0.0" - }, - "p-reflect": { - "version": "3.1.0" - }, - "p-retry": { - "version": "5.1.1", - "requires": { - "@types/retry": "0.12.1", - "retry": "^0.13.1" - }, - "dependencies": { - "retry": { - "version": "0.13.1" - } - } - }, - "p-series": { - "version": "1.1.0", - "requires": { - "@sindresorhus/is": "^0.7.0", - "p-reduce": "^1.0.0" - }, - "dependencies": { - "@sindresorhus/is": { - "version": "0.7.0" - } - } - }, - "p-settle": { - "version": "5.1.0", - "requires": { - "p-limit": "^4.0.0", - "p-reflect": "^3.1.0" - }, - "dependencies": { - "p-limit": { - "version": "4.0.0", - "requires": { - "yocto-queue": "^1.0.0" - } - } - } - }, - "p-timeout": { - "version": "5.1.0" - }, - "p-try": { - "version": "2.2.0", - "dev": true - }, - "p-try-each": { - "version": "1.0.1" - }, - "p-wait-for": { - "version": "5.0.0", - "peer": true, - "requires": { - "p-timeout": "^6.0.0" - }, - "dependencies": { - "p-timeout": { - "version": "6.0.0", - "peer": true - } - } - }, - "p-whilst": { - "version": "2.1.0" - }, - "package-json": { - "version": "8.1.0", - "requires": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" - }, - "dependencies": { - "@sindresorhus/is": { - "version": "5.3.0" - }, - "@szmarczak/http-timer": { - "version": "5.0.1", - "requires": { - "defer-to-connect": "^2.0.1" - } - }, - "cacheable-lookup": { - "version": "7.0.0" - }, - "cacheable-request": { - "version": "10.2.3", - "requires": { - "@types/http-cache-semantics": "^4.0.1", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.0", - "keyv": "^4.5.2", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - } - }, - "got": { - "version": "12.5.3", - "requires": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.1", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - } - }, - "http2-wrapper": { - "version": "2.2.0", - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - } - }, - "lowercase-keys": { - "version": "3.0.0" - }, - "mimic-response": { - "version": "4.0.0" - }, - "normalize-url": { - "version": "8.0.0" - }, - "p-cancelable": { - "version": "3.0.0" - }, - "responselike": { - "version": "3.0.0", - "requires": { - "lowercase-keys": "^3.0.0" - } - } - } - }, - "pako": { - "version": "2.1.0" - }, - "param-case": { - "version": "3.0.4", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "parent-module": { - "version": "1.0.1", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-duration": { - "version": "1.0.2" - }, - "parseurl": { - "version": "1.3.3" - }, - "pascal-case": { - "version": "3.1.2", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-browserify": { - "version": "1.0.1" - }, - "path-case": { - "version": "3.0.4", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-exists": { - "version": "2.1.0", - "optional": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1" - }, - "path-key": { - "version": "3.1.1" - }, - "path-parse": { - "version": "1.0.7" - }, - "path-scurry": { - "version": "1.9.2", - "dev": true, - "requires": { - "lru-cache": "^9.1.1", - "minipass": "^5.0.0 || ^6.0.2" - }, - "dependencies": { - "lru-cache": { - "version": "9.1.2", - "dev": true - }, - "minipass": { - "version": "6.0.2", - "dev": true - } - } - }, - "path-to-regexp": { - "version": "2.4.0", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "dev": true - }, - "peek-readable": { - "version": "5.0.0" - }, - "peer-id": { - "version": "0.16.0", - "requires": { - "class-is": "^1.1.0", - "libp2p-crypto": "^0.21.0", - "multiformats": "^9.4.5", - "protobufjs": "^6.10.2", - "uint8arrays": "^3.0.0" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "pem-jwk": { - "version": "2.0.0", - "requires": { - "asn1.js": "^5.0.1" - } - }, - "pend": { - "version": "1.2.0", - "optional": true - }, - "performance-now": { - "version": "2.1.0", - "optional": true - }, - "picomatch": { - "version": "2.3.0" - }, - "pinkie": { - "version": "2.0.4", - "optional": true - }, - "pinkie-promise": { - "version": "2.0.1", - "optional": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "pino": { - "version": "6.14.0", - "requires": { - "fast-redact": "^3.0.0", - "fast-safe-stringify": "^2.0.8", - "flatstr": "^1.0.12", - "pino-std-serializers": "^3.1.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "sonic-boom": "^1.0.2" - } - }, - "pino-pretty": { - "version": "4.8.0", - "requires": { - "@hapi/bourne": "^2.0.0", - "args": "^5.0.1", - "chalk": "^4.0.0", - "dateformat": "^4.5.1", - "fast-safe-stringify": "^2.0.7", - "jmespath": "^0.15.0", - "joycon": "^2.2.5", - "pump": "^3.0.0", - "readable-stream": "^3.6.0", - "rfdc": "^1.3.0", - "split2": "^3.1.1", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "split2": { - "version": "3.2.2", - "requires": { - "readable-stream": "^3.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "pino-std-serializers": { - "version": "3.2.0" - }, - "pirates": { - "version": "4.0.5", - "dev": true - }, - "pkijs": { - "version": "3.0.8", - "requires": { - "asn1js": "^3.0.5", - "bytestreamjs": "^2.0.0", - "pvtsutils": "^1.3.2", - "pvutils": "^1.1.3", - "tslib": "^2.4.0" - } - }, - "platform": { - "version": "1.3.6" - }, - "pluralize": { - "version": "8.0.0", - "dev": true - }, - "portfinder": { - "version": "1.0.28", - "requires": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "pretty-bytes": { - "version": "6.1.0" - }, - "pretty-format": { - "version": "27.5.1", - "requires": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0" - } - } - }, - "private-ip": { - "version": "2.3.3", - "requires": { - "ip-regex": "^4.3.0", - "ipaddr.js": "^2.0.1", - "is-ip": "^3.1.0", - "netmask": "^2.0.2" - }, - "dependencies": { - "ipaddr.js": { - "version": "2.0.1" - } - } - }, - "process": { - "version": "0.11.10" - }, - "process-nextick-args": { - "version": "2.0.1" - }, - "process-warning": { - "version": "1.0.0" - }, - "progress": { - "version": "2.0.3" - }, - "progress-stream": { - "version": "1.2.0", - "optional": true, - "requires": { - "speedometer": "~0.1.2", - "through2": "~0.2.3" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "optional": true - }, - "readable-stream": { - "version": "1.1.14", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "optional": true - }, - "through2": { - "version": "0.2.3", - "optional": true, - "requires": { - "readable-stream": "~1.1.9", - "xtend": "~2.1.1" - } - }, - "xtend": { - "version": "2.1.2", - "optional": true, - "requires": { - "object-keys": "~0.4.0" - } - } - } - }, - "prom-client": { - "version": "14.1.1", - "requires": { - "tdigest": "^0.1.1" - } - }, - "promise": { - "version": "1.3.0", - "requires": { - "is-promise": "~1" - } - }, - "prompts": { - "version": "2.4.2", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "proper-lockfile": { - "version": "4.1.2", - "requires": { - "graceful-fs": "^4.2.4", - "retry": "^0.12.0", - "signal-exit": "^3.0.2" - } - }, - "proto-list": { - "version": "1.2.4" - }, - "protobufjs": { - "version": "6.11.2", - "requires": { - "@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.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - } - }, - "protocol-buffers-schema": { - "version": "3.6.0" - }, - "protons": { - "version": "1.2.1", - "requires": { - "buffer": "^5.5.0", - "protocol-buffers-schema": "^3.3.1", - "signed-varint": "^2.0.1", - "varint": "^5.0.0" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "varint": { - "version": "5.0.2" - } - } - }, - "protons-runtime": { - "version": "4.0.1", - "requires": { - "protobufjs": "^7.0.0", - "uint8arraylist": "^2.3.2" - }, - "dependencies": { - "long": { - "version": "5.2.1" - }, - "protobufjs": { - "version": "7.1.2", - "requires": { - "@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": ">=13.7.0", - "long": "^5.0.0" - } - } - } - }, - "proxy-addr": { - "version": "2.0.7", - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "dependencies": { - "forwarded": { - "version": "0.2.0" - } - } - }, - "prr": { - "version": "1.0.1" - }, - "pseudomap": { - "version": "1.0.2", - "optional": true - }, - "psl": { - "version": "1.9.0", - "optional": true - }, - "pump": { - "version": "3.0.0", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "2.1.1" - }, - "pupa": { - "version": "3.1.0", - "requires": { - "escape-goat": "^4.0.0" - } - }, - "pvtsutils": { - "version": "1.3.2", - "requires": { - "tslib": "^2.4.0" - } - }, - "pvutils": { - "version": "1.1.3" - }, - "qs": { - "version": "6.11.0", - "requires": { - "side-channel": "^1.0.4" - } - }, - "querystring": { - "version": "0.2.1", - "dev": true - }, - "queue": { - "version": "6.0.2", - "requires": { - "inherits": "~2.0.3" - } - }, - "queue-microtask": { - "version": "1.2.3" - }, - "quick-format-unescaped": { - "version": "4.0.4" - }, - "quick-lru": { - "version": "5.1.1" - }, - "rabin-wasm": { - "version": "0.1.5", - "requires": { - "@assemblyscript/loader": "^0.9.4", - "bl": "^5.0.0", - "debug": "^4.3.1", - "minimist": "^1.2.5", - "node-fetch": "^2.6.1", - "readable-stream": "^3.6.0" - } - }, - "randombytes": { - "version": "2.1.0", - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.1" - }, - "rate-limiter-flexible": { - "version": "2.4.1" - }, - "raw-body": { - "version": "2.5.1", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "rc": { - "version": "1.2.8", - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "strip-json-comments": { - "version": "2.0.1" - } - } - }, - "react-is": { - "version": "17.0.2" - }, - "react-native-fetch-api": { - "version": "3.0.0", - "requires": { - "p-defer": "^3.0.0" - } - }, - "readable-stream": { - "version": "3.6.0", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readable-web-to-node-stream": { - "version": "3.0.2", - "requires": { - "readable-stream": "^3.6.0" - } - }, - "readdirp": { - "version": "3.6.0", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "receptacle": { - "version": "1.3.2", - "requires": { - "ms": "^2.1.1" - } - }, - "rechoir": { - "version": "0.8.0", - "dev": true, - "requires": { - "resolve": "^1.20.0" - } - }, - "reflect-metadata": { - "version": "0.1.13" - }, - "regenerator-runtime": { - "version": "0.13.11", - "dev": true - }, - "registry-auth-token": { - "version": "5.0.1", - "requires": { - "@pnpm/npm-conf": "^1.0.4" - } - }, - "registry-url": { - "version": "6.0.1", - "requires": { - "rc": "1.2.8" - } - }, - "repeat-string": { - "version": "1.6.1", - "dev": true - }, - "request": { - "version": "2.88.2", - "optional": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "form-data": { - "version": "2.3.3", - "optional": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "qs": { - "version": "6.5.3", - "optional": true - } - } - }, - "require-directory": { - "version": "2.1.1" - }, - "require-from-string": { - "version": "2.0.2", - "dev": true - }, - "requires-port": { - "version": "1.0.0" - }, - "resolve": { - "version": "1.20.0", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "resolve-alpn": { - "version": "1.2.1" - }, - "resolve-cwd": { - "version": "3.0.0", - "dev": true, - "requires": { - "resolve-from": "^5.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "5.0.0", - "dev": true - } - } - }, - "resolve-from": { - "version": "4.0.0", - "dev": true - }, - "resolve.exports": { - "version": "1.1.0" - }, - "restore-cursor": { - "version": "3.1.0", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "retimer": { - "version": "3.0.0" - }, - "retry": { - "version": "0.12.0" - }, - "rfdc": { - "version": "1.3.0" - }, - "rimraf": { - "version": "3.0.2", - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "rpc-utils": { - "version": "0.6.2", - "requires": { - "nanoid": "^3.3.1" - } - }, - "rsa-pem-to-jwk": { - "version": "1.1.3", - "requires": { - "object-assign": "^2.0.0", - "rsa-unpack": "0.0.6" - }, - "dependencies": { - "object-assign": { - "version": "2.1.1" - } - } - }, - "rsa-unpack": { - "version": "0.0.6", - "requires": { - "optimist": "~0.3.5" - } - }, - "run-async": { - "version": "2.4.1", - "dev": true - }, - "run-parallel-limit": { - "version": "1.1.0", - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "run-script-os": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz", - "integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==", - "dev": true - }, - "rxjs": { - "version": "7.8.1", - "requires": { - "tslib": "^2.1.0" - } - }, - "safe-buffer": { - "version": "5.2.1" - }, - "safer-buffer": { - "version": "2.1.2" - }, - "sanitize-filename": { - "version": "1.6.3", - "requires": { - "truncate-utf8-bytes": "^1.0.0" - } - }, - "sax": { - "version": "1.2.4" - }, - "schema-utils": { - "version": "3.2.0", - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "scrypt-js": { - "version": "3.0.1" - }, - "secp256k1": { - "version": "4.0.3", - "requires": { - "elliptic": "^6.5.4", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - } - }, - "secure-compare": { - "version": "3.0.1" - }, - "semver": { - "version": "7.3.8", - "requires": { - "lru-cache": "^6.0.0" - } - }, - "semver-diff": { - "version": "4.0.0", - "requires": { - "semver": "^7.3.5" - } - }, - "send": { - "version": "0.18.0", - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0" - } - } - }, - "ms": { - "version": "2.1.3" - } - } - }, - "sentence-case": { - "version": "3.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "serialize-javascript": { - "version": "6.0.1", - "requires": { - "randombytes": "^2.1.0" - } - }, - "serve-static": { - "version": "1.15.0", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "set-blocking": { - "version": "2.0.0" - }, - "set-delayed-interval": { - "version": "1.0.0" - }, - "setprototypeof": { - "version": "1.2.0" - }, - "sha.js": { - "version": "2.4.11", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shallow-clone": { - "version": "3.0.1", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - } - }, - "shebang-command": { - "version": "2.0.0", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0" - }, - "shelljs": { - "version": "0.8.5", - "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "dependencies": { - "interpret": { - "version": "1.4.0", - "dev": true - }, - "rechoir": { - "version": "0.6.2", - "dev": true, - "requires": { - "resolve": "^1.1.6" - } - } - } - }, - "side-channel": { - "version": "1.0.4", - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "3.0.7" - }, - "signed-varint": { - "version": "2.0.1", - "requires": { - "varint": "~5.0.0" - }, - "dependencies": { - "varint": { - "version": "5.0.2" - } - } - }, - "single-line-log": { - "version": "1.1.2", - "optional": true, - "requires": { - "string-width": "^1.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "sisteransi": { - "version": "1.0.5", - "dev": true - }, - "slash": { - "version": "3.0.0" - }, - "smart-buffer": { - "version": "4.2.0" - }, - "snake-case": { - "version": "3.0.4", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "socket.io": { - "version": "4.6.0", - "requires": { - "accepts": "~1.3.4", - "base64id": "~2.0.0", - "debug": "~4.3.2", - "engine.io": "~6.4.0", - "socket.io-adapter": "~2.5.2", - "socket.io-parser": "~4.2.1" - } - }, - "socket.io-adapter": { - "version": "2.5.2", - "requires": { - "ws": "~8.11.0" - } - }, - "socket.io-client": { - "version": "4.5.4", - "requires": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.2", - "engine.io-client": "~6.2.3", - "socket.io-parser": "~4.2.1" - } - }, - "socket.io-parser": { - "version": "4.2.1", - "requires": { - "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1" - } - }, - "socks": { - "version": "2.6.1", - "requires": { - "ip": "^1.1.5", - "smart-buffer": "^4.1.0" - } - }, - "socks-proxy-agent": { - "version": "5.0.1", - "requires": { - "agent-base": "^6.0.2", - "debug": "4", - "socks": "^2.3.3" - } - }, - "sonic-boom": { - "version": "1.4.1", - "requires": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" - } - }, - "sort-keys": { - "version": "5.0.0", - "requires": { - "is-plain-obj": "^4.0.0" - }, - "dependencies": { - "is-plain-obj": { - "version": "4.1.0" - } - } - }, - "source-map": { - "version": "0.6.1" - }, - "source-map-support": { - "version": "0.5.21", - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "buffer-from": { - "version": "1.1.2" - } - } - }, - "sparse-array": { - "version": "1.3.2" - }, - "speedometer": { - "version": "0.1.4", - "optional": true - }, - "split2": { - "version": "2.2.0", - "optional": true, - "requires": { - "through2": "^2.0.2" - } - }, - "sprintf-js": { - "version": "1.1.2" - }, - "sshpk": { - "version": "1.17.0", - "optional": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "dependencies": { - "jsbn": { - "version": "0.1.1", - "optional": true - } - } - }, - "stack-utils": { - "version": "2.0.6", - "dev": true, - "requires": { - "escape-string-regexp": "^2.0.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "2.0.0", - "dev": true - } - } - }, - "statuses": { - "version": "2.0.1" - }, - "stream-browserify": { - "version": "3.0.0", - "requires": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "stream-to-it": { - "version": "0.2.4", - "requires": { - "get-iterator": "^1.0.2" - } - }, - "streamsearch": { - "version": "1.1.0" - }, - "string_decoder": { - "version": "1.3.0", - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-length": { - "version": "4.0.2", - "dev": true, - "requires": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - } - }, - "string-replace-loader": { - "version": "3.1.0", - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - } - }, - "string-width": { - "version": "4.2.3", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "strip-ansi": { - "version": "6.0.1", - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0" - }, - "strip-json-comments": { - "version": "3.1.1" - }, - "strtok3": { - "version": "7.0.0", - "requires": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - } - }, - "sumchecker": { - "version": "1.3.1", - "optional": true, - "requires": { - "debug": "^2.2.0", - "es6-promise": "^4.0.5" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "optional": true - } - } - }, - "super-regex": { - "version": "0.2.0", - "requires": { - "clone-regexp": "^3.0.0", - "function-timeout": "^0.1.0", - "time-span": "^5.1.0" - } - }, - "supports-color": { - "version": "5.5.0", - "requires": { - "has-flag": "^3.0.0" - } - }, - "symbol-observable": { - "version": "4.0.0", - "dev": true - }, - "tapable": { - "version": "2.2.1" - }, - "tar": { - "version": "6.1.13", - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4" - } - } - }, - "tdigest": { - "version": "0.1.2", - "requires": { - "bintrees": "1.0.2" - } - }, - "temp-dir": { - "version": "2.0.0", - "peer": true - }, - "temp-write": { - "version": "5.0.0", - "peer": true, - "requires": { - "graceful-fs": "^4.2.6", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "uuid": "^8.3.2" - }, - "dependencies": { - "uuid": { - "version": "8.3.2", - "peer": true - } - } - }, - "terser": { - "version": "5.18.0", - "requires": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "dependencies": { - "acorn": { - "version": "8.8.2" - }, - "commander": { - "version": "2.20.3" - } - } - }, - "terser-webpack-plugin": { - "version": "5.3.9", - "requires": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0" - }, - "jest-worker": { - "version": "27.5.1", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - } - }, - "supports-color": { - "version": "8.1.1", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "test-exclude": { - "version": "6.0.0", - "dev": true, - "requires": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - } - }, - "throttleit": { - "version": "0.0.2", - "optional": true - }, - "through": { - "version": "2.3.8", - "dev": true - }, - "through2": { - "version": "2.0.5", - "optional": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "thunky": { - "version": "1.1.0" - }, - "time-span": { - "version": "5.1.0", - "requires": { - "convert-hrtime": "^5.0.0" - } - }, - "timeout-abort-controller": { - "version": "3.0.0", - "requires": { - "retimer": "^3.0.0" - } - }, - "timestamp-nano": { - "version": "1.0.1" - }, - "tmp": { - "version": "0.2.1", - "dev": true, - "requires": { - "rimraf": "^3.0.0" - } - }, - "tmpl": { - "version": "1.0.5" - }, - "to-fast-properties": { - "version": "2.0.0", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "requires": { - "is-number": "^7.0.0" - } - }, - "toidentifier": { - "version": "1.0.1" - }, - "token-types": { - "version": "5.0.1", - "requires": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - } - }, - "tough-cookie": { - "version": "2.5.0", - "optional": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "0.0.3" - }, - "tree-kill": { - "version": "1.2.2", - "dev": true - }, - "truncate-utf8-bytes": { - "version": "1.0.2", - "requires": { - "utf8-byte-length": "^1.0.1" - } - }, - "ts-jest": { - "version": "29.0.5", - "dev": true, - "requires": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "7.x", - "yargs-parser": "^21.0.1" - }, - "dependencies": { - "json5": { - "version": "2.2.3", - "dev": true - }, - "yargs-parser": { - "version": "21.1.1", - "dev": true - } - } - }, - "ts-jest-resolver": { - "version": "2.0.0", - "requires": { - "jest-resolve": "^27.2.5" - }, - "dependencies": { - "@jest/types": { - "version": "27.5.1", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.5", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "6.3.0" - }, - "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - }, - "has-flag": { - "version": "4.0.0" - }, - "jest-haste-map": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - } - }, - "jest-regex-util": { - "version": "27.5.1" - }, - "jest-resolve": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - } - }, - "jest-util": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-validate": { - "version": "27.5.1", - "requires": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - } - }, - "jest-worker": { - "version": "27.5.1", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "leven": { - "version": "3.1.0" - }, - "supports-color": { - "version": "7.2.0", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "ts-loader": { - "version": "9.4.2", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "ts-node": { - "version": "10.9.1", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "dependencies": { - "acorn": { - "version": "8.8.1", - "dev": true - } - } - }, - "tsconfig-paths-webpack-plugin": { - "version": "4.0.1", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.1.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "json5": { - "version": "2.2.3", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "tsconfig-paths": { - "version": "4.2.0", - "dev": true, - "requires": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - } - } - }, - "tslib": { - "version": "2.5.3" - }, - "tunnel-agent": { - "version": "0.6.0", - "optional": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "optional": true - }, - "type-detect": { - "version": "4.0.8", - "dev": true - }, - "type-fest": { - "version": "2.19.0" - }, - "type-is": { - "version": "1.6.18", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedarray": { - "version": "0.0.6" - }, - "typedarray-to-buffer": { - "version": "3.1.5", - "requires": { - "is-typedarray": "^1.0.0" - } - }, - "typescript": { - "version": "4.9.5", - "dev": true - }, - "uid": { - "version": "2.0.2", - "requires": { - "@lukeed/csprng": "^1.0.0" - } - }, - "uint8-varint": { - "version": "1.0.4", - "requires": { - "byte-access": "^1.0.0", - "longbits": "^1.1.0", - "uint8arraylist": "^2.0.0", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "uint8arraylist": { - "version": "2.4.2", - "requires": { - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "multiformats": { - "version": "10.0.2" - }, - "uint8arrays": { - "version": "4.0.2", - "requires": { - "multiformats": "^10.0.0" - } - } - } - }, - "uint8arrays": { - "version": "3.0.0", - "requires": { - "multiformats": "^9.4.2" - }, - "dependencies": { - "multiformats": { - "version": "9.9.0" - } - } - }, - "unbox-primitive": { - "version": "1.0.1", - "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - } - }, - "undici": { - "version": "5.12.0", - "peer": true, - "requires": { - "busboy": "^1.6.0" - } - }, - "union": { - "version": "0.5.0", - "requires": { - "qs": "^6.4.0" - } - }, - "unique-string": { - "version": "3.0.0", - "requires": { - "crypto-random-string": "^4.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "dev": true - }, - "unpipe": { - "version": "1.0.0" - }, - "update-notifier": { - "version": "6.0.2", - "requires": { - "boxen": "^7.0.0", - "chalk": "^5.0.1", - "configstore": "^6.0.0", - "has-yarn": "^3.0.0", - "import-lazy": "^4.0.0", - "is-ci": "^3.0.1", - "is-installed-globally": "^0.4.0", - "is-npm": "^6.0.0", - "is-yarn-global": "^0.4.0", - "latest-version": "^7.0.0", - "pupa": "^3.1.0", - "semver": "^7.3.7", - "semver-diff": "^4.0.0", - "xdg-basedir": "^5.1.0" - }, - "dependencies": { - "chalk": { - "version": "5.1.2" - }, - "is-ci": { - "version": "3.0.1", - "requires": { - "ci-info": "^3.2.0" - } - } - } - }, - "upper-case": { - "version": "2.0.2", - "requires": { - "tslib": "^2.0.3" - } - }, - "upper-case-first": { - "version": "2.0.2", - "requires": { - "tslib": "^2.0.3" - } - }, - "uri-js": { - "version": "4.4.1", - "requires": { - "punycode": "^2.1.0" - } - }, - "url-join": { - "version": "2.0.5" - }, - "ursa-optional": { - "version": "0.10.2", - "requires": { - "bindings": "^1.5.0", - "nan": "^2.14.2" - } - }, - "utf8-byte-length": { - "version": "1.0.4" - }, - "util": { - "version": "0.12.4", - "requires": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - }, - "util-deprecate": { - "version": "1.0.2" - }, - "utils-merge": { - "version": "1.0.1" - }, - "uuid": { - "version": "3.4.0", - "optional": true - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "dev": true - }, - "v8-to-istanbul": { - "version": "9.0.1", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - } - }, - "validator": { - "version": "13.7.0" - }, - "varint": { - "version": "6.0.0" - }, - "varint-decoder": { - "version": "1.0.0", - "requires": { - "varint": "^5.0.0" - }, - "dependencies": { - "varint": { - "version": "5.0.2" - } - } - }, - "vary": { - "version": "1.1.2" - }, - "verror": { - "version": "1.10.0", - "optional": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "wait-for-expect": { - "version": "3.0.2", - "dev": true - }, - "walker": { - "version": "1.0.8", - "requires": { - "makeerror": "1.0.12" - } - }, - "watchpack": { - "version": "2.4.0", - "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - } - }, - "wcwidth": { - "version": "1.0.1", - "dev": true, - "requires": { - "defaults": "^1.0.3" - } - }, - "webcrypto-core": { - "version": "1.7.7", - "requires": { - "@peculiar/asn1-schema": "^2.3.6", - "@peculiar/json-schema": "^1.1.12", - "asn1js": "^3.0.1", - "pvtsutils": "^1.3.2", - "tslib": "^2.4.0" - } - }, - "webidl-conversions": { - "version": "3.0.1" - }, - "webpack": { - "version": "5.75.0", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "dependencies": { - "acorn": { - "version": "8.8.2" - }, - "acorn-import-assertions": { - "version": "1.8.0", - "requires": {} - } - } - }, - "webpack-cli": { - "version": "5.0.1", - "dev": true, - "requires": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.0.1", - "@webpack-cli/info": "^2.0.1", - "@webpack-cli/serve": "^2.0.1", - "colorette": "^2.0.14", - "commander": "^9.4.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" - }, - "dependencies": { - "colorette": { - "version": "2.0.19", - "dev": true - }, - "commander": { - "version": "9.5.0", - "dev": true - } - } - }, - "webpack-merge": { - "version": "5.8.0", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - } - }, - "webpack-node-externals": { - "version": "3.0.0", - "dev": true - }, - "webpack-sources": { - "version": "3.2.3" - }, - "whatwg-url": { - "version": "5.0.0", - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "which": { - "version": "2.0.2", - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "which-typed-array": { - "version": "1.1.7", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", - "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.7" - }, - "dependencies": { - "es-abstract": { - "version": "1.19.1", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", - "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - } - }, - "object-keys": { - "version": "1.1.1" - } - } - }, - "wide-align": { - "version": "1.1.5", - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "widest-line": { - "version": "4.0.1", - "requires": { - "string-width": "^5.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1" - }, - "emoji-regex": { - "version": "9.2.2" - }, - "string-width": { - "version": "5.1.2", - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.0.1", - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, - "wildcard": { - "version": "2.0.0", - "dev": true - }, - "windows-release": { - "version": "4.0.0", - "dev": true, - "requires": { - "execa": "^4.0.2" - }, - "dependencies": { - "execa": { - "version": "4.1.0", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "human-signals": { - "version": "1.1.1", - "dev": true - } - } - }, - "wordwrap": { - "version": "0.0.3" - }, - "wrap-ansi": { - "version": "7.0.0", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4" - } - } - }, - "wrappy": { - "version": "1.0.2" - }, - "write-file-atomic": { - "version": "3.0.3", - "requires": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "wrtc": { - "version": "0.4.7", - "optional": true, - "requires": { - "domexception": "^1.0.1", - "node-pre-gyp": "^0.13.0" - } - }, - "ws": { - "version": "8.11.0", - "requires": {} - }, - "xdg-basedir": { - "version": "5.1.0" - }, - "xml2js": { - "version": "0.4.23", - "requires": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - } - }, - "xmlbuilder": { - "version": "11.0.1" - }, - "xmlhttprequest-ssl": { - "version": "2.0.0" - }, - "xsalsa20": { - "version": "1.2.0" - }, - "xtend": { - "version": "4.0.2" - }, - "y18n": { - "version": "5.0.8" - }, - "yallist": { - "version": "4.0.0" - }, - "yaml": { - "version": "1.10.2", - "dev": true - }, - "yargs": { - "version": "17.6.2", - "requires": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "dependencies": { - "yargs-parser": { - "version": "21.1.1" - } - } - }, - "yargs-parser": { - "version": "20.2.9" - }, - "yauzl": { - "version": "2.10.0", - "optional": true, - "requires": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "yn": { - "version": "3.1.1", - "dev": true - }, - "yocto-queue": { - "version": "1.0.0" - } - } + "name": "@quiet/backend", + "version": "2.0.1-alpha.6", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "@quiet/backend", + "version": "2.0.1-alpha.6", + "license": "MIT", + "dependencies": { + "@chainsafe/libp2p-gossipsub": "6.1.0", + "@chainsafe/libp2p-noise": "11.0.0", + "@nestjs/common": "^10.0.0", + "@nestjs/core": "^10.0.0", + "@nestjs/platform-express": "^10.0.0", + "@peculiar/webcrypto": "1.4.3", + "abortable-iterator": "^3.0.0", + "class-transformer": "^0.5.1", + "class-validator": "^0.13.1", + "cli-table": "^0.3.6", + "commander": "^7.2.0", + "cors": "^2.8.5", + "crypto-js": "^4.1.1", + "debug": "^4.3.1", + "dotenv": "8.2.0", + "events": "^3.2.0", + "express": "^4.17.1", + "get-port": "^5.1.1", + "go-ipfs": "npm:mocked-go-ipfs@0.17.0", + "http-server": "^0.12.3", + "https-proxy-agent": "^5.0.0", + "image-size": "^1.0.1", + "ipfs": "0.66.0", + "ipfs-log": "^5.4.2", + "it-ws": "5.0.6", + "joi": "^17.8.1", + "level": "8.0.0", + "libp2p": "0.42.2", + "luxon": "^1.11.4", + "multiaddr": "^10.0.1", + "orbit-db": "0.29.0", + "orbit-db-access-controllers": "^0.4.0", + "orbit-db-identity-provider": "0.5.0", + "orbit-db-io": "1.0.2", + "orbit-db-pubsub": "0.6.0", + "orbit-db-store": "4.3.4", + "p-queue": "7.3.4", + "peer-id": "^0.16.0", + "pkijs": "3.0.8", + "reflect-metadata": "^0.1.13", + "rimraf": "^3.0.2", + "rxjs": "^7.2.0", + "secp256k1": "4.0.3", + "socket.io": "4.6.0", + "socks-proxy-agent": "^5.0.0", + "string-replace-loader": "3.1.0", + "ts-jest-resolver": "^2.0.0", + "validator": "^13.6.0" + }, + "devDependencies": { + "@nestjs/cli": "^10.0.0", + "@nestjs/schematics": "^10.0.0", + "@nestjs/testing": "^10.0.0", + "@types/crypto-js": "^4.0.2", + "@types/express": "^4.17.9", + "@types/jest": "28.1.8", + "@types/luxon": "^3.3.0", + "@types/mock-fs": "^4.13.1", + "@types/node": "18.11.9", + "@types/node-fetch": "^2.5.11", + "@types/orbit-db": "git+https://github.com/orbitdb/orbit-db-types.git", + "@types/supertest": "^2.0.11", + "@types/tmp": "^0.2.3", + "@types/validator": "^13.1.4", + "@types/ws": "8.5.3", + "babel-jest": "^29.3.1", + "cross-env": "^5.2.0", + "fetch-mock-jest": "^1.5.1", + "jest": "^29.4.2", + "mock-fs": "^5.1.2", + "tmp": "^0.2.1", + "ts-jest": "^29.0.3", + "ts-loader": "9.4.2", + "ts-node": "10.9.1", + "typescript": "^4.9.3", + "wait-for-expect": "^3.0.2", + "webpack": "5.75.0", + "webpack-cli": "5.0.1", + "yargs": "^17.1.0" + } + }, + "../common": { + "name": "@quiet/common", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "@quiet/types": "^1.4.0-alpha.0", + "cross-env": "^5.2.0", + "debug": "^4.3.1" + }, + "devDependencies": { + "@quiet/eslint-config": "^1.0.0", + "@types/jest": "^26.0.23", + "@types/node": "^17.0.21", + "jest": "^26.6.3", + "ts-jest": "^26.5.2", + "typescript": "^4.9.3" + } + }, + "../eslint-config-custom": { + "name": "@quiet/eslint-config", + "version": "1.0.0", + "extraneous": true, + "devDependencies": { + "@typescript-eslint/eslint-plugin": "5.59.11", + "@typescript-eslint/parser": "^5.59.11", + "eslint": "^8.42.0", + "eslint-config-prettier": "^8.8.0", + "eslint-config-standard": "^17.1.0", + "eslint-config-standard-with-typescript": "^35.0.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jest": "^27.2.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react-hooks": "^4.6.0", + "prettier": "^2.8.8" + } + }, + "../identity": { + "name": "@quiet/identity", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "MIT", + "dependencies": { + "@peculiar/webcrypto": "1.4.3", + "@quiet/eslint-config": "^1.0.0", + "@quiet/logger": "^1.4.0-alpha.0", + "@quiet/types": "^1.4.0-alpha.0", + "pkijs": "^3.0.8" + }, + "devDependencies": { + "@babel/runtime": "^7.12.5", + "@types/jest": "^26.0.23", + "@types/node": "^14.17.6", + "babel-jest": "^29.3.1", + "jest": "^26.6.3", + "ts-jest": "^26.5.6", + "typescript": "^4.9.3" + } + }, + "../logger": { + "name": "@quiet/logger", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "cross-env": "^5.2.0", + "debug": "^4.3.1" + }, + "devDependencies": { + "@quiet/eslint-config": "^1.0.0", + "@types/debug": "^4.1.7", + "@types/node": "^17.0.21", + "typescript": "^4.9.3" + } + }, + "../state-manager": { + "name": "@quiet/state-manager", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "@quiet/common": "^1.4.0-alpha.0", + "@quiet/logger": "^1.4.0-alpha.0", + "@quiet/types": "^1.4.0-alpha.0", + "@reduxjs/toolkit": "^1.9.1", + "factory-girl": "^5.0.4", + "get-port": "^5.1.1", + "luxon": "^2.0.2", + "redux": "^4.1.1", + "redux-persist": "^6.0.0", + "redux-saga": "^1.1.3", + "redux-thunk": "^2.4.0", + "reselect": "^4.1.4", + "socket.io-client": "^4.1.3", + "typed-redux-saga": "^1.3.1", + "wait-for-expect": "^3.0.2" + }, + "devDependencies": { + "@babel/core": "^7.22.5", + "@babel/preset-env": "^7.22.5", + "@babel/preset-typescript": "^7.22.5", + "@peculiar/webcrypto": "1.4.3", + "@quiet/eslint-config": "^1.0.0", + "@quiet/identity": "^1.4.0-alpha.0", + "@types/factory-girl": "^5.0.8", + "@types/jest": "^26.0.24", + "@types/luxon": "^2.0.0", + "@types/redux-saga": "^0.10.5", + "babel-jest": "^29.3.1", + "cross-env": "^7.0.3", + "factory-girl": "^5.0.4", + "jest": "^27.0.6", + "libp2p-websockets": "*", + "pkijs": "^3.0.8", + "pvutils": "*", + "redux-saga-test-plan": "^4.0.3", + "tmp": "^0.2.1", + "typescript": "^4.9.3" + } + }, + "../types": { + "name": "@quiet/types", + "version": "1.4.0-alpha.0", + "extraneous": true, + "license": "ISC", + "dependencies": { + "cross-env": "^5.2.0", + "debug": "^4.3.1" + }, + "devDependencies": { + "@quiet/eslint-config": "^1.0.0", + "@reduxjs/toolkit": "^1.9.1", + "@types/jest": "^26.0.23", + "@types/node": "^17.0.21", + "jest": "^26.6.3", + "ts-jest": "^26.5.2", + "typescript": "^4.9.3" + } + }, + "node_modules/@achingbrain/ip-address": { + "version": "8.1.0", + "license": "MIT", + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "1.1.2" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@achingbrain/nat-port-mapper": { + "version": "1.0.7", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@achingbrain/ssdp": "^4.0.1", + "@libp2p/logger": "^2.0.0", + "default-gateway": "^6.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.7", + "p-defer": "^4.0.0", + "p-timeout": "^5.0.2", + "xml2js": "^0.4.23" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@achingbrain/nat-port-mapper/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@achingbrain/ssdp": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "event-iterator": "^2.0.0", + "freeport-promise": "^2.0.0", + "merge-options": "^3.0.4", + "uuid": "^8.3.2", + "xml2js": "^0.4.23" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@achingbrain/ssdp/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@angular-devkit/core": { + "version": "16.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "rxjs": "7.8.1", + "source-map": "0.7.4" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "chokidar": "^3.5.2" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/@angular-devkit/core/node_modules/ajv": { + "version": "8.12.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@angular-devkit/core/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@angular-devkit/core/node_modules/source-map": { + "version": "0.7.4", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@angular-devkit/schematics": { + "version": "16.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "jsonc-parser": "3.2.0", + "magic-string": "0.30.0", + "ora": "5.4.1", + "rxjs": "7.8.1" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular-devkit/schematics-cli": { + "version": "16.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "ansi-colors": "4.1.3", + "inquirer": "8.2.4", + "symbol-observable": "4.0.0", + "yargs-parser": "21.1.1" + }, + "bin": { + "schematics": "bin/schematics.js" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/inquirer": { + "version": "8.2.4", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@angular-devkit/schematics-cli/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/@assemblyscript/loader": { + "version": "0.9.4", + "license": "Apache-2.0" + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.14.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/core": { + "version": "7.14.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.3", + "@babel/helper-compilation-targets": "^7.13.16", + "@babel/helper-module-transforms": "^7.14.2", + "@babel/helpers": "^7.14.0", + "@babel/parser": "^7.14.3", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/core/node_modules/json5": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/core/node_modules/source-map": { + "version": "0.5.7", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.14.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.14.2", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "node_modules/@babel/generator/node_modules/source-map": { + "version": "0.5.7", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.14.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.14.4", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.14.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.14.2" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.13.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.13.12" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.13.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.13.12" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.14.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.13.12", + "@babel/helper-replace-supers": "^7.13.12", + "@babel/helper-simple-access": "^7.13.12", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.14.0", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.14.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.13.12", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.4" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.13.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.13.12" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.12.17", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/helpers": { + "version": "7.14.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.14.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.20.13", + "dev": true, + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.20.13", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/template/node_modules/@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/traverse": { + "version": "7.14.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.2", + "@babel/helper-function-name": "^7.14.2", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.14.2", + "@babel/types": "^7.14.2", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.20.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@chainsafe/is-ip": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/@chainsafe/libp2p-gossipsub": { + "version": "6.1.0", + "license": "Apache-2.0", + "dependencies": { + "@libp2p/crypto": "^1.0.3", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.3.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/pubsub": "^6.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "denque": "^1.5.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "protobufjs": "^6.11.2", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "npm": ">=8.7.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/@libp2p/peer-record": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-gossipsub/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise": { + "version": "11.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection-encrypter": "^3.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/hkdf": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.1", + "it-length-prefixed": "^8.0.2", + "it-pair": "^2.0.2", + "it-pb-stream": "^2.0.2", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { + "version": "11.0.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@chainsafe/libp2p-noise/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@didtools/cacao": { + "version": "1.1.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@ipld/dag-cbor": "^7.0.1", + "apg-js": "^4.1.1", + "caip": "^1.1.0", + "multiformats": "^9.5.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@didtools/cacao/node_modules/@ipld/dag-cbor": { + "version": "7.0.3", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "node_modules/@didtools/cacao/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@didtools/cacao/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@didtools/cacao/node_modules/uint8arrays/node_modules/multiformats": { + "version": "11.0.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@didtools/pkh-ethereum": { + "version": "0.0.1", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@didtools/cacao": "^1.0.0", + "@ethersproject/wallet": "^5.7.0", + "@stablelib/random": "^1.0.2", + "caip": "^1.1.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@ethersproject/abi": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/abstract-provider": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-signer": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/address": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/base64": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0" + } + }, + "node_modules/@ethersproject/basex": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/bignumber": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + } + }, + "node_modules/@ethersproject/bignumber/node_modules/bn.js": { + "version": "5.2.1", + "license": "MIT" + }, + "node_modules/@ethersproject/bytes": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/constants": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0" + } + }, + "node_modules/@ethersproject/contracts": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "^5.7.0", + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0" + } + }, + "node_modules/@ethersproject/hash": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/hdnode": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/json-wallets": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "node_modules/@ethersproject/keccak256": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "js-sha3": "0.8.0" + } + }, + "node_modules/@ethersproject/logger": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/networks": { + "version": "5.7.1", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/pbkdf2": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/sha2": "^5.7.0" + } + }, + "node_modules/@ethersproject/properties": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/providers": { + "version": "5.7.2", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0", + "bech32": "1.1.4", + "ws": "7.4.6" + } + }, + "node_modules/@ethersproject/providers/node_modules/ws": { + "version": "7.4.6", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@ethersproject/random": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/rlp": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/sha2": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/signing-key": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/signing-key/node_modules/bn.js": { + "version": "5.2.1", + "license": "MIT" + }, + "node_modules/@ethersproject/solidity": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/strings": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/transactions": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/units": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/wallet": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/json-wallets": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/web": { + "version": "5.7.1", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "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" + } + }, + "node_modules/@ethersproject/wordlists": { + "version": "5.7.0", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@grpc/grpc-js": { + "version": "1.8.7", + "license": "Apache-2.0", + "dependencies": { + "@grpc/proto-loader": "^0.7.0", + "@types/node": ">=12.12.47" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.7.4", + "license": "Apache-2.0", + "dependencies": { + "@types/long": "^4.0.1", + "lodash.camelcase": "^4.3.0", + "long": "^4.0.0", + "protobufjs": "^7.0.0", + "yargs": "^16.2.0" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@grpc/proto-loader/node_modules/cliui": { + "version": "7.0.4", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/@grpc/proto-loader/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@grpc/proto-loader/node_modules/protobufjs/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/@grpc/proto-loader/node_modules/yargs": { + "version": "16.2.0", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@hapi/accept": { + "version": "5.0.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/address": { + "version": "5.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^11.0.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@hapi/address/node_modules/@hapi/hoek": { + "version": "11.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/ammo": { + "version": "5.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/b64": { + "version": "5.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/boom": { + "version": "9.1.4", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/bounce": { + "version": "2.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/bourne": { + "version": "2.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/call": { + "version": "8.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/catbox": { + "version": "11.1.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/podium": "4.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/catbox-memory": { + "version": "5.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/content": { + "version": "5.0.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x" + } + }, + "node_modules/@hapi/cryptiles": { + "version": "5.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/file": { + "version": "2.0.0", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/formula": { + "version": "3.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/hapi": { + "version": "20.2.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/accept": "^5.0.1", + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/bounce": "^2.0.0", + "@hapi/call": "^8.0.0", + "@hapi/catbox": "^11.1.1", + "@hapi/catbox-memory": "^5.0.0", + "@hapi/heavy": "^7.0.1", + "@hapi/hoek": "^9.0.4", + "@hapi/mimos": "^6.0.0", + "@hapi/podium": "^4.1.1", + "@hapi/shot": "^5.0.5", + "@hapi/somever": "^3.0.0", + "@hapi/statehood": "^7.0.4", + "@hapi/subtext": "^7.0.3", + "@hapi/teamwork": "^5.1.1", + "@hapi/topo": "^5.0.0", + "@hapi/validate": "^1.1.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/heavy": { + "version": "7.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.1.1", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/iron": { + "version": "6.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/mimos": { + "version": "6.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x", + "mime-db": "1.x.x" + } + }, + "node_modules/@hapi/nigel": { + "version": "4.0.2", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.4", + "@hapi/vise": "^4.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/pez": { + "version": "5.0.3", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/content": "^5.0.2", + "@hapi/hoek": "9.x.x", + "@hapi/nigel": "4.x.x" + } + }, + "node_modules/@hapi/pinpoint": { + "version": "2.0.1", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/podium": { + "version": "4.1.3", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x", + "@hapi/teamwork": "5.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/shot": { + "version": "5.0.5", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/somever": { + "version": "3.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/bounce": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/statehood": { + "version": "7.0.4", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/bounce": "2.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/iron": "6.x.x", + "@hapi/validate": "1.x.x" + } + }, + "node_modules/@hapi/subtext": { + "version": "7.0.4", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/content": "^5.0.2", + "@hapi/file": "2.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/pez": "^5.0.1", + "@hapi/wreck": "17.x.x" + } + }, + "node_modules/@hapi/teamwork": { + "version": "5.1.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@hapi/tlds": { + "version": "1.0.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@hapi/topo": { + "version": "5.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@hapi/validate": { + "version": "1.1.3", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0" + } + }, + "node_modules/@hapi/vise": { + "version": "4.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/wreck": { + "version": "17.2.0", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@ipld/car": { + "version": "5.1.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "cborg": "^1.9.0", + "multiformats": "^11.0.0", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/car/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/dag-cbor": { + "version": "6.0.13", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "cborg": "^1.2.1", + "multiformats": "^9.0.0" + } + }, + "node_modules/@ipld/dag-cbor/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@ipld/dag-json": { + "version": "10.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/dag-pb": { + "version": "2.1.13", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "multiformats": "^9.0.0" + } + }, + "node_modules/@ipld/dag-pb/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.4.2", + "@jest/reporters": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.4.2", + "jest-config": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-resolve-dependencies": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "jest-watcher": "^29.4.2", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.4.2", + "jest-snapshot": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/types": "^29.4.2", + "jest-mock": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/write-file-atomic": { + "version": "4.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.3", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "license": "MIT" + }, + "node_modules/@libp2p/bootstrap": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-info": "^1.0.7", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/crypto": { + "version": "1.0.11", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-keys": "^1.0.2", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^4.0.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/crypto/node_modules/node-forge": { + "version": "1.3.1", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/@libp2p/crypto/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/crypto/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "it-drain": "^2.0.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/delegated-content-routing/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/delegated-peer-routing": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.1", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-peer-routing/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/delegated-peer-routing/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/delegated-peer-routing/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/floodsub": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/pubsub": "^6.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.3" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/floodsub/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/floodsub/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-address-manager": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-connection": { + "version": "3.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-connection-encrypter": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-connection-manager": { + "version": "1.3.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-content-routing": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-dht": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-dht/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-keychain": { + "version": "2.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-keychain/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-keys": { + "version": "1.0.7", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-libp2p": { + "version": "1.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interface-peer-store": "^1.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-libp2p/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-metrics": { + "version": "4.0.5", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-discovery": { + "version": "1.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-id": { + "version": "1.0.6", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-info": { + "version": "1.0.8", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-info/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-routing": { + "version": "1.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-peer-store": { + "version": "1.2.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-record": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-pubsub": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-pushable": "^3.0.0", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-pubsub/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/interface-record": { + "version": "2.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-registrar": { + "version": "2.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-stream-muxer": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-stream-types": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interface-transport": { + "version": "2.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/interfaces": { + "version": "3.3.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht": { + "version": "7.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-first": "^2.0.0", + "it-length": "^2.0.0", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "it-take": "^2.0.0", + "k-bucket": "^5.1.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/kad-dht/node_modules/ip-regex": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/ipaddr.js": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/kad-dht/node_modules/it-take": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/p-queue": { + "version": "7.3.0", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/private-ip": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/kad-dht/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/logger": { + "version": "2.0.5", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "debug": "^4.3.3", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/logger/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mdns": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/multicast-dns": "^7.2.1", + "multicast-dns": "^7.2.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mdns/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mplex": { + "version": "7.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "benchmark": "^2.1.4", + "err-code": "^3.0.1", + "it-batched-bytes": "^1.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.4", + "rate-limiter-flexible": "^2.3.9", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mplex/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/mplex/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/mplex/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/mplex/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/mplex/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/multistream-select": { + "version": "3.1.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.6", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-merge": "^1.0.4", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/multistream-select/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@libp2p/multistream-select/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/multistream-select/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-collections": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-collections/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id-factory": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id-factory/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id-factory/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/@libp2p/peer-record": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-store/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/prometheus-metrics": { + "version": "1.1.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/logger": "^2.0.2", + "it-foreach": "^1.0.0", + "it-stream-types": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "peerDependencies": { + "prom-client": "^14.1.0" + } + }, + "node_modules/@libp2p/pubsub": { + "version": "6.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.2.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/pubsub/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/pubsub/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/pubsub/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/pubsub/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/pubsub/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/pubsub/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/record": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-dht": "^2.0.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/record/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/tcp": { + "version": "6.1.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "stream-to-it": "^0.2.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/topology": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/logger": "^2.0.1", + "it-all": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/topology/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/topology/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/tracked-map": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-metrics": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/utils": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@achingbrain/ip-address": "^8.1.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-peer-store": "^1.2.1", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "is-loopback-addr": "^2.0.1", + "it-stream-types": "^1.0.4", + "private-ip": "^2.1.1", + "uint8arraylist": "^2.3.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/utils/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/utils/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/utils/node_modules/is-loopback-addr": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/@libp2p/webrtc-peer": { + "version": "2.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "it-pushable": "^3.0.0", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "p-event": "^5.0.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-peer/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-peer/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/webrtc-peer/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.1", + "@libp2p/webrtc-peer": "^2.0.0", + "@libp2p/webrtc-star-protocol": "^3.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "socket.io-client": "^4.1.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star-protocol": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0", + "socket.io-client": "^4.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/webrtc-star/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/webrtc-star/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/websockets": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.2", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-ws": "^5.0.0", + "p-defer": "^4.0.0", + "p-timeout": "^6.0.0", + "wherearewe": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/websockets/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/@libp2p/websockets/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@libp2p/websockets/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/websockets/node_modules/p-timeout": { + "version": "6.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@libp2p/websockets/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lukeed/csprng": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.10", + "license": "BSD-3-Clause", + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/@multiformats/base-x": { + "version": "4.0.1", + "license": "MIT" + }, + "node_modules/@multiformats/mafmt": { + "version": "11.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr": { + "version": "11.4.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@chainsafe/is-ip": "^2.0.1", + "dns-over-http-resolver": "^2.1.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr-to-uri": { + "version": "9.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/dns-over-http-resolver": { + "version": "2.1.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "debug": "^4.3.1", + "native-fetch": "^4.0.2", + "receptacle": "^1.3.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/native-fetch": { + "version": "4.0.2", + "license": "MIT", + "peerDependencies": { + "undici": "*" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/murmur3": { + "version": "2.1.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0", + "murmurhash3js-revisited": "^3.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/uri-to-multiaddr": { + "version": "7.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0", + "is-ip": "^5.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/uri-to-multiaddr/node_modules/ip-regex": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@multiformats/uri-to-multiaddr/node_modules/is-ip": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "ip-regex": "^5.0.0", + "super-regex": "^0.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@nestjs/cli": { + "version": "10.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "@angular-devkit/schematics-cli": "16.1.0", + "@nestjs/schematics": "^10.0.1", + "chalk": "4.1.2", + "chokidar": "3.5.3", + "cli-table3": "0.6.3", + "commander": "4.1.1", + "fork-ts-checker-webpack-plugin": "8.0.0", + "inquirer": "8.2.5", + "node-emoji": "1.11.0", + "ora": "5.4.1", + "os-name": "4.0.1", + "rimraf": "4.4.1", + "shelljs": "0.8.5", + "source-map-support": "0.5.21", + "tree-kill": "1.2.2", + "tsconfig-paths": "4.2.0", + "tsconfig-paths-webpack-plugin": "4.0.1", + "typescript": "5.1.3", + "webpack": "5.87.0", + "webpack-node-externals": "3.0.0" + }, + "bin": { + "nest": "bin/nest.js" + }, + "engines": { + "node": ">= 16" + }, + "peerDependencies": { + "@swc/cli": "^0.1.62", + "@swc/core": "^1.3.62" + }, + "peerDependenciesMeta": { + "@swc/cli": { + "optional": true + }, + "@swc/core": { + "optional": true + } + } + }, + "node_modules/@nestjs/cli/node_modules/@types/estree": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@nestjs/cli/node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@nestjs/cli/node_modules/acorn": { + "version": "8.9.0", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@nestjs/cli/node_modules/acorn-import-assertions": { + "version": "1.9.0", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/@nestjs/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@nestjs/cli/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@nestjs/cli/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@nestjs/cli/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@nestjs/cli/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/commander": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@nestjs/cli/node_modules/es-module-lexer": { + "version": "1.3.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@nestjs/cli/node_modules/glob": { + "version": "9.3.5", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@nestjs/cli/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@nestjs/cli/node_modules/minimatch": { + "version": "8.0.4", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/rimraf": { + "version": "4.4.1", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^9.2.0" + }, + "bin": { + "rimraf": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@nestjs/cli/node_modules/tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@nestjs/cli/node_modules/typescript": { + "version": "5.1.3", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@nestjs/cli/node_modules/webpack": { + "version": "5.87.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/@nestjs/common": { + "version": "10.0.2", + "license": "MIT", + "dependencies": { + "iterare": "1.2.1", + "tslib": "2.5.3", + "uid": "2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "class-transformer": "*", + "class-validator": "*", + "reflect-metadata": "^0.1.12", + "rxjs": "^7.1.0" + }, + "peerDependenciesMeta": { + "class-transformer": { + "optional": true + }, + "class-validator": { + "optional": true + } + } + }, + "node_modules/@nestjs/core": { + "version": "10.0.2", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "@nuxtjs/opencollective": "0.3.2", + "fast-safe-stringify": "2.1.1", + "iterare": "1.2.1", + "path-to-regexp": "3.2.0", + "tslib": "2.5.3", + "uid": "2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "@nestjs/common": "^10.0.0", + "@nestjs/microservices": "^10.0.0", + "@nestjs/platform-express": "^10.0.0", + "@nestjs/websockets": "^10.0.0", + "reflect-metadata": "^0.1.12", + "rxjs": "^7.1.0" + }, + "peerDependenciesMeta": { + "@nestjs/microservices": { + "optional": true + }, + "@nestjs/platform-express": { + "optional": true + }, + "@nestjs/websockets": { + "optional": true + } + } + }, + "node_modules/@nestjs/core/node_modules/path-to-regexp": { + "version": "3.2.0", + "license": "MIT" + }, + "node_modules/@nestjs/platform-express": { + "version": "10.0.2", + "license": "MIT", + "dependencies": { + "body-parser": "1.20.2", + "cors": "2.8.5", + "express": "4.18.2", + "multer": "1.4.4-lts.1", + "tslib": "2.5.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "@nestjs/common": "^10.0.0", + "@nestjs/core": "^10.0.0" + } + }, + "node_modules/@nestjs/platform-express/node_modules/body-parser": { + "version": "1.20.2", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/@nestjs/platform-express/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@nestjs/platform-express/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/@nestjs/platform-express/node_modules/raw-body": { + "version": "2.5.2", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@nestjs/schematics": { + "version": "10.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "comment-json": "4.2.3", + "jsonc-parser": "3.2.0", + "pluralize": "8.0.0" + }, + "peerDependencies": { + "typescript": ">=4.8.2" + } + }, + "node_modules/@nestjs/testing": { + "version": "10.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "2.5.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nest" + }, + "peerDependencies": { + "@nestjs/common": "^10.0.0", + "@nestjs/core": "^10.0.0", + "@nestjs/microservices": "^10.0.0", + "@nestjs/platform-express": "^10.0.0" + }, + "peerDependenciesMeta": { + "@nestjs/microservices": { + "optional": true + }, + "@nestjs/platform-express": { + "optional": true + } + } + }, + "node_modules/@noble/ed25519": { + "version": "1.7.1", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/@noble/secp256k1": { + "version": "1.7.0", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/@nuxtjs/opencollective": { + "version": "0.3.2", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "consola": "^2.15.0", + "node-fetch": "^2.6.1" + }, + "bin": { + "opencollective": "bin/opencollective.js" + }, + "engines": { + "node": ">=8.0.0", + "npm": ">=5.0.0" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/@nuxtjs/opencollective/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@nuxtjs/opencollective/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@peculiar/asn1-schema": { + "version": "2.3.6", + "license": "MIT", + "dependencies": { + "asn1js": "^3.0.5", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@peculiar/json-schema": { + "version": "1.1.12", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@peculiar/webcrypto": { + "version": "1.4.3", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "pvtsutils": "^1.3.2", + "tslib": "^2.5.0", + "webcrypto-core": "^1.7.7" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/npm-conf": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "license": "BSD-3-Clause" + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.21", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0" + } + }, + "node_modules/@socket.io/component-emitter": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/@stablelib/aead": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/binary": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/int": "^1.0.1" + } + }, + "node_modules/@stablelib/bytes": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/chacha": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/chacha20poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/aead": "^1.0.1", + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/poly1305": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/constant-time": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/ed25519": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "@stablelib/random": "^1.0.2", + "@stablelib/sha512": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/hash": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/hkdf": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/hash": "^1.0.1", + "@stablelib/hmac": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/hmac": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/int": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/keyagreement": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/bytes": "^1.0.1" + } + }, + "node_modules/@stablelib/poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/random": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/sha256": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/sha512": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/wipe": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/@stablelib/x25519": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "@stablelib/keyagreement": "^1.0.1", + "@stablelib/random": "^1.0.2", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/xchacha20": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "node_modules/@stablelib/xchacha20poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/aead": "^1.0.1", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1", + "@stablelib/xchacha20": "^1.0.1" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "license": "MIT" + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.11.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/bn.js": { + "version": "5.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.34", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cookie": { + "version": "0.4.1", + "license": "MIT" + }, + "node_modules/@types/cookiejar": { + "version": "2.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/cors": { + "version": "2.8.13", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/crypto-js": { + "version": "4.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/dns-packet": { + "version": "5.2.4", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/elliptic": { + "version": "6.4.14", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/bn.js": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.4.10", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.51", + "license": "MIT" + }, + "node_modules/@types/events": { + "version": "1.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/express": { + "version": "4.17.15", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.31", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.32", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.1", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.3", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "28.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^28.0.0", + "pretty-format": "^28.0.0" + } + }, + "node_modules/@types/jest/node_modules/@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/expect-utils": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^28.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/schemas": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/@jest/types": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@types/jest/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/jest/node_modules/diff-sequences": { + "version": "28.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/expect": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/jest/node_modules/jest-diff": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-get-type": { + "version": "28.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-matcher-utils": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-message-util": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/jest-util": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "28.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@types/jest/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/jest/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "license": "MIT" + }, + "node_modules/@types/long": { + "version": "4.0.1", + "license": "MIT" + }, + "node_modules/@types/luxon": { + "version": "3.3.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mime": { + "version": "2.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "license": "MIT" + }, + "node_modules/@types/mock-fs": { + "version": "4.13.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/multicast-dns": { + "version": "7.2.1", + "license": "MIT", + "dependencies": { + "@types/dns-packet": "*", + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "18.11.9", + "license": "MIT" + }, + "node_modules/@types/node-fetch": { + "version": "2.5.11", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/orbit-db": { + "version": "1.0.1", + "resolved": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/elliptic": "^6.4.6", + "@types/events": "^1.2.0", + "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", + "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" + } + }, + "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", + "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", + "dev": true, + "dependencies": { + "cborg": "^2.0.1", + "multiformats": "^12.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/@ipld/dag-cbor/node_modules/multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/@libp2p/crypto": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", + "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", + "dev": true, + "dependencies": { + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interfaces": "^3.2.0", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^5.0.0", + "uint8arraylist": "^2.4.3", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/@types/ipfs": { + "version": "0.23.6", + "resolved": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/orbit-db/node_modules/cborg": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", + "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", + "dev": true, + "bin": { + "cborg": "cli.js" + } + }, + "node_modules/@types/orbit-db/node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "dev": true + }, + "node_modules/@types/orbit-db/node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/@types/orbit-db/node_modules/orbit-db": { + "name": "@orbitdb/core", + "version": "0.30.1", + "resolved": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", + "dev": true, + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@libp2p/crypto": "^1.0.12", + "it-pipe": "^2.0.5", + "level": "^8.0.0", + "lru": "^3.1.0", + "multiformats": "^11.0.1", + "p-queue": "^7.3.4", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.3" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/protobufjs": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", + "dev": true, + "hasInstallScript": true, + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/protons-runtime": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", + "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", + "dev": true, + "dependencies": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.4.3" + }, + "peerDependencies": { + "uint8arraylist": "^2.3.2" + } + }, + "node_modules/@types/orbit-db/node_modules/uint8arraylist": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", + "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", + "dev": true, + "dependencies": { + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/orbit-db/node_modules/uint8arrays": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", + "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", + "dev": true, + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@types/orbit-db/node_modules/uint8arrays/node_modules/multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prettier": { + "version": "2.7.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.9.5", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/retry": { + "version": "0.12.1", + "license": "MIT" + }, + "node_modules/@types/serve-static": { + "version": "1.15.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/superagent": { + "version": "4.1.18", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/cookiejar": "*", + "@types/node": "*" + } + }, + "node_modules/@types/supertest": { + "version": "2.0.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/superagent": "*" + } + }, + "node_modules/@types/tmp": { + "version": "0.2.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/validator": { + "version": "13.1.4", + "license": "MIT" + }, + "node_modules/@types/ws": { + "version": "8.5.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.15", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "license": "MIT" + }, + "node_modules/@vascosantos/moving-average": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "license": "Apache-2.0" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "license": "ISC" + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/abortable-iterator": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^1.0.2" + } + }, + "node_modules/abstract-level": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/abstract-level/node_modules/level-supports": { + "version": "4.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/abstract-leveldown": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "catering": "^2.0.0", + "is-buffer": "^2.0.5", + "level-concat-iterator": "^3.0.0", + "level-supports": "^2.0.1", + "queue-microtask": "^1.2.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/abstract-logging": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/accepts": { + "version": "1.3.8", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aes-js": { + "version": "3.0.0", + "license": "MIT" + }, + "node_modules/agent-base": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-signal": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.2", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/apg-js": { + "version": "4.1.3", + "license": "BSD-2-Clause" + }, + "node_modules/append-field": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/aproba": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/argparse/node_modules/sprintf-js": { + "version": "1.0.3", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/args": { + "version": "5.0.3", + "license": "MIT", + "dependencies": { + "camelcase": "5.0.0", + "chalk": "2.4.2", + "leven": "2.1.0", + "mri": "1.1.4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/args/node_modules/camelcase": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/array-shuffle": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/array-timsort": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/asap": { + "version": "2.0.6", + "license": "MIT" + }, + "node_modules/asmcrypto.js": { + "version": "2.3.2", + "license": "MIT" + }, + "node_modules/asn1": { + "version": "0.2.6", + "license": "MIT", + "optional": true, + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1js": { + "version": "3.0.5", + "license": "BSD-3-Clause", + "dependencies": { + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/assert": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "es6-object-assign": "^1.1.0", + "is-nan": "^1.2.1", + "object-is": "^1.0.1", + "util": "^0.12.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/async": { + "version": "2.6.3", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "devOptional": true, + "license": "MIT" + }, + "node_modules/atomic-sleep": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.12.0", + "license": "MIT", + "optional": true + }, + "node_modules/babel-jest": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/transform": "^29.4.2", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.4.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^29.4.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/base-x": { + "version": "3.0.9", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/base64-js": { + "version": "1.3.1", + "license": "MIT" + }, + "node_modules/base64id": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": "^4.5.0 || >= 5.9" + } + }, + "node_modules/basic-auth": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bech32": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/benchmark": { + "version": "2.1.4", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.4", + "platform": "^1.3.3" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "license": "MIT", + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bintrees": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/bip66": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/bl": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/blakejs": { + "version": "1.1.0", + "license": "CC0-1.0" + }, + "node_modules/blob-to-it": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "browser-readablestream-to-it": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-store": "^3.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-take": "^2.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-core/node_modules/it-take": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-datastore-adapter": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "blockstore-core": "^3.0.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-drain": "^2.0.0", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-datastore-adapter/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/blockstore-datastore-adapter/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/bn.js": { + "version": "4.11.9", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/boxen": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^7.0.0", + "chalk": "^5.0.1", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-regex": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "6.2.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "5.1.2", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/emoji-regex": { + "version": "9.2.2", + "license": "MIT" + }, + "node_modules/boxen/node_modules/string-width": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/strip-ansi": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/boxen/node_modules/wrap-ansi": { + "version": "8.0.1", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/browser-level": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "abstract-level": "^1.0.2", + "catering": "^2.1.1", + "module-error": "^1.0.2", + "run-parallel-limit": "^1.1.0" + } + }, + "node_modules/browser-readablestream-to-it": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserslist": { + "version": "4.16.6", + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bs58": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "base-x": "^3.0.2" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "license": "MIT", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "license": "MIT" + }, + "node_modules/busboy": { + "version": "1.6.0", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/byte-access": { + "version": "1.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/byteman": { + "version": "1.3.5", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/bytestreamjs": { + "version": "2.0.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/caip": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/call-bind": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001235", + "license": "CC-BY-4.0", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/canonicalize": { + "version": "1.0.8", + "license": "Apache-2.0" + }, + "node_modules/capital-case": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "license": "Apache-2.0", + "optional": true + }, + "node_modules/catering": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cborg": { + "version": "1.10.0", + "license": "Apache-2.0", + "bin": { + "cborg": "cli.js" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/change-case": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.7.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "dev": true, + "license": "MIT" + }, + "node_modules/class-is": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/class-transformer": { + "version": "0.5.1", + "license": "MIT" + }, + "node_modules/class-validator": { + "version": "0.13.1", + "license": "MIT", + "dependencies": { + "@types/validator": "^13.1.3", + "libphonenumber-js": "^1.9.7", + "validator": "^13.5.2" + } + }, + "node_modules/classic-level": { + "version": "1.2.0", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "abstract-level": "^1.0.2", + "catering": "^2.1.0", + "module-error": "^1.0.1", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-table": { + "version": "0.3.6", + "dependencies": { + "colors": "1.0.3" + }, + "engines": { + "node": ">= 0.2.0" + } + }, + "node_modules/cli-table/node_modules/colors": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/cli-table3": { + "version": "0.6.3", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-regexp": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "is-regexp": "^3.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/co": { + "version": "4.6.0", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coercer": { + "version": "1.1.2", + "license": "ISC" + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/color-support": { + "version": "1.1.3", + "license": "ISC", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colorette": { + "version": "1.2.2", + "license": "MIT" + }, + "node_modules/colors": { + "version": "1.4.0", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "devOptional": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "7.2.0", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/comment-json": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/comment-json/node_modules/core-util-is": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/buffer-from": { + "version": "1.1.2", + "license": "MIT" + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.7", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "license": "MIT", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/configstore": { + "version": "6.0.0", + "license": "BSD-2-Clause", + "dependencies": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/yeoman/configstore?sponsor=1" + } + }, + "node_modules/consola": { + "version": "2.15.3", + "license": "MIT" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "license": "ISC" + }, + "node_modules/constant-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-hrtime": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/convert-source-map": { + "version": "1.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/convert-source-map/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.4.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "license": "MIT" + }, + "node_modules/core-js": { + "version": "3.27.2", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/cors": { + "version": "2.8.5", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/corser": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cosmiconfig/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/create-hash": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-env": { + "version": "5.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.5" + }, + "bin": { + "cross-env": "dist/bin/cross-env.js", + "cross-env-shell": "dist/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/cross-env/node_modules/cross-spawn": { + "version": "6.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/cross-env/node_modules/path-key": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/cross-env/node_modules/semver": { + "version": "5.7.1", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/cross-env/node_modules/shebang-command": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cross-env/node_modules/shebang-regex": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cross-env/node_modules/which": { + "version": "1.3.1", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-js": { + "version": "4.1.1", + "license": "MIT" + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dag-jose": { + "version": "4.0.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "multiformats": "^11.0.0" + } + }, + "node_modules/dag-jose-utils": { + "version": "2.0.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@ipld/dag-cbor": "^7.0.1", + "multiformats": "^9.5.1" + } + }, + "node_modules/dag-jose-utils/node_modules/@ipld/dag-cbor": { + "version": "7.0.3", + "license": "(Apache-2.0 AND MIT)", + "dependencies": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "node_modules/dag-jose-utils/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/dag-jose/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/datastore-core": { + "version": "8.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^1.0.4", + "it-drain": "^1.0.4", + "it-filter": "^1.0.2", + "it-map": "^1.0.5", + "it-merge": "^1.0.1", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-take": "^1.0.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-core/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/datastore-core/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-core/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-fs": { + "version": "8.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "datastore-core": "^8.0.1", + "fast-write-atomic": "^0.2.0", + "interface-datastore": "^7.0.0", + "it-glob": "^1.0.1", + "it-map": "^1.0.5", + "it-parallel-batch": "^1.0.9", + "mkdirp": "^1.0.4" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-fs/node_modules/mkdirp": { + "version": "1.0.4", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/datastore-level": { + "version": "9.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "abstract-level": "^1.0.3", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "it-filter": "^2.0.0", + "it-map": "^2.0.0", + "it-sort": "^2.0.0", + "it-take": "^2.0.0", + "level": "^8.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-level/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-level/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-level/node_modules/it-take": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-pubsub": { + "version": "7.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/datastore-pubsub/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/dateformat": { + "version": "4.6.3", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/deferred-leveldown": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "abstract-leveldown": "~6.0.0", + "inherits": "^2.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deferred-leveldown/node_modules/abstract-leveldown": { + "version": "6.0.3", + "license": "MIT", + "dependencies": { + "level-concat-iterator": "~2.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deferred-leveldown/node_modules/level-concat-iterator": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/delay": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/denque": { + "version": "1.5.1", + "license": "Apache-2.0", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "2.0.1", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/dezalgo": { + "version": "1.0.4", + "license": "ISC", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "node_modules/did-jwt": { + "version": "6.11.0", + "license": "Apache-2.0", + "dependencies": { + "@stablelib/ed25519": "^1.0.2", + "@stablelib/random": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.2", + "@stablelib/xchacha20poly1305": "^1.0.1", + "bech32": "^2.0.0", + "canonicalize": "^1.0.8", + "did-resolver": "^4.0.0", + "elliptic": "^6.5.4", + "js-sha3": "^0.8.0", + "multiformats": "^9.6.5", + "uint8arrays": "^3.0.0" + } + }, + "node_modules/did-jwt/node_modules/bech32": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/did-jwt/node_modules/did-resolver": { + "version": "4.0.1", + "license": "Apache-2.0" + }, + "node_modules/did-jwt/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/did-resolver": { + "version": "3.2.2", + "license": "Apache-2.0" + }, + "node_modules/dids": { + "version": "3.4.0", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "@didtools/cacao": "^1.0.0", + "@didtools/pkh-ethereum": "^0.0.1", + "@stablelib/random": "^1.0.1", + "dag-jose-utils": "^2.0.0", + "did-jwt": "^6.0.0", + "did-resolver": "^3.1.5", + "multiformats": "^9.4.10", + "rpc-utils": "^0.6.1", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/dids/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/diff": { + "version": "4.0.2", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-match-patch": { + "version": "1.0.5", + "license": "Apache-2.0" + }, + "node_modules/diff-sequences": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/dns-over-http-resolver": { + "version": "1.2.3", + "license": "MIT", + "dependencies": { + "debug": "^4.3.1", + "native-fetch": "^3.0.0", + "receptacle": "^1.3.2" + } + }, + "node_modules/dns-packet": { + "version": "5.4.0", + "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/domexception": { + "version": "1.0.1", + "license": "MIT", + "optional": true, + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "4.0.2", + "license": "BSD-2-Clause", + "optional": true + }, + "node_modules/dot-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dotenv": { + "version": "8.2.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/drbg.js": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "browserify-aes": "^1.0.6", + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "license": "MIT" + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "license": "MIT", + "optional": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ecc-jsbn/node_modules/jsbn": { + "version": "0.1.1", + "license": "MIT", + "optional": true + }, + "node_modules/ecstatic": { + "version": "3.3.2", + "license": "MIT", + "dependencies": { + "he": "^1.1.1", + "mime": "^1.6.0", + "minimist": "^1.1.0", + "url-join": "^2.0.5" + }, + "bin": { + "ecstatic": "lib/ecstatic.js" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/ejs": { + "version": "3.1.8", + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron": { + "version": "1.8.8", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "^8.0.24", + "electron-download": "^3.0.1", + "extract-zip": "^1.0.3" + }, + "bin": { + "electron": "cli.js" + } + }, + "node_modules/electron-download": { + "version": "3.3.0", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "debug": "^2.2.0", + "fs-extra": "^0.30.0", + "home-path": "^1.0.1", + "minimist": "^1.2.0", + "nugget": "^2.0.0", + "path-exists": "^2.1.0", + "rc": "^1.1.2", + "semver": "^5.3.0", + "sumchecker": "^1.2.0" + }, + "bin": { + "electron-download": "build/cli.js" + } + }, + "node_modules/electron-download/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/electron-download/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/electron-download/node_modules/semver": { + "version": "5.7.1", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/electron-eval": { + "version": "0.9.10", + "license": "MIT", + "optional": true, + "dependencies": { + "cross-spawn": "^5.1.0", + "electron": "^1.6.11", + "ndjson": "^1.5.0" + }, + "optionalDependencies": { + "headless": "https://github.com/paulkernfeld/node-headless/tarball/master" + } + }, + "node_modules/electron-eval/node_modules/cross-spawn": { + "version": "5.1.0", + "license": "MIT", + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/electron-eval/node_modules/lru-cache": { + "version": "4.1.5", + "license": "ISC", + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/electron-eval/node_modules/shebang-command": { + "version": "1.2.0", + "license": "MIT", + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-eval/node_modules/shebang-regex": { + "version": "1.0.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-eval/node_modules/which": { + "version": "1.3.1", + "license": "ISC", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/electron-eval/node_modules/yallist": { + "version": "2.1.2", + "license": "ISC", + "optional": true + }, + "node_modules/electron-fetch": { + "version": "1.7.4", + "license": "MIT", + "dependencies": { + "encoding": "^0.1.13" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.3.749", + "license": "ISC" + }, + "node_modules/electron-webrtc": { + "version": "0.3.0", + "license": "MIT", + "optional": true, + "dependencies": { + "debug": "^2.2.0", + "electron-eval": "^0.9.0", + "get-browser-rtc": "^1.0.2", + "hat": "^0.0.3" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/electron-webrtc/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/electron-webrtc/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/electron/node_modules/@types/node": { + "version": "8.10.66", + "license": "MIT", + "optional": true + }, + "node_modules/elliptic": { + "version": "6.5.4", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/emittery": { + "version": "0.13.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "license": "MIT", + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.2", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/engine.io": { + "version": "6.4.0", + "license": "MIT", + "dependencies": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.11.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/engine.io-client": { + "version": "6.2.3", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.2.3", + "xmlhttprequest-ssl": "~2.0.0" + } + }, + "node_modules/engine.io-client/node_modules/ws": { + "version": "8.2.3", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/engine.io-parser": { + "version": "5.0.4", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/envinfo": { + "version": "7.8.1", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/err-code": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/errno": { + "version": "0.1.8", + "license": "MIT", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "license": "MIT" + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es6-object-assign": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/es6-promise": { + "version": "4.2.8", + "license": "MIT", + "optional": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-goat": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ethers": { + "version": "5.7.2", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/base64": "5.7.0", + "@ethersproject/basex": "5.7.0", + "@ethersproject/bignumber": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/constants": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/networks": "5.7.1", + "@ethersproject/pbkdf2": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/rlp": "5.7.0", + "@ethersproject/sha2": "5.7.0", + "@ethersproject/signing-key": "5.7.0", + "@ethersproject/solidity": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/units": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/web": "5.7.1", + "@ethersproject/wordlists": "5.7.0" + } + }, + "node_modules/event-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/cookie": { + "version": "0.5.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.7", + "license": "MIT" + }, + "node_modules/extend": { + "version": "3.0.2", + "license": "MIT", + "optional": true + }, + "node_modules/external-editor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "dev": true, + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/extract-zip": { + "version": "1.7.0", + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + } + }, + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "optional": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "license": "MIT" + }, + "node_modules/fast-fifo": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "license": "MIT" + }, + "node_modules/fast-redact": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "license": "MIT" + }, + "node_modules/fast-write-atomic": { + "version": "0.2.1", + "license": "MIT" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "license": "MIT", + "optional": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/fetch-mock": { + "version": "9.11.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.0.0", + "@babel/runtime": "^7.0.0", + "core-js": "^3.0.0", + "debug": "^4.1.1", + "glob-to-regexp": "^0.4.0", + "is-subset": "^0.1.1", + "lodash.isequal": "^4.5.0", + "path-to-regexp": "^2.2.1", + "querystring": "^0.2.0", + "whatwg-url": "^6.5.0" + }, + "engines": { + "node": ">=4.0.0" + }, + "funding": { + "type": "charity", + "url": "https://www.justgiving.com/refugee-support-europe" + }, + "peerDependencies": { + "node-fetch": "*" + }, + "peerDependenciesMeta": { + "node-fetch": { + "optional": true + } + } + }, + "node_modules/fetch-mock-jest": { + "version": "1.5.1", + "dev": true, + "license": "MIT", + "dependencies": { + "fetch-mock": "^9.11.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "funding": { + "type": "charity", + "url": "https://www.justgiving.com/refugee-support-europe" + }, + "peerDependencies": { + "node-fetch": "*" + }, + "peerDependenciesMeta": { + "node-fetch": { + "optional": true + } + } + }, + "node_modules/fetch-mock/node_modules/tr46": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/fetch-mock/node_modules/webidl-conversions": { + "version": "4.0.2", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/fetch-mock/node_modules/whatwg-url": { + "version": "6.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-type": { + "version": "18.2.0", + "license": "MIT", + "dependencies": { + "readable-web-to-node-stream": "^3.0.2", + "strtok3": "^7.0.0", + "token-types": "^5.0.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/filelist": { + "version": "1.0.4", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "10.0.6", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 10.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/flatstr": { + "version": "1.0.12", + "license": "MIT" + }, + "node_modules/fnv1a": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/follow-redirects": { + "version": "1.14.1", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreach": { + "version": "2.0.5", + "license": "MIT" + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "8.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">=12.13.0", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "typescript": ">3.6.0", + "webpack": "^5.11.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/jsonfile": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/form-data": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "2.1.4", + "license": "MIT", + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/formidable": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "dezalgo": "^1.0.4", + "hexoid": "^1.0.0", + "once": "^1.4.0", + "qs": "^6.11.0" + }, + "funding": { + "url": "https://ko-fi.com/tunnckoCore/commissions" + } + }, + "node_modules/freeport-promise": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "0.30.0", + "license": "MIT", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" + } + }, + "node_modules/fs-extra/node_modules/rimraf": { + "version": "2.7.1", + "license": "ISC", + "optional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.4", + "dev": true, + "license": "Unlicense" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/function-timeout": { + "version": "0.1.1", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gar": { + "version": "1.0.4", + "license": "MIT" + }, + "node_modules/gauge": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-browser-rtc": { + "version": "1.1.0", + "license": "MIT", + "optional": true + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-folder-size": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "gar": "^1.0.4" + }, + "bin": { + "get-folder-size": "bin/get-folder-size.js" + }, + "engines": { + "node": ">=14.13.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-iterator": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-port": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "license": "BSD-2-Clause" + }, + "node_modules/global-dirs": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/go-ipfs": { + "name": "mocked-go-ipfs", + "version": "0.17.0", + "license": "ISC" + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "license": "ISC" + }, + "node_modules/hamt-sharding": { + "version": "3.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "sparse-array": "^1.3.1", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/hamt-sharding/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/hapi-pino": { + "version": "8.5.0", + "license": "MIT", + "dependencies": { + "@hapi/hoek": "^9.0.0", + "abstract-logging": "^2.0.0", + "pino": "^6.0.0", + "pino-pretty": "^4.0.0" + } + }, + "node_modules/har-schema": { + "version": "2.0.0", + "license": "ISC", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "license": "MIT", + "optional": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-own-prop": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "license": "ISC" + }, + "node_modules/has-yarn": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hashlru": { + "version": "2.3.0", + "license": "MIT" + }, + "node_modules/hat": { + "version": "0.0.3", + "license": "MIT/X11", + "optional": true + }, + "node_modules/he": { + "version": "1.2.0", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/header-case": { + "version": "2.0.4", + "license": "MIT", + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/headless": { + "version": "1.1.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/hexoid": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/home-path": { + "version": "1.0.7", + "license": "MIT", + "optional": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/http-cache-semantics": { + "version": "4.1.0", + "license": "BSD-2-Clause" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-server": { + "version": "0.12.3", + "license": "MIT", + "dependencies": { + "basic-auth": "^1.0.3", + "colors": "^1.4.0", + "corser": "^2.0.1", + "ecstatic": "^3.3.2", + "http-proxy": "^1.18.0", + "minimist": "^1.2.5", + "opener": "^1.5.1", + "portfinder": "^1.0.25", + "secure-compare": "3.0.1", + "union": "~0.5.0" + }, + "bin": { + "hs": "bin/http-server", + "http-server": "bin/http-server" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/image-size": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-lazy": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/path-exists": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "license": "ISC" + }, + "node_modules/inquirer": { + "version": "8.2.5", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/interface-blockstore": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "interface-store": "^3.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/interface-datastore": { + "version": "7.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "interface-store": "^3.0.0", + "nanoid": "^4.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/interface-datastore/node_modules/nanoid": { + "version": "4.0.0", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/interface-datastore/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/interface-store": { + "version": "3.0.4", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "license": "MIT" + }, + "node_modules/ip-regex": { + "version": "4.3.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ipfs": { + "version": "0.66.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "ipfs-cli": "^0.16.0", + "ipfs-core": "^0.18.0", + "semver": "^7.3.2", + "update-notifier": "^6.0.0" + }, + "bin": { + "jsipfs": "src/cli.js" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "optionalDependencies": { + "electron-webrtc": "^0.3.0", + "wrtc": "^0.4.6" + } + }, + "node_modules/ipfs-bitswap": { + "version": "15.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/topology": "^4.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@vascosantos/moving-average": "^1.1.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "blockstore-core": "^3.0.0", + "interface-blockstore": "^4.0.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "just-debounce-it": "^3.0.1", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "readable-stream": "^4.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0", + "varint-decoder": "^1.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/ipfs-bitswap/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/ipfs-bitswap/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-bitswap/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/readable-stream": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/ipfs-bitswap/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli": { + "version": "0.16.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "byteman": "^1.3.5", + "execa": "^6.1.0", + "get-folder-size": "^4.0.0", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-daemon": "^0.16.0", + "ipfs-http-client": "^60.0.0", + "ipfs-utils": "^9.0.13", + "it-concat": "^3.0.1", + "it-merge": "^2.0.0", + "it-pipe": "^2.0.3", + "it-split": "^2.0.0", + "it-tar": "^6.0.0", + "jsondiffpatch": "^0.4.1", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "pretty-bytes": "^6.0.0", + "progress": "^2.0.3", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2", + "yargs": "^17.4.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/execa": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/ipfs-cli/node_modules/human-signals": { + "version": "3.0.1", + "license": "Apache-2.0", + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/ipfs-cli/node_modules/is-stream": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-cli/node_modules/mimic-fn": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/npm-run-path": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/onetime": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/path-key": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/strip-final-newline": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-cli/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core": { + "version": "0.18.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@chainsafe/libp2p-noise": "^11.0.0", + "@ipld/car": "^5.0.0", + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/bootstrap": "^6.0.0", + "@libp2p/crypto": "^1.0.0", + "@libp2p/delegated-content-routing": "^4.0.0", + "@libp2p/delegated-peer-routing": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.6", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/kad-dht": "^7.0.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/mplex": "^7.1.1", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/websockets": "^5.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.1.5", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "@multiformats/murmur3": "^2.0.0", + "any-signal": "^3.0.0", + "array-shuffle": "^3.0.0", + "blockstore-core": "^3.0.0", + "browser-readablestream-to-it": "^2.0.0", + "dag-jose": "^4.0.0", + "datastore-core": "^8.0.1", + "datastore-pubsub": "^7.0.0", + "dlv": "^1.1.3", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "hashlru": "^2.3.0", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-bitswap": "^15.0.0", + "ipfs-core-config": "^0.7.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-client": "^60.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-unixfs-exporter": "^10.0.0", + "ipfs-unixfs-importer": "^12.0.0", + "ipfs-utils": "^9.0.9", + "ipns": "^5.0.1", + "is-domain-name": "^1.0.1", + "is-ipfs": "^8.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-tar": "^6.0.0", + "it-to-buffer": "^3.0.0", + "just-safe-set": "^4.0.2", + "libp2p": "^0.42.0", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "pako": "^2.0.4", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config": { + "version": "0.7.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@chainsafe/libp2p-gossipsub": "^6.0.0", + "@libp2p/floodsub": "^6.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/mdns": "^6.0.0", + "@libp2p/prometheus-metrics": "^1.0.1", + "@libp2p/tcp": "^6.0.2", + "@libp2p/webrtc-star": "^6.0.0", + "blockstore-datastore-adapter": "^5.0.0", + "datastore-core": "^8.0.1", + "datastore-fs": "^8.0.0", + "datastore-level": "^9.0.0", + "err-code": "^3.0.1", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-utils": "^9.0.13", + "is-ipfs": "^8.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-foreach": "^1.0.0", + "p-queue": "^7.2.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-config/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-core-config/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types": { + "version": "0.14.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/node": "^18.0.0", + "interface-datastore": "^7.0.0", + "ipfs-unixfs": "^9.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-types/node_modules/@types/node": { + "version": "18.11.19", + "license": "MIT" + }, + "node_modules/ipfs-core-utils": { + "version": "0.18.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "any-signal": "^3.0.0", + "blob-to-it": "^2.0.0", + "browser-readablestream-to-it": "^2.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-utils": "^9.0.13", + "it-all": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "nanoid": "^4.0.0", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-utils/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-utils/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-utils/node_modules/nanoid": { + "version": "4.0.1", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/ipfs-core-utils/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-daemon": { + "version": "0.16.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "@libp2p/webrtc-star": "^6.0.0", + "@mapbox/node-pre-gyp": "^1.0.5", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-server": "^0.12.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-http-server": "^0.15.0", + "ipfs-utils": "^9.0.13", + "libp2p": "^0.42.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "optionalDependencies": { + "electron-webrtc": "^0.3.0", + "prom-client": "^14.0.1", + "wrtc": "^0.4.6" + } + }, + "node_modules/ipfs-grpc-protocol": { + "version": "0.8.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server": { + "version": "0.12.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@grpc/grpc-js": "^1.1.8", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "change-case": "^4.1.1", + "coercer": "^1.1.2", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-protocol": "^0.8.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "nanoid": "^4.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "ws": "^8.5.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-grpc-server/node_modules/nanoid": { + "version": "4.0.1", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/ipfs-grpc-server/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-grpc-server/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client": { + "version": "60.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "any-signal": "^3.0.0", + "dag-jose": "^4.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-utils": "^9.0.13", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-client/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-gateway": { + "version": "0.13.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/logger": "^2.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-http-response": "^6.0.0", + "is-ipfs": "^8.0.0", + "it-last": "^2.0.0", + "it-to-stream": "^1.0.0", + "joi": "^17.2.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-gateway/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-response": { + "version": "6.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/logger": "^2.0.0", + "ejs": "^3.1.6", + "file-type": "^18.0.0", + "filesize": "^10.0.5", + "it-map": "^2.0.0", + "it-reader": "^6.0.1", + "it-to-stream": "^1.0.0", + "mime-types": "^2.1.30", + "p-try-each": "^1.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-response/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server": { + "version": "0.15.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@hapi/boom": "^9.1.0", + "@hapi/content": "^5.0.2", + "@hapi/hapi": "^20.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "any-signal": "^3.0.0", + "dlv": "^1.1.3", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-multipart": "^3.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reduce": "^2.0.0", + "joi": "^17.2.1", + "just-safe-set": "^4.0.2", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "stream-to-it": "^0.2.2", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "optionalDependencies": { + "prom-client": "^14.0.1" + } + }, + "node_modules/ipfs-http-server/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-http-server/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-log": { + "version": "5.4.2", + "license": "MIT", + "dependencies": { + "json-stringify-deterministic": "^1.0.1", + "multihashing-async": "^2.0.1", + "orbit-db-identity-provider": "^0.3.1", + "orbit-db-io": "^1.1.2", + "p-do-whilst": "^1.1.0", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-whilst": "^2.1.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/ipfs-log/node_modules/iso-random-stream": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "readable-stream": "^3.4.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ipfs-log/node_modules/libp2p-crypto": { + "version": "0.16.4", + "license": "MIT", + "dependencies": { + "asmcrypto.js": "^2.3.2", + "asn1.js": "^5.0.1", + "async": "^2.6.1", + "bn.js": "^4.11.8", + "browserify-aes": "^1.2.0", + "bs58": "^4.0.1", + "iso-random-stream": "^1.1.0", + "keypair": "^1.0.1", + "libp2p-crypto-secp256k1": "~0.3.0", + "multihashing-async": "~0.5.1", + "node-forge": "^0.10.0", + "pem-jwk": "^2.0.0", + "protons": "^1.0.1", + "rsa-pem-to-jwk": "^1.1.3", + "tweetnacl": "^1.0.0", + "ursa-optional": "~0.10.0" + }, + "engines": { + "node": ">=10.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/ipfs-log/node_modules/libp2p-crypto/node_modules/multihashing-async": { + "version": "0.5.2", + "license": "MIT", + "dependencies": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/ipfs-log/node_modules/multibase": { + "version": "0.7.0", + "license": "MIT", + "dependencies": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "node_modules/ipfs-log/node_modules/multibase/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/ipfs-log/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/ipfs-log/node_modules/multihashes": { + "version": "0.4.21", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + } + }, + "node_modules/ipfs-log/node_modules/multihashes/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/ipfs-log/node_modules/orbit-db-identity-provider": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "ethers": "^5.0.8", + "orbit-db-keystore": "~0.3.5" + } + }, + "node_modules/ipfs-log/node_modules/orbit-db-io": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/ipfs-log/node_modules/orbit-db-keystore": { + "version": "0.3.5", + "license": "MIT", + "dependencies": { + "elliptic": "^6.5.3", + "level": "~5.0.1", + "leveldown": "~5.1.1", + "levelup": "~4.1.0", + "libp2p-crypto": "^0.16.0", + "libp2p-crypto-secp256k1": "^0.3.0", + "lru": "^3.1.0", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1" + } + }, + "node_modules/ipfs-log/node_modules/tweetnacl": { + "version": "1.0.3", + "license": "Unlicense" + }, + "node_modules/ipfs-log/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/ipfs-pubsub-1on1": { + "version": "0.1.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.1" + } + }, + "node_modules/ipfs-pubsub-peer-monitor": { + "version": "0.0.10", + "license": "MIT", + "dependencies": { + "p-forever": "^2.1.0" + } + }, + "node_modules/ipfs-repo": { + "version": "17.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "bytes": "^3.1.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-repo-migrations": "^15.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "just-safe-get": "^4.1.1", + "just-safe-set": "^4.1.1", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "proper-lockfile": "^4.0.0", + "quick-lru": "^6.1.1", + "sort-keys": "^5.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo-migrations": { + "version": "15.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "fnv1a": "^1.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-length": "^2.0.0", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo-migrations/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo-migrations/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-repo-migrations/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-repo-migrations/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-parallel-batch": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-batch": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-repo/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-repo/node_modules/quick-lru": { + "version": "6.1.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-repo/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "err-code": "^3.0.1", + "protobufjs": "^7.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter": { + "version": "10.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/p-queue": { + "version": "7.3.3", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfs-unixfs-exporter/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer": { + "version": "12.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-batch": "^2.0.0", + "it-first": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "rabin-wasm": "^0.1.4", + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/it-parallel-batch": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-batch": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs-importer/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-unixfs/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/ipfs-unixfs/node_modules/protobufjs": { + "version": "7.2.1", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ipfs-utils": { + "version": "9.0.14", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "any-signal": "^3.0.0", + "browser-readablestream-to-it": "^1.0.0", + "buffer": "^6.0.1", + "electron-fetch": "^1.7.2", + "err-code": "^3.0.1", + "is-electron": "^2.2.0", + "iso-url": "^1.1.5", + "it-all": "^1.0.4", + "it-glob": "^1.0.1", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "nanoid": "^3.1.20", + "native-fetch": "^3.0.0", + "node-fetch": "^2.6.8", + "react-native-fetch-api": "^3.0.0", + "stream-to-it": "^0.2.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-utils/node_modules/browser-readablestream-to-it": { + "version": "1.0.3", + "license": "ISC" + }, + "node_modules/ipfsd-ctl": { + "version": "12.2.2", + "license": "Apache-2.0 OR MIT", + "peer": true, + "dependencies": { + "@hapi/boom": "^10.0.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/interface-peer-id": "^1.0.4", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "execa": "^6.1.0", + "ipfs-utils": "^9.0.1", + "joi": "^17.2.1", + "merge-options": "^3.0.1", + "nanoid": "^4.0.0", + "p-wait-for": "^5.0.0", + "temp-write": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfsd-ctl/node_modules/@hapi/boom": { + "version": "10.0.0", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "@hapi/hoek": "10.x.x" + } + }, + "node_modules/ipfsd-ctl/node_modules/@hapi/hoek": { + "version": "10.0.1", + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/ipfsd-ctl/node_modules/execa": { + "version": "6.1.0", + "license": "MIT", + "peer": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/ipfsd-ctl/node_modules/human-signals": { + "version": "3.0.1", + "license": "Apache-2.0", + "peer": true, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/ipfsd-ctl/node_modules/is-stream": { + "version": "3.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/mimic-fn": { + "version": "4.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/nanoid": { + "version": "4.0.0", + "license": "MIT", + "peer": true, + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/ipfsd-ctl/node_modules/npm-run-path": { + "version": "5.1.0", + "license": "MIT", + "peer": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/onetime": { + "version": "6.0.0", + "license": "MIT", + "peer": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/path-key": { + "version": "4.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/strip-final-newline": { + "version": "3.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ipfsd-ctl/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "peer": true, + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipns": { + "version": "5.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "cborg": "^1.3.3", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "timestamp-nano": "^1.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipns/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipns/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "dev": true, + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/is-callable": { + "version": "1.2.4", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-domain-name": { + "version": "1.0.1", + "license": "ISC" + }, + "node_modules/is-electron": { + "version": "2.2.1", + "license": "MIT" + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "license": "MIT", + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-ip": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "ip-regex": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-ipfs": { + "version": "8.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "iso-url": "^1.1.3", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/is-ipfs/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/is-nan": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-node": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-npm": { + "version": "6.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-promise": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-subset": { + "version": "0.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.8", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array/node_modules/es-abstract": { + "version": "1.19.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakref": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-yarn-global": { + "version": "0.4.1", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/iso-constants": { + "version": "0.1.2", + "hasInstallScript": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/iso-random-stream": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "events": "^3.3.0", + "readable-stream": "^3.4.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/iso-url": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/isobject": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "license": "MIT", + "optional": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/it-all": { + "version": "1.0.6", + "license": "ISC" + }, + "node_modules/it-batch": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-batched-bytes": { + "version": "1.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.4.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-batched-bytes/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-concat": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-concat/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-drain": { + "version": "1.0.5", + "license": "ISC" + }, + "node_modules/it-filter": { + "version": "1.0.3", + "license": "ISC" + }, + "node_modules/it-first": { + "version": "1.0.7", + "license": "ISC" + }, + "node_modules/it-foreach": { + "version": "1.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-glob": { + "version": "1.0.2", + "license": "ISC", + "dependencies": { + "@types/minimatch": "^3.0.4", + "minimatch": "^3.0.4" + } + }, + "node_modules/it-handshake": { + "version": "4.1.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-handshake/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/it-handshake/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-last": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-length": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-length-prefixed": { + "version": "8.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "err-code": "^3.0.1", + "it-stream-types": "^1.0.4", + "uint8-varint": "^1.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-length-prefixed/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-map": { + "version": "1.0.6", + "license": "ISC" + }, + "node_modules/it-merge": { + "version": "1.0.4", + "license": "ISC", + "dependencies": { + "it-pushable": "^1.4.0" + } + }, + "node_modules/it-multipart": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "formidable": "^2.0.1", + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-multipart/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pair": { + "version": "2.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-stream-types": "^1.0.3", + "p-defer": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pair/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-parallel": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "p-defer": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-parallel-batch": { + "version": "1.0.11", + "license": "ISC", + "dependencies": { + "it-batch": "^1.0.9" + } + }, + "node_modules/it-parallel-batch/node_modules/it-batch": { + "version": "1.0.9", + "license": "ISC" + }, + "node_modules/it-parallel/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-pb-stream": { + "version": "2.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-peekable": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pipe": { + "version": "2.0.5", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-merge": "^2.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.3" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pipe/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pipe/node_modules/it-pushable": { + "version": "3.1.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-pushable": { + "version": "1.4.2", + "license": "MIT", + "dependencies": { + "fast-fifo": "^1.0.0" + } + }, + "node_modules/it-reader": { + "version": "6.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-reduce": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-sort": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-all": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-sort/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-split": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arraylist": "^2.4.1" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-stream-types": { + "version": "1.0.4", + "license": "Apache-2.0 OR MIT" + }, + "node_modules/it-take": { + "version": "1.0.2", + "license": "ISC" + }, + "node_modules/it-tar": { + "version": "6.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "iso-constants": "^0.1.2", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "it-to-buffer": "^3.0.0", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-tar/node_modules/p-defer": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/it-tar/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-to-buffer": { + "version": "3.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-to-buffer/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-to-stream": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "fast-fifo": "^1.0.0", + "get-iterator": "^1.0.2", + "p-defer": "^3.0.0", + "p-fifo": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "node_modules/it-ws": { + "version": "5.0.6", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "event-iterator": "^2.0.0", + "iso-url": "^1.1.2", + "it-stream-types": "^1.0.2", + "uint8arrays": "^4.0.2", + "ws": "^8.4.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-ws/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-ws/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/iterare": { + "version": "1.2.1", + "license": "ISC", + "engines": { + "node": ">=6" + } + }, + "node_modules/jake": { + "version": "10.8.5", + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/async": { + "version": "3.2.4", + "license": "MIT" + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.4.2", + "@jest/types": "^29.4.2", + "import-local": "^3.0.2", + "jest-cli": "^29.4.2" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "p-limit": "^3.1.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.4.2", + "@jest/types": "^29.4.2", + "babel-jest": "^29.4.2", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-config/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "jest-util": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-matcher-utils": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.4.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/@babel/code-frame": { + "version": "7.18.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-util": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-regex-util": "^29.4.2", + "jest-snapshot": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/resolve.exports": { + "version": "2.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.4.2", + "@jest/environment": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-leak-detector": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-util": "^29.4.2", + "jest-watcher": "^29.4.2", + "jest-worker": "^29.4.2", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/buffer-from": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runtime": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/globals": "^29.4.2", + "@jest/source-map": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "semver": "^7.3.5", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/strip-bom": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "natural-compare": "^1.4.0", + "pretty-format": "^29.4.2", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.4.2", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "leven": "^3.1.0", + "pretty-format": "^29.4.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/jest-get-type": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/leven": { + "version": "3.1.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.2.0", + "devOptional": true, + "license": "MIT" + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "29.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.4.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "29.4.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.4.2", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jmespath": { + "version": "0.15.0", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/joi": { + "version": "17.8.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/address": "^5.1.0", + "@hapi/formula": "^3.0.2", + "@hapi/hoek": "^11.0.2", + "@hapi/pinpoint": "^2.0.1", + "@hapi/tlds": "^1.0.1", + "@hapi/topo": "^6.0.1" + } + }, + "node_modules/joi/node_modules/@hapi/hoek": { + "version": "11.0.2", + "license": "BSD-3-Clause" + }, + "node_modules/joi/node_modules/@hapi/topo": { + "version": "6.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^11.0.2" + } + }, + "node_modules/joycon": { + "version": "2.2.5", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "2.5.2", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "license": "MIT" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "license": "(AFL-2.1 OR BSD-3-Clause)", + "optional": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "license": "MIT" + }, + "node_modules/json-stringify-deterministic": { + "version": "1.0.8", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "license": "ISC", + "optional": true + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/jsondiffpatch": { + "version": "0.4.1", + "license": "MIT", + "dependencies": { + "chalk": "^2.3.0", + "diff-match-patch": "^1.0.0" + }, + "bin": { + "jsondiffpatch": "bin/jsondiffpatch" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/jsonfile": { + "version": "2.4.0", + "license": "MIT", + "optional": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/just-debounce-it": { + "version": "3.2.0", + "license": "MIT" + }, + "node_modules/just-safe-get": { + "version": "4.2.0", + "license": "MIT" + }, + "node_modules/just-safe-set": { + "version": "4.2.1", + "license": "MIT" + }, + "node_modules/k-bucket": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/keypair": { + "version": "1.0.4", + "license": "BSD / GPL" + }, + "node_modules/keyv": { + "version": "4.5.2", + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klaw": { + "version": "1.3.1", + "license": "MIT", + "optional": true, + "optionalDependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/latest-version": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "package-json": "^8.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/level": { + "version": "8.0.0", + "license": "MIT", + "dependencies": { + "browser-level": "^1.0.1", + "classic-level": "^1.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/level" + } + }, + "node_modules/level-concat-iterator": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "catering": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/level-errors": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "errno": "~0.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-iterator-stream": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.4.0", + "xtend": "^4.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-supports": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/level-transcoder": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "module-error": "^1.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/leveldown": { + "version": "6.1.1", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "abstract-leveldown": "^7.2.0", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/levelup": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "deferred-leveldown": "~5.1.0", + "level-errors": "~2.0.0", + "level-iterator-stream": "~4.0.0", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/libp2p": { + "version": "0.42.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@achingbrain/nat-port-mapper": "^1.0.3", + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-encrypter": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-libp2p": "^1.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-routing": "^1.0.1", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/multistream-select": "^3.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/peer-store": "^6.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-foreach": "^1.0.0", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-pair": "^2.0.2", + "it-pipe": "^2.0.3", + "it-sort": "^2.0.0", + "it-stream-types": "^1.0.4", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "node-forge": "^1.3.1", + "p-fifo": "^1.0.0", + "p-retry": "^5.0.0", + "p-settle": "^5.0.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "rate-limiter-flexible": "^2.3.11", + "retimer": "^3.0.0", + "sanitize-filename": "^1.6.3", + "set-delayed-interval": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2", + "wherearewe": "^2.0.0", + "xsalsa20": "^1.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p-crypto": { + "version": "0.21.2", + "license": "MIT", + "dependencies": { + "@noble/ed25519": "^1.5.1", + "@noble/secp256k1": "^1.3.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.0", + "multiformats": "^9.4.5", + "node-forge": "^1.2.1", + "protobufjs": "^6.11.2", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "async": "^2.6.2", + "bs58": "^4.0.1", + "multihashing-async": "~0.6.0", + "nodeify": "^1.0.1", + "safe-buffer": "^5.1.2", + "secp256k1": "^3.6.2" + }, + "engines": { + "node": ">=6.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/multibase": { + "version": "0.7.0", + "license": "MIT", + "dependencies": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/multihashes": { + "version": "0.4.21", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/multihashing-async": { + "version": "0.6.0", + "license": "MIT", + "dependencies": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/secp256k1": { + "version": "3.8.0", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "bindings": "^1.5.0", + "bip66": "^1.1.5", + "bn.js": "^4.11.8", + "create-hash": "^1.2.0", + "drbg.js": "^1.0.1", + "elliptic": "^6.5.2", + "nan": "^2.14.0", + "safe-buffer": "^5.1.2" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/libp2p-crypto-secp256k1/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/libp2p-crypto/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/libp2p-crypto/node_modules/node-forge": { + "version": "1.3.1", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/libp2p/node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/@libp2p/peer-record": { + "version": "5.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/abortable-iterator": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "node_modules/libp2p/node_modules/get-iterator": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/libp2p/node_modules/ip-regex": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/libp2p/node_modules/ipaddr.js": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/libp2p/node_modules/it-all": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-drain": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-filter": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-first": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-map": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-merge": { + "version": "2.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "it-pushable": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/it-pushable": { + "version": "3.1.0", + "license": "MIT" + }, + "node_modules/libp2p/node_modules/node-forge": { + "version": "1.3.1", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/libp2p/node_modules/private-ip": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/libp2p/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/uint8arrays/node_modules/multiformats": { + "version": "10.0.3", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libp2p/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/libphonenumber-js": { + "version": "1.9.44", + "license": "MIT" + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "dev": true, + "license": "MIT" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "license": "MIT", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "2.2.3", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "license": "MIT" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logplease": { + "version": "1.2.15", + "license": "MIT" + }, + "node_modules/long": { + "version": "4.0.0", + "license": "Apache-2.0" + }, + "node_modules/longbits": { + "version": "1.1.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "byte-access": "^1.0.1", + "uint8arraylist": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/luxon": { + "version": "1.28.0", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/macos-release": { + "version": "2.5.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/magic-string": { + "version": "0.30.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "dev": true, + "license": "ISC" + }, + "node_modules/makeerror": { + "version": "1.0.12", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "dev": true, + "license": "Unlicense", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/merge-options": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/methods": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "license": "MIT", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.51.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.34", + "license": "MIT", + "dependencies": { + "mime-db": "1.51.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.0.4", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "4.2.8", + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mock-fs": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/module-error": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/mortice": { + "version": "3.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "nanoid": "^4.0.0", + "observable-webworkers": "^2.0.1", + "p-queue": "^7.2.0", + "p-timeout": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/mortice/node_modules/nanoid": { + "version": "4.0.0", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/mortice/node_modules/p-queue": { + "version": "7.3.0", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mortice/node_modules/p-queue/node_modules/p-timeout": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mortice/node_modules/p-timeout": { + "version": "6.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mri": { + "version": "1.1.4", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "license": "MIT" + }, + "node_modules/multer": { + "version": "1.4.4-lts.1", + "license": "MIT", + "dependencies": { + "append-field": "^1.0.0", + "busboy": "^1.0.0", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.4", + "object-assign": "^4.1.1", + "type-is": "^1.6.4", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/multiaddr": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "dns-over-http-resolver": "^1.2.3", + "err-code": "^3.0.1", + "is-ip": "^3.1.0", + "multiformats": "^9.4.5", + "uint8arrays": "^3.0.0", + "varint": "^6.0.0" + } + }, + "node_modules/multiaddr/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/multibase": { + "version": "4.0.6", + "license": "MIT", + "dependencies": { + "@multiformats/base-x": "^4.0.1" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multiformats": { + "version": "11.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/multihashes": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "multibase": "^4.0.1", + "uint8arrays": "^3.0.0", + "varint": "^5.0.2" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/multihashes/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/multihashing-async": { + "version": "2.1.4", + "license": "MIT", + "dependencies": { + "blakejs": "^1.1.0", + "err-code": "^3.0.0", + "js-sha3": "^0.8.0", + "multihashes": "^4.0.1", + "murmurhash3js-revisited": "^3.0.0", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/murmurhash3js": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/murmurhash3js-revisited": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "dev": true, + "license": "ISC" + }, + "node_modules/nan": { + "version": "2.17.0", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.4", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-macros": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/native-fetch": { + "version": "3.0.0", + "license": "MIT", + "peerDependencies": { + "node-fetch": "*" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/ndjson": { + "version": "1.5.0", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "json-stringify-safe": "^5.0.1", + "minimist": "^1.2.0", + "split2": "^2.1.0", + "through2": "^2.0.3" + }, + "bin": { + "ndjson": "cli.js" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "license": "MIT" + }, + "node_modules/netmask": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/no-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/node-addon-api": { + "version": "2.0.2", + "license": "MIT" + }, + "node_modules/node-emoji": { + "version": "1.11.0", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/node-fetch": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-gyp-build": { + "version": "4.3.0", + "license": "MIT", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "1.1.77", + "license": "MIT" + }, + "node_modules/nodeify": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "is-promise": "~1.0.0", + "promise": "~1.3.0" + } + }, + "node_modules/nopt": { + "version": "5.0.0", + "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npmlog": { + "version": "5.0.1", + "license": "ISC", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/nugget": { + "version": "2.2.0", + "license": "BSD", + "optional": true, + "dependencies": { + "debug": "^2.1.3", + "minimist": "^1.1.0", + "pretty-bytes": "^4.0.2", + "progress-stream": "^1.1.0", + "request": "^2.45.0", + "single-line-log": "^1.1.2", + "throttleit": "0.0.2" + }, + "bin": { + "nugget": "bin.js" + } + }, + "node_modules/nugget/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/nugget/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/nugget/node_modules/pretty-bytes": { + "version": "4.0.2", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.11.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "0.4.0", + "license": "MIT", + "optional": true + }, + "node_modules/object.assign": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.assign/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/observable-webworkers": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optimist": { + "version": "0.3.7", + "license": "MIT/X11", + "dependencies": { + "wordwrap": "~0.0.2" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ora/node_modules/bl": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/ora/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ora/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/orbit-db": { + "version": "0.29.0", + "license": "MIT", + "dependencies": { + "ipfs-pubsub-1on1": "^0.1.0", + "is-node": "^1.0.2", + "logplease": "^1.2.15", + "orbit-db-access-controllers": "^0.4.0", + "orbit-db-cache": "^0.5.0", + "orbit-db-counterstore": "^2.0.0", + "orbit-db-docstore": "^2.0.0", + "orbit-db-eventstore": "^2.0.0", + "orbit-db-feedstore": "^2.0.0", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "orbit-db-keystore": "^2.0.0", + "orbit-db-kvstore": "^2.0.0", + "orbit-db-pubsub": "^0.7.0", + "orbit-db-storage-adapter": "^0.9.0", + "orbit-db-store": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/orbit-db-access-controllers": { + "version": "0.4.0", + "license": "MIT", + "dependencies": { + "orbit-db-io": "^3.0.0", + "p-map-series": "^3.0.0", + "safe-buffer": "^5.2.1" + } + }, + "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db-access-controllers/node_modules/@ipld/dag-pb": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db-access-controllers/node_modules/orbit-db-io": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/orbit-db-identity-provider": { + "version": "0.5.0", + "license": "MIT", + "dependencies": { + "@ethersproject/wallet": "^5.7.0", + "assert": "^2.0.0", + "dids": "^3.4.0", + "lru": "^3.1.0", + "orbit-db-keystore": "^2.0.0", + "path-browserify": "^1.0.1", + "stream-browserify": "^3.0.0", + "uint8arrays": "^4.0.3" + } + }, + "node_modules/orbit-db-identity-provider/node_modules/uint8arrays": { + "version": "4.0.3", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db-io": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/orbit-db-io/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/orbit-db-keystore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "@libp2p/crypto": "^1.0.11", + "elliptic": "^6.5.4", + "level": "^8.0.0", + "lru": "^3.1.0", + "mkdirp": "^2.1.1", + "safe-buffer": "^5.2.1", + "secp256k1": "^5.0.0" + } + }, + "node_modules/orbit-db-keystore/node_modules/mkdirp": { + "version": "2.1.6", + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/orbit-db-keystore/node_modules/node-addon-api": { + "version": "5.1.0", + "license": "MIT" + }, + "node_modules/orbit-db-keystore/node_modules/secp256k1": { + "version": "5.0.0", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "elliptic": "^6.5.4", + "node-addon-api": "^5.0.0", + "node-gyp-build": "^4.2.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/orbit-db-pubsub": { + "version": "0.6.0", + "license": "MIT", + "dependencies": { + "ipfs-pubsub-peer-monitor": "~0.0.5", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "node_modules/orbit-db-storage-adapter": { + "version": "0.9.0", + "license": "MIT", + "dependencies": { + "level": "^8.0.0", + "mkdirp": "^2.1.1" + } + }, + "node_modules/orbit-db-storage-adapter/node_modules/mkdirp": { + "version": "2.1.3", + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/orbit-db-store": { + "version": "4.3.4", + "license": "MIT", + "dependencies": { + "ipfs-log": "^5.4.1", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.14", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-queue": "^6.6.2", + "readable-stream": "~3.6.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "orbit-db-io": "*" + } + }, + "node_modules/orbit-db-store/node_modules/p-queue": { + "version": "6.6.2", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db-store/node_modules/p-timeout": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/orbit-db/node_modules/@ipld/dag-cbor": { + "version": "9.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db/node_modules/@ipld/dag-pb": { + "version": "4.0.0", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/orbit-db/node_modules/aggregate-error": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/clean-stack": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/crdts": { + "version": "0.2.0", + "license": "MIT" + }, + "node_modules/orbit-db/node_modules/escape-string-regexp": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/indent-string": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/ipfs-log": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "json-stringify-deterministic": "^1.0.8", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "p-do-whilst": "^2.0.0", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-whilst": "^3.0.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/orbit-db/node_modules/ipfs-log/node_modules/p-map": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "aggregate-error": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-cache": { + "version": "0.5.0", + "license": "MIT", + "dependencies": { + "logplease": "~1.2.15" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-counterstore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "crdts": "^0.2.0" + }, + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-docstore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "p-map": "~1.1.1" + }, + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-eventstore": { + "version": "2.0.0", + "license": "MIT", + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-feedstore": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "orbit-db-eventstore": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-io": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "go-ipfs": "*", + "ipfs": "*", + "ipfsd-ctl": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-kvstore": { + "version": "2.0.0", + "license": "MIT", + "peerDependencies": { + "orbit-db-store": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-pubsub": { + "version": "0.7.0", + "license": "MIT", + "dependencies": { + "ipfs-pubsub-peer-monitor": "^0.1.0", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-store": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "ipfs-log": "^6.0.0", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.15", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-queue": "^7.3.0", + "readable-stream": "~4.3.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "orbit-db-io": "*" + } + }, + "node_modules/orbit-db/node_modules/orbit-db-store/node_modules/p-map": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "aggregate-error": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/p-do-whilst": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/p-each-series": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/p-map": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/orbit-db/node_modules/p-whilst": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/orbit-db/node_modules/readable-stream": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/orbit-db/node_modules/wherearewe": { + "version": "2.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "is-electron": "^2.2.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/os-name": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "macos-release": "^2.5.0", + "windows-release": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-defer": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-do-whilst": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-each-series": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-event": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "p-timeout": "^5.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-fifo": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "fast-fifo": "^1.0.0", + "p-defer": "^3.0.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-forever": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map-series": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-queue": { + "version": "7.3.4", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-reflect": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.1", + "retry": "^0.13.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry/node_modules/retry": { + "version": "0.13.1", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/p-series": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-series/node_modules/@sindresorhus/is": { + "version": "0.7.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-settle": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^4.0.0", + "p-reflect": "^3.1.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-settle/node_modules/p-limit": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-timeout": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try-each": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/p-wait-for": { + "version": "5.0.0", + "license": "MIT", + "peer": true, + "dependencies": { + "p-timeout": "^6.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-wait-for/node_modules/p-timeout": { + "version": "6.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-whilst": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/package-json": { + "version": "8.1.0", + "license": "MIT", + "dependencies": { + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/@sindresorhus/is": { + "version": "5.3.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/package-json/node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "defer-to-connect": "^2.0.1" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/cacheable-lookup": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/cacheable-request": { + "version": "10.2.3", + "license": "MIT", + "dependencies": { + "@types/http-cache-semantics": "^4.0.1", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.0", + "keyv": "^4.5.2", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/package-json/node_modules/got": { + "version": "12.5.3", + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.1", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/package-json/node_modules/http2-wrapper": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/package-json/node_modules/lowercase-keys": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/mimic-response": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/normalize-url": { + "version": "8.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json/node_modules/p-cancelable": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/package-json/node_modules/responselike": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "lowercase-keys": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pako": { + "version": "2.1.0", + "license": "(MIT AND Zlib)" + }, + "node_modules/param-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-duration": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/path-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "2.1.0", + "license": "MIT", + "optional": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.9.2", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^9.1.1", + "minipass": "^5.0.0 || ^6.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "9.1.2", + "dev": true, + "license": "ISC", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-scurry/node_modules/minipass": { + "version": "6.0.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/path-to-regexp": { + "version": "2.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/peek-readable": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/peer-id": { + "version": "0.16.0", + "license": "MIT", + "dependencies": { + "class-is": "^1.1.0", + "libp2p-crypto": "^0.21.0", + "multiformats": "^9.4.5", + "protobufjs": "^6.10.2", + "uint8arrays": "^3.0.0" + }, + "engines": { + "node": ">=15.0.0" + } + }, + "node_modules/peer-id/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/pem-jwk": { + "version": "2.0.0", + "license": "MPL-2.0", + "dependencies": { + "asn1.js": "^5.0.1" + }, + "bin": { + "pem-jwk": "bin/pem-jwk.js" + }, + "engines": { + "node": ">=5.10.0" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "license": "MIT", + "optional": true + }, + "node_modules/performance-now": { + "version": "2.1.0", + "license": "MIT", + "optional": true + }, + "node_modules/picomatch": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "license": "MIT", + "optional": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pino": { + "version": "6.14.0", + "license": "MIT", + "dependencies": { + "fast-redact": "^3.0.0", + "fast-safe-stringify": "^2.0.8", + "flatstr": "^1.0.12", + "pino-std-serializers": "^3.1.0", + "process-warning": "^1.0.0", + "quick-format-unescaped": "^4.0.3", + "sonic-boom": "^1.0.2" + }, + "bin": { + "pino": "bin.js" + } + }, + "node_modules/pino-pretty": { + "version": "4.8.0", + "license": "MIT", + "dependencies": { + "@hapi/bourne": "^2.0.0", + "args": "^5.0.1", + "chalk": "^4.0.0", + "dateformat": "^4.5.1", + "fast-safe-stringify": "^2.0.7", + "jmespath": "^0.15.0", + "joycon": "^2.2.5", + "pump": "^3.0.0", + "readable-stream": "^3.6.0", + "rfdc": "^1.3.0", + "split2": "^3.1.1", + "strip-json-comments": "^3.1.1" + }, + "bin": { + "pino-pretty": "bin.js" + } + }, + "node_modules/pino-pretty/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pino-pretty/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/pino-pretty/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/pino-pretty/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/pino-pretty/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pino-pretty/node_modules/split2": { + "version": "3.2.2", + "license": "ISC", + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/pino-pretty/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pino-std-serializers": { + "version": "3.2.0", + "license": "MIT" + }, + "node_modules/pirates": { + "version": "4.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkijs": { + "version": "3.0.8", + "license": "BSD-3-Clause", + "dependencies": { + "asn1js": "^3.0.5", + "bytestreamjs": "^2.0.0", + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/platform": { + "version": "1.3.6", + "license": "MIT" + }, + "node_modules/pluralize": { + "version": "8.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "license": "MIT", + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/pretty-bytes": { + "version": "6.1.0", + "license": "MIT", + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/private-ip": { + "version": "2.3.3", + "license": "MIT", + "dependencies": { + "ip-regex": "^4.3.0", + "ipaddr.js": "^2.0.1", + "is-ip": "^3.1.0", + "netmask": "^2.0.2" + } + }, + "node_modules/private-ip/node_modules/ipaddr.js": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/process": { + "version": "0.11.10", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "license": "MIT" + }, + "node_modules/process-warning": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/progress": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/progress-stream": { + "version": "1.2.0", + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "speedometer": "~0.1.2", + "through2": "~0.2.3" + } + }, + "node_modules/progress-stream/node_modules/isarray": { + "version": "0.0.1", + "license": "MIT", + "optional": true + }, + "node_modules/progress-stream/node_modules/readable-stream": { + "version": "1.1.14", + "license": "MIT", + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/progress-stream/node_modules/string_decoder": { + "version": "0.10.31", + "license": "MIT", + "optional": true + }, + "node_modules/progress-stream/node_modules/through2": { + "version": "0.2.3", + "license": "MIT", + "optional": true, + "dependencies": { + "readable-stream": "~1.1.9", + "xtend": "~2.1.1" + } + }, + "node_modules/progress-stream/node_modules/xtend": { + "version": "2.1.2", + "optional": true, + "dependencies": { + "object-keys": "~0.4.0" + }, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/prom-client": { + "version": "14.1.1", + "license": "Apache-2.0", + "dependencies": { + "tdigest": "^0.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/promise": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "is-promise": "~1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/proper-lockfile": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "license": "ISC" + }, + "node_modules/protobufjs": { + "version": "6.11.2", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + } + }, + "node_modules/protocol-buffers-schema": { + "version": "3.6.0", + "license": "MIT" + }, + "node_modules/protons": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "protocol-buffers-schema": "^3.3.1", + "signed-varint": "^2.0.1", + "varint": "^5.0.0" + } + }, + "node_modules/protons-runtime": { + "version": "4.0.1", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.3.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + }, + "peerDependencies": { + "uint8arraylist": "^2.3.2" + } + }, + "node_modules/protons-runtime/node_modules/long": { + "version": "5.2.1", + "license": "Apache-2.0" + }, + "node_modules/protons-runtime/node_modules/protobufjs": { + "version": "7.1.2", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "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": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/protons/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/protons/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/forwarded": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "license": "ISC", + "optional": true + }, + "node_modules/psl": { + "version": "1.9.0", + "license": "MIT", + "optional": true + }, + "node_modules/pump": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pupa": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "escape-goat": "^4.0.0" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pvtsutils": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/pvutils": { + "version": "1.1.3", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/quick-format-unescaped": { + "version": "4.0.4", + "license": "MIT" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rabin-wasm": { + "version": "0.1.5", + "license": "MIT", + "dependencies": { + "@assemblyscript/loader": "^0.9.4", + "bl": "^5.0.0", + "debug": "^4.3.1", + "minimist": "^1.2.5", + "node-fetch": "^2.6.1", + "readable-stream": "^3.6.0" + }, + "bin": { + "rabin-wasm": "cli/bin.js" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rate-limiter-flexible": { + "version": "2.4.1", + "license": "ISC" + }, + "node_modules/raw-body": { + "version": "2.5.1", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "node_modules/react-native-fetch-api": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "p-defer": "^3.0.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/receptacle": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/rechoir": { + "version": "0.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/reflect-metadata": { + "version": "0.1.13", + "license": "Apache-2.0" + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "dev": true, + "license": "MIT" + }, + "node_modules/registry-auth-token": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "@pnpm/npm-conf": "^1.0.4" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/registry-url": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "rc": "1.2.8" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "license": "MIT", + "optional": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.20.0", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "license": "MIT" + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/retimer": { + "version": "3.0.0", + "license": "MIT" + }, + "node_modules/retry": { + "version": "0.12.0", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/rfdc": { + "version": "1.3.0", + "license": "MIT" + }, + "node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rpc-utils": { + "version": "0.6.2", + "license": "(Apache-2.0 OR MIT)", + "dependencies": { + "nanoid": "^3.3.1" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/rsa-pem-to-jwk": { + "version": "1.1.3", + "license": "Apache 2.0", + "dependencies": { + "object-assign": "^2.0.0", + "rsa-unpack": "0.0.6" + } + }, + "node_modules/rsa-pem-to-jwk/node_modules/object-assign": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rsa-unpack": { + "version": "0.0.6", + "license": "MIT", + "dependencies": { + "optimist": "~0.3.5" + }, + "bin": { + "rsa-unpack": "bin/cmd.js" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel-limit": { + "version": "1.1.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "license": "MIT" + }, + "node_modules/sanitize-filename": { + "version": "1.6.3", + "license": "WTFPL OR ISC", + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "license": "ISC" + }, + "node_modules/schema-utils": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scrypt-js": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/secp256k1": { + "version": "4.0.3", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "elliptic": "^6.5.4", + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/secure-compare": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/semver": { + "version": "7.3.8", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-diff": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/send": { + "version": "0.18.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/set-delayed-interval": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "license": "ISC" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "license": "(MIT AND BSD-3-Clause)", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/shelljs/node_modules/interpret": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/shelljs/node_modules/rechoir": { + "version": "0.6.2", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "license": "ISC" + }, + "node_modules/signed-varint": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "varint": "~5.0.0" + } + }, + "node_modules/signed-varint/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/single-line-log": { + "version": "1.1.2", + "license": "MIT", + "optional": true, + "dependencies": { + "string-width": "^1.0.1" + } + }, + "node_modules/single-line-log/node_modules/ansi-regex": { + "version": "2.1.1", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "license": "MIT", + "optional": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/string-width": { + "version": "1.0.2", + "license": "MIT", + "optional": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/strip-ansi": { + "version": "3.0.1", + "license": "MIT", + "optional": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/socket.io": { + "version": "4.6.0", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "debug": "~4.3.2", + "engine.io": "~6.4.0", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-adapter": { + "version": "2.5.2", + "license": "MIT", + "dependencies": { + "ws": "~8.11.0" + } + }, + "node_modules/socket.io-client": { + "version": "4.5.4", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.2.3", + "socket.io-parser": "~4.2.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-parser": { + "version": "4.2.1", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socks": { + "version": "2.6.1", + "license": "MIT", + "dependencies": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "4", + "socks": "^2.3.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sonic-boom": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0", + "flatstr": "^1.0.12" + } + }, + "node_modules/sort-keys": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sort-keys/node_modules/is-plain-obj": { + "version": "4.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/buffer-from": { + "version": "1.1.2", + "license": "MIT" + }, + "node_modules/sparse-array": { + "version": "1.3.2", + "license": "ISC" + }, + "node_modules/speedometer": { + "version": "0.1.4", + "optional": true + }, + "node_modules/split2": { + "version": "2.2.0", + "license": "ISC", + "optional": true, + "dependencies": { + "through2": "^2.0.2" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.2", + "license": "BSD-3-Clause" + }, + "node_modules/sshpk": { + "version": "1.17.0", + "license": "MIT", + "optional": true, + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sshpk/node_modules/jsbn": { + "version": "0.1.1", + "license": "MIT", + "optional": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-browserify": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "node_modules/stream-to-it": { + "version": "0.2.4", + "license": "MIT", + "dependencies": { + "get-iterator": "^1.0.2" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-replace-loader": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^5" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strtok3": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/sumchecker": { + "version": "1.3.1", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "debug": "^2.2.0", + "es6-promise": "^4.0.5" + } + }, + "node_modules/sumchecker/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/sumchecker/node_modules/ms": { + "version": "2.0.0", + "license": "MIT", + "optional": true + }, + "node_modules/super-regex": { + "version": "0.2.0", + "license": "MIT", + "dependencies": { + "clone-regexp": "^3.0.0", + "function-timeout": "^0.1.0", + "time-span": "^5.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/symbol-observable": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.1.13", + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^4.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tdigest": { + "version": "0.1.2", + "license": "MIT", + "dependencies": { + "bintrees": "1.0.2" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/temp-write": { + "version": "5.0.0", + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.6", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/temp-write/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "peer": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/terser": { + "version": "5.18.0", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/acorn": { + "version": "8.8.2", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "license": "MIT" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/throttleit": { + "version": "0.0.2", + "license": "MIT", + "optional": true + }, + "node_modules/through": { + "version": "2.3.8", + "dev": true, + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "license": "MIT", + "optional": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.7", + "license": "MIT", + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT", + "optional": true + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/time-span": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "convert-hrtime": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/timeout-abort-controller": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "retimer": "^3.0.0" + } + }, + "node_modules/timestamp-nano": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/tmp": { + "version": "0.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "license": "BSD-3-Clause" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/token-types": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/truncate-utf8-bytes": { + "version": "1.0.2", + "license": "WTFPL", + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, + "node_modules/ts-jest": { + "version": "29.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest-resolver": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "jest-resolve": "^27.2.5" + } + }, + "node_modules/ts-jest-resolver/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/@types/yargs": { + "version": "16.0.5", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/ts-jest-resolver/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-jest-resolver/node_modules/camelcase": { + "version": "6.3.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ts-jest-resolver/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-jest-resolver/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/ts-jest-resolver/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-haste-map": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-regex-util": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-resolve": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-util": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-validate": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-worker": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/ts-jest-resolver/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/ts-jest-resolver/node_modules/leven": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-jest-resolver/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-jest/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-jest/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/ts-loader": { + "version": "9.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" + } + }, + "node_modules/ts-loader/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ts-loader/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/ts-loader/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-loader/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-node": { + "version": "10.9.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/acorn": { + "version": "8.8.1", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.7.0", + "tsconfig-paths": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tslib": { + "version": "2.5.3", + "license": "0BSD" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "license": "Unlicense", + "optional": true + }, + "node_modules/type-detect": { + "version": "4.0.8", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "2.19.0", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "license": "MIT" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/uid": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "@lukeed/csprng": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/uint8-varint": { + "version": "1.0.4", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "byte-access": "^1.0.0", + "longbits": "^1.1.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8-varint/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8-varint/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arraylist": { + "version": "2.4.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arraylist/node_modules/multiformats": { + "version": "10.0.2", + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arraylist/node_modules/uint8arrays": { + "version": "4.0.2", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arrays": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "multiformats": "^9.4.2" + } + }, + "node_modules/uint8arrays/node_modules/multiformats": { + "version": "9.9.0", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici": { + "version": "5.12.0", + "license": "MIT", + "peer": true, + "dependencies": { + "busboy": "^1.6.0" + }, + "engines": { + "node": ">=12.18" + } + }, + "node_modules/union": { + "version": "0.5.0", + "dependencies": { + "qs": "^6.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/unique-string": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-notifier": { + "version": "6.0.2", + "license": "BSD-2-Clause", + "dependencies": { + "boxen": "^7.0.0", + "chalk": "^5.0.1", + "configstore": "^6.0.0", + "has-yarn": "^3.0.0", + "import-lazy": "^4.0.0", + "is-ci": "^3.0.1", + "is-installed-globally": "^0.4.0", + "is-npm": "^6.0.0", + "is-yarn-global": "^0.4.0", + "latest-version": "^7.0.0", + "pupa": "^3.1.0", + "semver": "^7.3.7", + "semver-diff": "^4.0.0", + "xdg-basedir": "^5.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/chalk": { + "version": "5.1.2", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/is-ci": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-join": { + "version": "2.0.5", + "license": "MIT" + }, + "node_modules/ursa-optional": { + "version": "0.10.2", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.14.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/utf8-byte-length": { + "version": "1.0.4", + "license": "WTFPL" + }, + "node_modules/util": { + "version": "0.12.4", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "safe-buffer": "^5.1.2", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "license": "MIT", + "optional": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-to-istanbul": { + "version": "9.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validator": { + "version": "13.7.0", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/varint": { + "version": "6.0.0", + "license": "MIT" + }, + "node_modules/varint-decoder": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "varint": "^5.0.0" + }, + "engines": { + "node": ">=4.0.0", + "npm": ">=3.0.0" + } + }, + "node_modules/varint-decoder/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" + }, + "node_modules/vary": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/wait-for-expect": { + "version": "3.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/walker": { + "version": "1.0.8", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webcrypto-core": { + "version": "1.7.7", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "asn1js": "^3.0.1", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "node_modules/webpack": { + "version": "5.75.0", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.0.1", + "@webpack-cli/info": "^2.0.1", + "@webpack-cli/serve": "^2.0.1", + "colorette": "^2.0.14", + "commander": "^9.4.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/colorette": { + "version": "2.0.19", + "dev": true, + "license": "MIT" + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "9.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-node-externals": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.8.2", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.8.0", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.7", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array/node_modules/es-abstract": { + "version": "1.19.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "license": "ISC", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/widest-line": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "string-width": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/widest-line/node_modules/ansi-regex": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/widest-line/node_modules/emoji-regex": { + "version": "9.2.2", + "license": "MIT" + }, + "node_modules/widest-line/node_modules/string-width": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/widest-line/node_modules/strip-ansi": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wildcard": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/windows-release": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^4.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/windows-release/node_modules/execa": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/windows-release/node_modules/get-stream": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/windows-release/node_modules/human-signals": { + "version": "1.1.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/wordwrap": { + "version": "0.0.3", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/wrtc": { + "version": "0.4.7", + "bundleDependencies": [ + "node-pre-gyp" + ], + "hasInstallScript": true, + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "node-pre-gyp": "^0.13.0" + }, + "engines": { + "node": "^8.11.2 || >=10.0.0" + }, + "optionalDependencies": { + "domexception": "^1.0.1" + } + }, + "node_modules/ws": { + "version": "8.11.0", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/xml2js": { + "version": "0.4.23", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlhttprequest-ssl": { + "version": "2.0.0", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xsalsa20": { + "version": "1.2.0", + "license": "MIT" + }, + "node_modules/xtend": { + "version": "4.0.2", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.6.2", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "license": "MIT", + "optional": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@achingbrain/ip-address": { + "version": "8.1.0", + "requires": { + "jsbn": "1.1.0", + "sprintf-js": "1.1.2" + } + }, + "@achingbrain/nat-port-mapper": { + "version": "1.0.7", + "requires": { + "@achingbrain/ssdp": "^4.0.1", + "@libp2p/logger": "^2.0.0", + "default-gateway": "^6.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.7", + "p-defer": "^4.0.0", + "p-timeout": "^5.0.2", + "xml2js": "^0.4.23" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "@achingbrain/ssdp": { + "version": "4.0.1", + "requires": { + "event-iterator": "^2.0.0", + "freeport-promise": "^2.0.0", + "merge-options": "^3.0.4", + "uuid": "^8.3.2", + "xml2js": "^0.4.23" + }, + "dependencies": { + "uuid": { + "version": "8.3.2" + } + } + }, + "@angular-devkit/core": { + "version": "16.1.0", + "dev": true, + "requires": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "rxjs": "7.8.1", + "source-map": "0.7.4" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "dev": true + }, + "source-map": { + "version": "0.7.4", + "dev": true + } + } + }, + "@angular-devkit/schematics": { + "version": "16.1.0", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "jsonc-parser": "3.2.0", + "magic-string": "0.30.0", + "ora": "5.4.1", + "rxjs": "7.8.1" + } + }, + "@angular-devkit/schematics-cli": { + "version": "16.1.0", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "ansi-colors": "4.1.3", + "inquirer": "8.2.4", + "symbol-observable": "4.0.0", + "yargs-parser": "21.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "inquirer": { + "version": "8.2.4", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yargs-parser": { + "version": "21.1.1", + "dev": true + } + } + }, + "@assemblyscript/loader": { + "version": "0.9.4" + }, + "@babel/code-frame": { + "version": "7.12.11", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/compat-data": { + "version": "7.14.4", + "dev": true + }, + "@babel/core": { + "version": "7.14.3", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.3", + "@babel/helper-compilation-targets": "^7.13.16", + "@babel/helper-module-transforms": "^7.14.2", + "@babel/helpers": "^7.14.0", + "@babel/parser": "^7.14.3", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "json5": { + "version": "2.2.0", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "semver": { + "version": "6.3.0", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.14.3", + "dev": true, + "requires": { + "@babel/types": "^7.14.2", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "dev": true + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.14.4", + "dev": true, + "requires": { + "@babel/compat-data": "^7.14.4", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "dev": true + } + } + }, + "@babel/helper-function-name": { + "version": "7.14.2", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.14.2" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.13.12", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-module-imports": { + "version": "7.13.12", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-module-transforms": { + "version": "7.14.2", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.13.12", + "@babel/helper-replace-supers": "^7.13.12", + "@babel/helper-simple-access": "^7.13.12", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.14.0", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.2" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.14.4", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.13.12", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.14.2", + "@babel/types": "^7.14.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.13.12", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.22.5", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.12.17", + "dev": true + }, + "@babel/helpers": { + "version": "7.14.0", + "dev": true, + "requires": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.14.0", + "@babel/types": "^7.14.0" + } + }, + "@babel/highlight": { + "version": "7.22.5", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.20.13", + "dev": true + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/runtime": { + "version": "7.20.13", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@babel/template": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + } + } + }, + "@babel/traverse": { + "version": "7.14.2", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.14.2", + "@babel/helper-function-name": "^7.14.2", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.14.2", + "@babel/types": "^7.14.2", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "globals": { + "version": "11.12.0", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.20.7", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "dev": true + }, + "@chainsafe/is-ip": { + "version": "2.0.1" + }, + "@chainsafe/libp2p-gossipsub": { + "version": "6.1.0", + "requires": { + "@libp2p/crypto": "^1.0.3", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.3.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/pubsub": "^6.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "denque": "^1.5.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "protobufjs": "^6.11.2", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/peer-record": { + "version": "5.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-all": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.0" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@chainsafe/libp2p-noise": { + "version": "11.0.0", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection-encrypter": "^3.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/hkdf": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.1", + "it-length-prefixed": "^8.0.2", + "it-pair": "^2.0.2", + "it-pb-stream": "^2.0.2", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1" + } + } + }, + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "@colors/colors": { + "version": "1.5.0", + "dev": true, + "optional": true + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "dependencies": { + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + } + } + }, + "@didtools/cacao": { + "version": "1.1.0", + "requires": { + "@ipld/dag-cbor": "^7.0.1", + "apg-js": "^4.1.1", + "caip": "^1.1.0", + "multiformats": "^9.5.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "7.0.3", + "requires": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "multiformats": { + "version": "9.9.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1" + } + } + } + } + }, + "@didtools/pkh-ethereum": { + "version": "0.0.1", + "requires": { + "@didtools/cacao": "^1.0.0", + "@ethersproject/wallet": "^5.7.0", + "@stablelib/random": "^1.0.2", + "caip": "^1.1.0" + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "dev": true + }, + "@ethersproject/abi": { + "version": "5.7.0", + "requires": { + "@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": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0" + } + }, + "@ethersproject/abstract-signer": { + "version": "5.7.0", + "requires": { + "@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": { + "version": "5.7.0", + "requires": { + "@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": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0" + } + }, + "@ethersproject/basex": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "@ethersproject/bignumber": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + }, + "dependencies": { + "bn.js": { + "version": "5.2.1" + } + } + }, + "@ethersproject/bytes": { + "version": "5.7.0", + "requires": { + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/constants": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0" + } + }, + "@ethersproject/contracts": { + "version": "5.7.0", + "requires": { + "@ethersproject/abi": "^5.7.0", + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0" + } + }, + "@ethersproject/hash": { + "version": "5.7.0", + "requires": { + "@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/hdnode": { + "version": "5.7.0", + "requires": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "@ethersproject/json-wallets": { + "version": "5.7.0", + "requires": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "@ethersproject/keccak256": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "js-sha3": "0.8.0" + } + }, + "@ethersproject/logger": { + "version": "5.7.0" + }, + "@ethersproject/networks": { + "version": "5.7.1", + "requires": { + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/pbkdf2": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/sha2": "^5.7.0" + } + }, + "@ethersproject/properties": { + "version": "5.7.0", + "requires": { + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/providers": { + "version": "5.7.2", + "requires": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0", + "bech32": "1.1.4", + "ws": "7.4.6" + }, + "dependencies": { + "ws": { + "version": "7.4.6", + "requires": {} + } + } + }, + "@ethersproject/random": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/rlp": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/sha2": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "hash.js": "1.1.7" + } + }, + "@ethersproject/signing-key": { + "version": "5.7.0", + "requires": { + "@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" + }, + "dependencies": { + "bn.js": { + "version": "5.2.1" + } + } + }, + "@ethersproject/solidity": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "@ethersproject/strings": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/transactions": { + "version": "5.7.0", + "requires": { + "@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/units": { + "version": "5.7.0", + "requires": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "@ethersproject/wallet": { + "version": "5.7.0", + "requires": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/json-wallets": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "@ethersproject/web": { + "version": "5.7.1", + "requires": { + "@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" + } + }, + "@ethersproject/wordlists": { + "version": "5.7.0", + "requires": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "@grpc/grpc-js": { + "version": "1.8.7", + "requires": { + "@grpc/proto-loader": "^0.7.0", + "@types/node": ">=12.12.47" + } + }, + "@grpc/proto-loader": { + "version": "0.7.4", + "requires": { + "@types/long": "^4.0.1", + "lodash.camelcase": "^4.3.0", + "long": "^4.0.0", + "protobufjs": "^7.0.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "cliui": { + "version": "7.0.4", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + }, + "dependencies": { + "long": { + "version": "5.2.1" + } + } + }, + "yargs": { + "version": "16.2.0", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + } + } + }, + "@hapi/accept": { + "version": "5.0.2", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/address": { + "version": "5.1.0", + "requires": { + "@hapi/hoek": "^11.0.2" + }, + "dependencies": { + "@hapi/hoek": { + "version": "11.0.2" + } + } + }, + "@hapi/ammo": { + "version": "5.0.1", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/b64": { + "version": "5.0.0", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/boom": { + "version": "9.1.4", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/bounce": { + "version": "2.0.0", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/bourne": { + "version": "2.1.0" + }, + "@hapi/call": { + "version": "8.0.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/catbox": { + "version": "11.1.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/podium": "4.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/catbox-memory": { + "version": "5.0.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/content": { + "version": "5.0.2", + "requires": { + "@hapi/boom": "9.x.x" + } + }, + "@hapi/cryptiles": { + "version": "5.1.0", + "requires": { + "@hapi/boom": "9.x.x" + } + }, + "@hapi/file": { + "version": "2.0.0" + }, + "@hapi/formula": { + "version": "3.0.2" + }, + "@hapi/hapi": { + "version": "20.2.2", + "requires": { + "@hapi/accept": "^5.0.1", + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/bounce": "^2.0.0", + "@hapi/call": "^8.0.0", + "@hapi/catbox": "^11.1.1", + "@hapi/catbox-memory": "^5.0.0", + "@hapi/heavy": "^7.0.1", + "@hapi/hoek": "^9.0.4", + "@hapi/mimos": "^6.0.0", + "@hapi/podium": "^4.1.1", + "@hapi/shot": "^5.0.5", + "@hapi/somever": "^3.0.0", + "@hapi/statehood": "^7.0.4", + "@hapi/subtext": "^7.0.3", + "@hapi/teamwork": "^5.1.1", + "@hapi/topo": "^5.0.0", + "@hapi/validate": "^1.1.1" + } + }, + "@hapi/heavy": { + "version": "7.0.1", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/hoek": { + "version": "9.1.1" + }, + "@hapi/iron": { + "version": "6.0.0", + "requires": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/mimos": { + "version": "6.0.0", + "requires": { + "@hapi/hoek": "9.x.x", + "mime-db": "1.x.x" + } + }, + "@hapi/nigel": { + "version": "4.0.2", + "requires": { + "@hapi/hoek": "^9.0.4", + "@hapi/vise": "^4.0.0" + } + }, + "@hapi/pez": { + "version": "5.0.3", + "requires": { + "@hapi/b64": "5.x.x", + "@hapi/boom": "9.x.x", + "@hapi/content": "^5.0.2", + "@hapi/hoek": "9.x.x", + "@hapi/nigel": "4.x.x" + } + }, + "@hapi/pinpoint": { + "version": "2.0.1" + }, + "@hapi/podium": { + "version": "4.1.3", + "requires": { + "@hapi/hoek": "9.x.x", + "@hapi/teamwork": "5.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/shot": { + "version": "5.0.5", + "requires": { + "@hapi/hoek": "9.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/somever": { + "version": "3.0.1", + "requires": { + "@hapi/bounce": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/statehood": { + "version": "7.0.4", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/bounce": "2.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/cryptiles": "5.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/iron": "6.x.x", + "@hapi/validate": "1.x.x" + } + }, + "@hapi/subtext": { + "version": "7.0.4", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/content": "^5.0.2", + "@hapi/file": "2.x.x", + "@hapi/hoek": "9.x.x", + "@hapi/pez": "^5.0.1", + "@hapi/wreck": "17.x.x" + } + }, + "@hapi/teamwork": { + "version": "5.1.1" + }, + "@hapi/tlds": { + "version": "1.0.1" + }, + "@hapi/topo": { + "version": "5.0.0", + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@hapi/validate": { + "version": "1.1.3", + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0" + } + }, + "@hapi/vise": { + "version": "4.0.0", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/wreck": { + "version": "17.2.0", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/bourne": "2.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@ipld/car": { + "version": "5.1.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "cborg": "^1.9.0", + "multiformats": "^11.0.0", + "varint": "^6.0.0" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + } + } + }, + "@ipld/dag-cbor": { + "version": "6.0.13", + "requires": { + "cborg": "^1.2.1", + "multiformats": "^9.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "@ipld/dag-json": { + "version": "10.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "2.1.13", + "requires": { + "multiformats": "^9.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "dev": true + }, + "resolve-from": { + "version": "5.0.0", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "dev": true + }, + "@jest/console": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/console": "^29.4.2", + "@jest/reporters": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.4.2", + "jest-config": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-resolve-dependencies": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "jest-watcher": "^29.4.2", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2" + } + }, + "@jest/expect": { + "version": "29.4.2", + "dev": true, + "requires": { + "expect": "^29.4.2", + "jest-snapshot": "^29.4.2" + } + }, + "@jest/expect-utils": { + "version": "29.4.2", + "dev": true, + "requires": { + "jest-get-type": "^29.4.2" + }, + "dependencies": { + "jest-get-type": { + "version": "29.4.2", + "dev": true + } + } + }, + "@jest/fake-timers": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + } + }, + "@jest/globals": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/types": "^29.4.2", + "jest-mock": "^29.4.2" + } + }, + "@jest/reporters": { + "version": "29.4.2", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/schemas": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@sinclair/typebox": "^0.25.16" + } + }, + "@jest/source-map": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + } + }, + "@jest/test-result": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/console": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/test-result": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "slash": "^3.0.0" + } + }, + "@jest/transform": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.4.2", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "convert-source-map": { + "version": "2.0.0", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "write-file-atomic": { + "version": "4.0.2", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + } + } + }, + "@jest/types": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/schemas": "^29.4.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.1", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0" + }, + "@jridgewell/set-array": { + "version": "1.1.2" + }, + "@jridgewell/source-map": { + "version": "0.3.3", + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "@leichtgewicht/ip-codec": { + "version": "2.0.4" + }, + "@libp2p/bootstrap": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-info": "^1.0.7", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/crypto": { + "version": "1.0.11", + "requires": { + "@libp2p/interface-keys": "^1.0.2", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^4.0.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "node-forge": { + "version": "1.3.1" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@libp2p/delegated-content-routing": { + "version": "4.0.0", + "requires": { + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "it-drain": "^2.0.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-drain": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + } + } + }, + "@libp2p/delegated-peer-routing": { + "version": "4.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.1", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "any-signal": "^3.0.1", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "p-defer": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + } + } + }, + "@libp2p/floodsub": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/pubsub": "^6.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.3" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-address-manager": { + "version": "2.0.1", + "requires": { + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/interface-connection": { + "version": "3.0.3", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interface-connection-encrypter": { + "version": "3.0.2", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interface-connection-manager": { + "version": "1.3.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/interface-content-routing": { + "version": "2.0.1", + "requires": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + } + }, + "@libp2p/interface-dht": { + "version": "2.0.1", + "requires": { + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-keychain": { + "version": "2.0.4", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-keys": { + "version": "1.0.7" + }, + "@libp2p/interface-libp2p": { + "version": "1.1.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-peer-routing": "^1.0.0", + "@libp2p/interface-peer-store": "^1.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-metrics": { + "version": "4.0.5", + "requires": { + "@libp2p/interface-connection": "^3.0.0" + } + }, + "@libp2p/interface-peer-discovery": { + "version": "1.0.2", + "requires": { + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + } + }, + "@libp2p/interface-peer-id": { + "version": "1.0.6", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + } + } + }, + "@libp2p/interface-peer-info": { + "version": "1.0.8", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/interface-peer-routing": { + "version": "1.0.2", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interfaces": "^3.0.0" + } + }, + "@libp2p/interface-peer-store": { + "version": "1.2.3", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interface-peer-info": "^1.0.0", + "@libp2p/interface-record": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/interface-pubsub": { + "version": "3.0.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-pushable": "^3.0.0", + "uint8arraylist": "^2.1.2" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.0" + } + } + }, + "@libp2p/interface-record": { + "version": "2.0.2", + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interface-registrar": { + "version": "2.0.4", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^1.0.0" + } + }, + "@libp2p/interface-stream-muxer": { + "version": "3.0.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-stream-types": "^1.0.4" + } + }, + "@libp2p/interface-transport": { + "version": "2.1.1", + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4" + } + }, + "@libp2p/interfaces": { + "version": "3.3.1" + }, + "@libp2p/kad-dht": { + "version": "7.0.0", + "requires": { + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-first": "^2.0.0", + "it-length": "^2.0.0", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.3", + "it-stream-types": "^1.0.4", + "it-take": "^2.0.0", + "k-bucket": "^5.1.0", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "p-queue": "^7.2.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "ip-regex": { + "version": "5.0.0" + }, + "ipaddr.js": { + "version": "2.0.1" + }, + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.0" + }, + "it-take": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.0", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "private-ip": { + "version": "3.0.0", + "requires": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + } + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@libp2p/logger": { + "version": "2.0.5", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "debug": "^4.3.3", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/mdns": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/multicast-dns": "^7.2.1", + "multicast-dns": "^7.2.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/mplex": { + "version": "7.1.1", + "requires": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "benchmark": "^2.1.4", + "err-code": "^3.0.1", + "it-batched-bytes": "^1.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.4", + "rate-limiter-flexible": "^2.3.9", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.0" + }, + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "@libp2p/multistream-select": { + "version": "3.1.1", + "requires": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-first": "^1.0.6", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-merge": "^1.0.4", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.0" + }, + "multiformats": { + "version": "10.0.2" + }, + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "@libp2p/peer-collections": { + "version": "3.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/peer-id": { + "version": "2.0.1", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@libp2p/peer-id-factory": { + "version": "2.0.1", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/peer-store": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/peer-record": { + "version": "5.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + } + }, + "it-all": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/prometheus-metrics": { + "version": "1.1.3", + "requires": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.2", + "@libp2p/logger": "^2.0.2", + "it-foreach": "^1.0.0", + "it-stream-types": "^1.0.4" + } + }, + "@libp2p/pubsub": { + "version": "6.0.1", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/topology": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.2.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/record": { + "version": "3.0.0", + "requires": { + "@libp2p/interface-dht": "^2.0.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8arraylist": "^2.1.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/tcp": { + "version": "6.1.2", + "requires": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "stream-to-it": "^0.2.2" + } + }, + "@libp2p/topology": { + "version": "4.0.1", + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/logger": "^2.0.1", + "it-all": "^2.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-all": { + "version": "2.0.0" + } + } + }, + "@libp2p/tracked-map": { + "version": "3.0.2", + "requires": { + "@libp2p/interface-metrics": "^4.0.0" + } + }, + "@libp2p/utils": { + "version": "3.0.2", + "requires": { + "@achingbrain/ip-address": "^8.1.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-peer-store": "^1.2.1", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "is-loopback-addr": "^2.0.1", + "it-stream-types": "^1.0.4", + "private-ip": "^2.1.1", + "uint8arraylist": "^2.3.2" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "is-loopback-addr": { + "version": "2.0.1" + } + } + }, + "@libp2p/webrtc-peer": { + "version": "2.0.2", + "requires": { + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "it-pushable": "^3.0.0", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "p-event": "^5.0.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.2" + }, + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/webrtc-star": { + "version": "6.0.0", + "requires": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-discovery": "^1.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.2", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.1", + "@libp2p/webrtc-peer": "^2.0.0", + "@libp2p/webrtc-star-protocol": "^3.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "delay": "^5.0.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.2", + "multiformats": "^11.0.0", + "p-defer": "^4.0.0", + "socket.io-client": "^4.1.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "@libp2p/webrtc-star-protocol": { + "version": "3.0.0", + "requires": { + "@multiformats/multiaddr": "^11.0.0", + "socket.io-client": "^4.1.2" + } + }, + "@libp2p/websockets": { + "version": "5.0.0", + "requires": { + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-transport": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.2", + "abortable-iterator": "^4.0.2", + "err-code": "^3.0.1", + "it-ws": "^5.0.0", + "p-defer": "^4.0.0", + "p-timeout": "^6.0.0", + "wherearewe": "^2.0.1" + }, + "dependencies": { + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "p-defer": { + "version": "4.0.0" + }, + "p-timeout": { + "version": "6.0.0" + }, + "wherearewe": { + "version": "2.0.1", + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "@lukeed/csprng": { + "version": "1.1.0" + }, + "@mapbox/node-pre-gyp": { + "version": "1.0.10", + "requires": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + } + }, + "@multiformats/base-x": { + "version": "4.0.1" + }, + "@multiformats/mafmt": { + "version": "11.0.3", + "requires": { + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@multiformats/multiaddr": { + "version": "11.4.0", + "requires": { + "@chainsafe/is-ip": "^2.0.1", + "dns-over-http-resolver": "^2.1.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "dns-over-http-resolver": { + "version": "2.1.0", + "requires": { + "debug": "^4.3.1", + "native-fetch": "^4.0.2", + "receptacle": "^1.3.2" + } + }, + "native-fetch": { + "version": "4.0.2", + "requires": {} + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + } + } + }, + "@multiformats/multiaddr-to-uri": { + "version": "9.0.2", + "requires": { + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@multiformats/murmur3": { + "version": "2.1.2", + "requires": { + "multiformats": "^11.0.0", + "murmurhash3js-revisited": "^3.0.0" + } + }, + "@multiformats/uri-to-multiaddr": { + "version": "7.0.0", + "requires": { + "@multiformats/multiaddr": "^11.0.0", + "is-ip": "^5.0.0" + }, + "dependencies": { + "ip-regex": { + "version": "5.0.0" + }, + "is-ip": { + "version": "5.0.0", + "requires": { + "ip-regex": "^5.0.0", + "super-regex": "^0.2.0" + } + } + } + }, + "@nestjs/cli": { + "version": "10.0.3", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "@angular-devkit/schematics-cli": "16.1.0", + "@nestjs/schematics": "^10.0.1", + "chalk": "4.1.2", + "chokidar": "3.5.3", + "cli-table3": "0.6.3", + "commander": "4.1.1", + "fork-ts-checker-webpack-plugin": "8.0.0", + "inquirer": "8.2.5", + "node-emoji": "1.11.0", + "ora": "5.4.1", + "os-name": "4.0.1", + "rimraf": "4.4.1", + "shelljs": "0.8.5", + "source-map-support": "0.5.21", + "tree-kill": "1.2.2", + "tsconfig-paths": "4.2.0", + "tsconfig-paths-webpack-plugin": "4.0.1", + "typescript": "5.1.3", + "webpack": "5.87.0", + "webpack-node-externals": "3.0.0" + }, + "dependencies": { + "@types/estree": { + "version": "1.0.1", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.6", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.6", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.6", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.6", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "acorn": { + "version": "8.9.0", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.9.0", + "dev": true, + "requires": {} + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "brace-expansion": { + "version": "2.0.1", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "commander": { + "version": "4.1.1", + "dev": true + }, + "es-module-lexer": { + "version": "1.3.0", + "dev": true + }, + "glob": { + "version": "9.3.5", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "json5": { + "version": "2.2.3", + "dev": true + }, + "minimatch": { + "version": "8.0.4", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "rimraf": { + "version": "4.4.1", + "dev": true, + "requires": { + "glob": "^9.2.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "requires": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "typescript": { + "version": "5.1.3", + "dev": true + }, + "webpack": { + "version": "5.87.0", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + } + } + } + }, + "@nestjs/common": { + "version": "10.0.2", + "requires": { + "iterare": "1.2.1", + "tslib": "2.5.3", + "uid": "2.0.2" + } + }, + "@nestjs/core": { + "version": "10.0.2", + "requires": { + "@nuxtjs/opencollective": "0.3.2", + "fast-safe-stringify": "2.1.1", + "iterare": "1.2.1", + "path-to-regexp": "3.2.0", + "tslib": "2.5.3", + "uid": "2.0.2" + }, + "dependencies": { + "path-to-regexp": { + "version": "3.2.0" + } + } + }, + "@nestjs/platform-express": { + "version": "10.0.2", + "requires": { + "body-parser": "1.20.2", + "cors": "2.8.5", + "express": "4.18.2", + "multer": "1.4.4-lts.1", + "tslib": "2.5.3" + }, + "dependencies": { + "body-parser": { + "version": "1.20.2", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + }, + "raw-body": { + "version": "2.5.2", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + } + } + }, + "@nestjs/schematics": { + "version": "10.0.1", + "dev": true, + "requires": { + "@angular-devkit/core": "16.1.0", + "@angular-devkit/schematics": "16.1.0", + "comment-json": "4.2.3", + "jsonc-parser": "3.2.0", + "pluralize": "8.0.0" + } + }, + "@nestjs/testing": { + "version": "10.0.2", + "dev": true, + "requires": { + "tslib": "2.5.3" + } + }, + "@noble/ed25519": { + "version": "1.7.1" + }, + "@noble/secp256k1": { + "version": "1.7.0" + }, + "@nuxtjs/opencollective": { + "version": "0.3.2", + "requires": { + "chalk": "^4.1.0", + "consola": "^2.15.0", + "node-fetch": "^2.6.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@peculiar/asn1-schema": { + "version": "2.3.6", + "requires": { + "asn1js": "^3.0.5", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "@peculiar/json-schema": { + "version": "1.1.12", + "requires": { + "tslib": "^2.0.0" + } + }, + "@peculiar/webcrypto": { + "version": "1.4.3", + "requires": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "pvtsutils": "^1.3.2", + "tslib": "^2.5.0", + "webcrypto-core": "^1.7.7" + } + }, + "@pnpm/network.ca-file": { + "version": "1.0.2", + "requires": { + "graceful-fs": "4.2.10" + } + }, + "@pnpm/npm-conf": { + "version": "1.0.5", + "requires": { + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + } + }, + "@protobufjs/aspromise": { + "version": "1.1.2" + }, + "@protobufjs/base64": { + "version": "1.1.2" + }, + "@protobufjs/codegen": { + "version": "2.0.4" + }, + "@protobufjs/eventemitter": { + "version": "1.1.0" + }, + "@protobufjs/fetch": { + "version": "1.1.0", + "requires": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "@protobufjs/float": { + "version": "1.0.2" + }, + "@protobufjs/inquire": { + "version": "1.1.0" + }, + "@protobufjs/path": { + "version": "1.1.2" + }, + "@protobufjs/pool": { + "version": "1.1.0" + }, + "@protobufjs/utf8": { + "version": "1.1.0" + }, + "@sinclair/typebox": { + "version": "0.25.21", + "devOptional": true + }, + "@sinonjs/commons": { + "version": "2.0.0", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.0.2", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0" + } + }, + "@socket.io/component-emitter": { + "version": "3.1.0" + }, + "@stablelib/aead": { + "version": "1.0.1" + }, + "@stablelib/binary": { + "version": "1.0.1", + "requires": { + "@stablelib/int": "^1.0.1" + } + }, + "@stablelib/bytes": { + "version": "1.0.1" + }, + "@stablelib/chacha": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/chacha20poly1305": { + "version": "1.0.1", + "requires": { + "@stablelib/aead": "^1.0.1", + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/poly1305": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/constant-time": { + "version": "1.0.1" + }, + "@stablelib/ed25519": { + "version": "1.0.3", + "requires": { + "@stablelib/random": "^1.0.2", + "@stablelib/sha512": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/hash": { + "version": "1.0.1" + }, + "@stablelib/hkdf": { + "version": "1.0.1", + "requires": { + "@stablelib/hash": "^1.0.1", + "@stablelib/hmac": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/hmac": { + "version": "1.0.1", + "requires": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/int": { + "version": "1.0.1" + }, + "@stablelib/keyagreement": { + "version": "1.0.1", + "requires": { + "@stablelib/bytes": "^1.0.1" + } + }, + "@stablelib/poly1305": { + "version": "1.0.1", + "requires": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/random": { + "version": "1.0.2", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/sha256": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/sha512": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/hash": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/wipe": { + "version": "1.0.1" + }, + "@stablelib/x25519": { + "version": "1.0.3", + "requires": { + "@stablelib/keyagreement": "^1.0.1", + "@stablelib/random": "^1.0.2", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/xchacha20": { + "version": "1.0.1", + "requires": { + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "@stablelib/xchacha20poly1305": { + "version": "1.0.1", + "requires": { + "@stablelib/aead": "^1.0.1", + "@stablelib/chacha20poly1305": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1", + "@stablelib/xchacha20": "^1.0.1" + } + }, + "@tokenizer/token": { + "version": "0.3.0" + }, + "@tsconfig/node10": { + "version": "1.0.9", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.3", + "dev": true + }, + "@types/babel__core": { + "version": "7.20.0", + "dev": true, + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.11.1", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/bn.js": { + "version": "5.1.1", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/body-parser": { + "version": "1.19.0", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.34", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/cookie": { + "version": "0.4.1" + }, + "@types/cookiejar": { + "version": "2.1.2", + "dev": true + }, + "@types/cors": { + "version": "2.8.13", + "requires": { + "@types/node": "*" + } + }, + "@types/crypto-js": { + "version": "4.0.2", + "dev": true + }, + "@types/dns-packet": { + "version": "5.2.4", + "requires": { + "@types/node": "*" + } + }, + "@types/elliptic": { + "version": "6.4.14", + "dev": true, + "requires": { + "@types/bn.js": "*" + } + }, + "@types/eslint": { + "version": "8.4.10", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.4", + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.51" + }, + "@types/events": { + "version": "1.2.0", + "dev": true + }, + "@types/express": { + "version": "4.17.15", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.31", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.32", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "requires": { + "@types/node": "*" + } + }, + "@types/http-cache-semantics": { + "version": "4.0.1" + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "28.1.8", + "dev": true, + "requires": { + "expect": "^28.0.0", + "pretty-format": "^28.0.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "requires": { + "@babel/highlight": "^7.22.5" + } + }, + "@jest/expect-utils": { + "version": "28.1.3", + "dev": true, + "requires": { + "jest-get-type": "^28.0.2" + } + }, + "@jest/schemas": { + "version": "28.1.3", + "dev": true, + "requires": { + "@sinclair/typebox": "^0.24.1" + } + }, + "@jest/types": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + } + }, + "@sinclair/typebox": { + "version": "0.24.51", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "diff-sequences": { + "version": "28.1.1", + "dev": true + }, + "expect": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-diff": { + "version": "28.1.3", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + } + }, + "jest-get-type": { + "version": "28.0.2", + "dev": true + }, + "jest-matcher-utils": { + "version": "28.1.3", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + } + }, + "jest-message-util": { + "version": "28.1.3", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-util": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "pretty-format": { + "version": "28.1.3", + "dev": true, + "requires": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@types/json-schema": { + "version": "7.0.11" + }, + "@types/long": { + "version": "4.0.1" + }, + "@types/luxon": { + "version": "3.3.0", + "dev": true + }, + "@types/mime": { + "version": "2.0.3", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5" + }, + "@types/mock-fs": { + "version": "4.13.1", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/multicast-dns": { + "version": "7.2.1", + "requires": { + "@types/dns-packet": "*", + "@types/node": "*" + } + }, + "@types/node": { + "version": "18.11.9" + }, + "@types/node-fetch": { + "version": "2.5.11", + "dev": true, + "requires": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "@types/orbit-db": { + "version": "git+ssh://git@github.com/orbitdb/orbit-db-types.git#ed41369e64c054952c1e47505d598342a4967d4c", + "dev": true, + "from": "@types/orbit-db@git+https://github.com/orbitdb/orbit-db-types.git", + "requires": { + "@types/elliptic": "^6.4.6", + "@types/events": "^1.2.0", + "@types/ipfs": "git+https://github.com/lukas2005/types-ipfs.git", + "orbit-db": "git+https://github.com/orbitdb/orbit-db.git" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.0.4.tgz", + "integrity": "sha512-HBNVngk/47pKNLTAelN6ORWgKkjJtQj96Xb+jIBtRShJGCsXgghj1TzTynTTIp1dZxwPe5rVIL6yjZmvdyP2Wg==", + "dev": true, + "requires": { + "cborg": "^2.0.1", + "multiformats": "^12.0.1" + }, + "dependencies": { + "multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true + } + } + }, + "@libp2p/crypto": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz", + "integrity": "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag==", + "dev": true, + "requires": { + "@libp2p/interface-keys": "^1.0.2", + "@libp2p/interfaces": "^3.2.0", + "@noble/ed25519": "^1.6.0", + "@noble/secp256k1": "^1.5.4", + "multiformats": "^11.0.0", + "node-forge": "^1.1.0", + "protons-runtime": "^5.0.0", + "uint8arraylist": "^2.4.3", + "uint8arrays": "^4.0.2" + } + }, + "@types/ipfs": { + "version": "git+ssh://git@github.com/lukas2005/types-ipfs.git#fb4bd2c5780810b8355356f2f683064008b60053", + "dev": true, + "from": "@types/ipfs@git+https://github.com/lukas2005/types-ipfs.git" + }, + "cborg": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cborg/-/cborg-2.0.5.tgz", + "integrity": "sha512-xVW1rSIw1ZXbkwl2XhJ7o/jAv0vnVoQv/QlfQxV8a7V5PlA4UU/AcIiXqmpyybwNWy/GPQU1m/aBVNIWr7/T0w==", + "dev": true + }, + "long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", + "dev": true + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true + }, + "orbit-db": { + "version": "git+ssh://git@github.com/orbitdb/orbit-db.git#9bdd93c1bcb0a326e920c8272d91d2ef41063809", + "dev": true, + "from": "orbit-db@git+https://github.com/orbitdb/orbit-db.git", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@libp2p/crypto": "^1.0.12", + "it-pipe": "^2.0.5", + "level": "8.0.0", + "lru": "^3.1.0", + "multiformats": "^11.0.1", + "p-queue": "^7.3.4", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.3" + } + }, + "protobufjs": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz", + "integrity": "sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==", + "dev": true, + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "protons-runtime": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-5.0.2.tgz", + "integrity": "sha512-eKppVrIS5dDh+Y61Yj4bDEOs2sQLQbQGIhr7EBiybPQhIMGBynzVXlYILPWl3Td1GDadobc8qevh5D+JwfG9bw==", + "dev": true, + "requires": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.4.3" + } + }, + "uint8arraylist": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", + "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", + "dev": true, + "requires": { + "uint8arrays": "^4.0.2" + } + }, + "uint8arrays": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.6.tgz", + "integrity": "sha512-4ZesjQhqOU2Ip6GPReIwN60wRxIupavL8T0Iy36BBHr2qyMrNxsPJvr7vpS4eFt8F8kSguWUPad6ZM9izs/vyw==", + "dev": true, + "requires": { + "multiformats": "^12.0.1" + }, + "dependencies": { + "multiformats": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.0.tgz", + "integrity": "sha512-/qTOKKnU8nwcVURjRcS+UN0QYgdS5BPZzY10Aiciu2SqncyCVMGV8KtD83EBFmsuJDsSEmT4sGvzcTkCoMw0sQ==", + "dev": true + } + } + } + } + }, + "@types/parse-json": { + "version": "4.0.0", + "dev": true + }, + "@types/prettier": { + "version": "2.7.1", + "dev": true + }, + "@types/qs": { + "version": "6.9.5", + "dev": true + }, + "@types/range-parser": { + "version": "1.2.3", + "dev": true + }, + "@types/retry": { + "version": "0.12.1" + }, + "@types/serve-static": { + "version": "1.15.0", + "dev": true, + "requires": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/stack-utils": { + "version": "2.0.1", + "dev": true + }, + "@types/superagent": { + "version": "4.1.18", + "dev": true, + "requires": { + "@types/cookiejar": "*", + "@types/node": "*" + } + }, + "@types/supertest": { + "version": "2.0.12", + "dev": true, + "requires": { + "@types/superagent": "*" + } + }, + "@types/tmp": { + "version": "0.2.3", + "dev": true + }, + "@types/validator": { + "version": "13.1.4" + }, + "@types/ws": { + "version": "8.5.3", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/yargs": { + "version": "17.0.15", + "devOptional": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0" + }, + "@vascosantos/moving-average": { + "version": "1.1.0" + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "2.0.1", + "dev": true, + "requires": {} + }, + "@webpack-cli/info": { + "version": "2.0.1", + "dev": true, + "requires": {} + }, + "@webpack-cli/serve": { + "version": "2.0.1", + "dev": true, + "requires": {} + }, + "@xtuc/ieee754": { + "version": "1.2.0" + }, + "@xtuc/long": { + "version": "4.2.2" + }, + "abbrev": { + "version": "1.1.1" + }, + "abort-controller": { + "version": "3.0.0", + "requires": { + "event-target-shim": "^5.0.0" + } + }, + "abortable-iterator": { + "version": "3.0.2", + "requires": { + "get-iterator": "^1.0.2" + } + }, + "abstract-level": { + "version": "1.0.3", + "requires": { + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" + }, + "dependencies": { + "level-supports": { + "version": "4.0.1" + } + } + }, + "abstract-leveldown": { + "version": "7.2.0", + "requires": { + "buffer": "^6.0.3", + "catering": "^2.0.0", + "is-buffer": "^2.0.5", + "level-concat-iterator": "^3.0.0", + "level-supports": "^2.0.1", + "queue-microtask": "^1.2.3" + } + }, + "abstract-logging": { + "version": "2.0.1" + }, + "accepts": { + "version": "1.3.8", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn-walk": { + "version": "8.2.0", + "dev": true + }, + "aes-js": { + "version": "3.0.0" + }, + "agent-base": { + "version": "6.0.2", + "requires": { + "debug": "4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "requires": {} + }, + "ansi-align": { + "version": "3.0.1", + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-colors": { + "version": "4.1.3", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "dev": true + } + } + }, + "ansi-regex": { + "version": "5.0.1" + }, + "ansi-styles": { + "version": "3.2.1", + "requires": { + "color-convert": "^1.9.0" + } + }, + "any-signal": { + "version": "3.0.1" + }, + "anymatch": { + "version": "3.1.2", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "apg-js": { + "version": "4.1.3" + }, + "append-field": { + "version": "1.0.0" + }, + "aproba": { + "version": "2.0.0" + }, + "are-we-there-yet": { + "version": "2.0.0", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "arg": { + "version": "4.1.3", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.0.3", + "dev": true + } + } + }, + "args": { + "version": "5.0.3", + "requires": { + "camelcase": "5.0.0", + "chalk": "2.4.2", + "leven": "2.1.0", + "mri": "1.1.4" + }, + "dependencies": { + "camelcase": { + "version": "5.0.0" + } + } + }, + "array-flatten": { + "version": "1.1.1" + }, + "array-shuffle": { + "version": "3.0.0" + }, + "array-timsort": { + "version": "1.0.3", + "dev": true + }, + "asap": { + "version": "2.0.6" + }, + "asmcrypto.js": { + "version": "2.3.2" + }, + "asn1": { + "version": "0.2.6", + "optional": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "asn1js": { + "version": "3.0.5", + "requires": { + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + } + }, + "assert": { + "version": "2.0.0", + "requires": { + "es6-object-assign": "^1.1.0", + "is-nan": "^1.2.1", + "object-is": "^1.0.1", + "util": "^0.12.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "optional": true + }, + "async": { + "version": "2.6.3", + "requires": { + "lodash": "^4.17.14" + } + }, + "asynckit": { + "version": "0.4.0", + "devOptional": true + }, + "atomic-sleep": { + "version": "1.0.0" + }, + "available-typed-arrays": { + "version": "1.0.5" + }, + "aws-sign2": { + "version": "0.7.0", + "optional": true + }, + "aws4": { + "version": "1.12.0", + "optional": true + }, + "babel-jest": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/transform": "^29.4.2", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.4.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "29.4.2", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^29.4.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "balanced-match": { + "version": "1.0.0" + }, + "base-x": { + "version": "3.0.9", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "base64-js": { + "version": "1.3.1" + }, + "base64id": { + "version": "2.0.0" + }, + "basic-auth": { + "version": "1.1.0" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "optional": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bech32": { + "version": "1.1.4" + }, + "benchmark": { + "version": "2.1.4", + "requires": { + "lodash": "^4.17.4", + "platform": "^1.3.3" + } + }, + "big.js": { + "version": "5.2.2" + }, + "binary-extensions": { + "version": "2.2.0", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bintrees": { + "version": "1.0.2" + }, + "bip66": { + "version": "1.1.5", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "bl": { + "version": "5.1.0", + "requires": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "blakejs": { + "version": "1.1.0" + }, + "blob-to-it": { + "version": "2.0.0", + "requires": { + "browser-readablestream-to-it": "^2.0.0" + } + }, + "blockstore-core": { + "version": "3.0.0", + "requires": { + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-store": "^3.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-take": "^2.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-take": { + "version": "2.0.0" + } + } + }, + "blockstore-datastore-adapter": { + "version": "5.0.0", + "requires": { + "blockstore-core": "^3.0.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-drain": "^2.0.0", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "it-drain": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + } + } + }, + "bn.js": { + "version": "4.11.9" + }, + "body-parser": { + "version": "1.20.1", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "boxen": { + "version": "7.0.0", + "requires": { + "ansi-align": "^3.0.1", + "camelcase": "^7.0.0", + "chalk": "^5.0.1", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1" + }, + "ansi-styles": { + "version": "6.2.1" + }, + "camelcase": { + "version": "7.0.0" + }, + "chalk": { + "version": "5.1.2" + }, + "emoji-regex": { + "version": "9.2.2" + }, + "string-width": { + "version": "5.1.2", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.0.1", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.0.1", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0" + }, + "browser-level": { + "version": "1.0.1", + "requires": { + "abstract-level": "^1.0.2", + "catering": "^2.1.1", + "module-error": "^1.0.2", + "run-parallel-limit": "^1.1.0" + } + }, + "browser-readablestream-to-it": { + "version": "2.0.0" + }, + "browserify-aes": { + "version": "1.2.0", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserslist": { + "version": "4.16.6", + "requires": { + "caniuse-lite": "^1.0.30001219", + "colorette": "^1.2.2", + "electron-to-chromium": "^1.3.723", + "escalade": "^3.1.1", + "node-releases": "^1.1.71" + } + }, + "bs-logger": { + "version": "0.2.6", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bs58": { + "version": "4.0.1", + "requires": { + "base-x": "^3.0.2" + } + }, + "bser": { + "version": "2.1.1", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "6.0.3", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "buffer-crc32": { + "version": "0.2.13", + "optional": true + }, + "buffer-xor": { + "version": "1.0.3" + }, + "busboy": { + "version": "1.6.0", + "requires": { + "streamsearch": "^1.1.0" + } + }, + "byte-access": { + "version": "1.0.1", + "requires": { + "uint8arraylist": "^2.0.0" + } + }, + "byteman": { + "version": "1.3.5" + }, + "bytes": { + "version": "3.1.2" + }, + "bytestreamjs": { + "version": "2.0.1" + }, + "caip": { + "version": "1.1.0" + }, + "call-bind": { + "version": "1.0.2", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "5.3.1", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001235" + }, + "canonicalize": { + "version": "1.0.8" + }, + "capital-case": { + "version": "1.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "caseless": { + "version": "0.12.0", + "optional": true + }, + "catering": { + "version": "2.1.1" + }, + "cborg": { + "version": "1.10.0" + }, + "chalk": { + "version": "2.4.2", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "change-case": { + "version": "4.1.2", + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "char-regex": { + "version": "1.0.2", + "dev": true + }, + "chardet": { + "version": "0.7.0", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chownr": { + "version": "2.0.0" + }, + "chrome-trace-event": { + "version": "1.0.3" + }, + "ci-info": { + "version": "3.7.0" + }, + "cipher-base": { + "version": "1.0.4", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "cjs-module-lexer": { + "version": "1.2.2", + "dev": true + }, + "class-is": { + "version": "1.1.0" + }, + "class-transformer": { + "version": "0.5.1" + }, + "class-validator": { + "version": "0.13.1", + "requires": { + "@types/validator": "^13.1.3", + "libphonenumber-js": "^1.9.7", + "validator": "^13.5.2" + } + }, + "classic-level": { + "version": "1.2.0", + "requires": { + "abstract-level": "^1.0.2", + "catering": "^2.1.0", + "module-error": "^1.0.1", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + } + }, + "clean-stack": { + "version": "2.2.0" + }, + "cli-boxes": { + "version": "3.0.0" + }, + "cli-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.9.0", + "dev": true + }, + "cli-table": { + "version": "0.3.6", + "requires": { + "colors": "1.0.3" + }, + "dependencies": { + "colors": { + "version": "1.0.3" + } + } + }, + "cli-table3": { + "version": "0.6.3", + "dev": true, + "requires": { + "@colors/colors": "1.5.0", + "string-width": "^4.2.0" + } + }, + "cli-width": { + "version": "3.0.0", + "dev": true + }, + "cliui": { + "version": "8.0.1", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "1.0.4", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "clone-regexp": { + "version": "3.0.0", + "requires": { + "is-regexp": "^3.0.0" + } + }, + "co": { + "version": "4.6.0", + "dev": true + }, + "code-point-at": { + "version": "1.1.0", + "optional": true + }, + "coercer": { + "version": "1.1.2" + }, + "collect-v8-coverage": { + "version": "1.0.1", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3" + }, + "color-support": { + "version": "1.1.3" + }, + "colorette": { + "version": "1.2.2" + }, + "colors": { + "version": "1.4.0" + }, + "combined-stream": { + "version": "1.0.8", + "devOptional": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "7.2.0" + }, + "comment-json": { + "version": "4.2.3", + "dev": true, + "requires": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.3", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1" + }, + "concat-stream": { + "version": "1.6.2", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.2" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "config-chain": { + "version": "1.1.13", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "configstore": { + "version": "6.0.0", + "requires": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + } + }, + "consola": { + "version": "2.15.3" + }, + "console-control-strings": { + "version": "1.1.0" + }, + "constant-case": { + "version": "3.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "content-disposition": { + "version": "0.5.4", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5" + }, + "convert-hrtime": { + "version": "5.0.0" + }, + "convert-source-map": { + "version": "1.7.0", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "dev": true + } + } + }, + "cookie": { + "version": "0.4.2" + }, + "cookie-signature": { + "version": "1.0.6" + }, + "core-js": { + "version": "3.27.2", + "dev": true + }, + "core-util-is": { + "version": "1.0.2" + }, + "cors": { + "version": "2.8.5", + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "corser": { + "version": "2.0.1" + }, + "cosmiconfig": { + "version": "7.1.0", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "dependencies": { + "parse-json": { + "version": "5.2.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + } + } + }, + "create-hash": { + "version": "1.2.0", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "create-require": { + "version": "1.1.1", + "dev": true + }, + "cross-env": { + "version": "5.2.1", + "dev": true, + "requires": { + "cross-spawn": "^6.0.5" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "path-key": { + "version": "2.0.1", + "dev": true + }, + "semver": { + "version": "5.7.1", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "dev": true + }, + "which": { + "version": "1.3.1", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "cross-spawn": { + "version": "7.0.3", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-js": { + "version": "4.1.1" + }, + "crypto-random-string": { + "version": "4.0.0", + "requires": { + "type-fest": "^1.0.1" + }, + "dependencies": { + "type-fest": { + "version": "1.4.0" + } + } + }, + "dag-jose": { + "version": "4.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + } + } + }, + "dag-jose-utils": { + "version": "2.0.0", + "requires": { + "@ipld/dag-cbor": "^7.0.1", + "multiformats": "^9.5.1" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "7.0.3", + "requires": { + "cborg": "^1.6.0", + "multiformats": "^9.5.4" + } + }, + "multiformats": { + "version": "9.9.0" + } + } + }, + "dashdash": { + "version": "1.14.1", + "optional": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "datastore-core": { + "version": "8.0.2", + "requires": { + "@libp2p/logger": "^2.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^1.0.4", + "it-drain": "^1.0.4", + "it-filter": "^1.0.2", + "it-map": "^1.0.5", + "it-merge": "^1.0.1", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-take": "^1.0.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.0" + }, + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "datastore-fs": { + "version": "8.0.0", + "requires": { + "datastore-core": "^8.0.1", + "fast-write-atomic": "^0.2.0", + "interface-datastore": "^7.0.0", + "it-glob": "^1.0.1", + "it-map": "^1.0.5", + "it-parallel-batch": "^1.0.9", + "mkdirp": "^1.0.4" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4" + } + } + }, + "datastore-level": { + "version": "9.0.4", + "requires": { + "abstract-level": "^1.0.3", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "it-filter": "^2.0.0", + "it-map": "^2.0.0", + "it-sort": "^2.0.0", + "it-take": "^2.0.0", + "level": "8.0.0" + }, + "dependencies": { + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-take": { + "version": "2.0.0" + } + } + }, + "datastore-pubsub": { + "version": "7.0.0", + "requires": { + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.0", + "datastore-core": "^8.0.1", + "interface-datastore": "^7.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "dateformat": { + "version": "4.6.3" + }, + "debug": { + "version": "4.3.4", + "requires": { + "ms": "2.1.2" + } + }, + "decompress-response": { + "version": "6.0.0", + "requires": { + "mimic-response": "^3.1.0" + }, + "dependencies": { + "mimic-response": { + "version": "3.1.0" + } + } + }, + "dedent": { + "version": "0.7.0", + "dev": true + }, + "deep-extend": { + "version": "0.6.0" + }, + "deepmerge": { + "version": "4.3.0", + "dev": true + }, + "default-gateway": { + "version": "6.0.3", + "requires": { + "execa": "^5.0.0" + } + }, + "defaults": { + "version": "1.0.4", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "defer-to-connect": { + "version": "2.0.1" + }, + "deferred-leveldown": { + "version": "5.1.0", + "requires": { + "abstract-leveldown": "~6.0.0", + "inherits": "^2.0.3" + }, + "dependencies": { + "abstract-leveldown": { + "version": "6.0.3", + "requires": { + "level-concat-iterator": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "level-concat-iterator": { + "version": "2.0.1" + } + } + }, + "define-properties": { + "version": "1.1.3", + "requires": { + "object-keys": "^1.0.12" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1" + } + } + }, + "delay": { + "version": "5.0.0" + }, + "delayed-stream": { + "version": "1.0.0", + "devOptional": true + }, + "delegates": { + "version": "1.0.0" + }, + "denque": { + "version": "1.5.1" + }, + "depd": { + "version": "2.0.0" + }, + "destroy": { + "version": "1.2.0" + }, + "detect-libc": { + "version": "2.0.1" + }, + "detect-newline": { + "version": "3.1.0", + "dev": true + }, + "dezalgo": { + "version": "1.0.4", + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "did-jwt": { + "version": "6.11.0", + "requires": { + "@stablelib/ed25519": "^1.0.2", + "@stablelib/random": "^1.0.1", + "@stablelib/sha256": "^1.0.1", + "@stablelib/x25519": "^1.0.2", + "@stablelib/xchacha20poly1305": "^1.0.1", + "bech32": "^2.0.0", + "canonicalize": "^1.0.8", + "did-resolver": "^4.0.0", + "elliptic": "^6.5.4", + "js-sha3": "^0.8.0", + "multiformats": "^9.6.5", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "bech32": { + "version": "2.0.0" + }, + "did-resolver": { + "version": "4.0.1" + }, + "multiformats": { + "version": "9.9.0" + } + } + }, + "did-resolver": { + "version": "3.2.2" + }, + "dids": { + "version": "3.4.0", + "requires": { + "@didtools/cacao": "^1.0.0", + "@didtools/pkh-ethereum": "^0.0.1", + "@stablelib/random": "^1.0.1", + "dag-jose-utils": "^2.0.0", + "did-jwt": "^6.0.0", + "did-resolver": "^3.1.5", + "multiformats": "^9.4.10", + "rpc-utils": "^0.6.1", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "diff": { + "version": "4.0.2", + "dev": true + }, + "diff-match-patch": { + "version": "1.0.5" + }, + "diff-sequences": { + "version": "29.4.2", + "dev": true + }, + "dlv": { + "version": "1.1.3" + }, + "dns-over-http-resolver": { + "version": "1.2.3", + "requires": { + "debug": "^4.3.1", + "native-fetch": "^3.0.0", + "receptacle": "^1.3.2" + } + }, + "dns-packet": { + "version": "5.4.0", + "requires": { + "@leichtgewicht/ip-codec": "^2.0.1" + } + }, + "domexception": { + "version": "1.0.1", + "optional": true, + "requires": { + "webidl-conversions": "^4.0.2" + }, + "dependencies": { + "webidl-conversions": { + "version": "4.0.2", + "optional": true + } + } + }, + "dot-case": { + "version": "3.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "6.0.1", + "requires": { + "is-obj": "^2.0.0" + } + }, + "dotenv": { + "version": "8.2.0" + }, + "drbg.js": { + "version": "1.0.1", + "requires": { + "browserify-aes": "^1.0.6", + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4" + } + }, + "eastasianwidth": { + "version": "0.2.0" + }, + "ecc-jsbn": { + "version": "0.1.2", + "optional": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "jsbn": { + "version": "0.1.1", + "optional": true + } + } + }, + "ecstatic": { + "version": "3.3.2", + "requires": { + "he": "^1.1.1", + "mime": "^1.6.0", + "minimist": "^1.1.0", + "url-join": "^2.0.5" + } + }, + "ee-first": { + "version": "1.1.1" + }, + "ejs": { + "version": "3.1.8", + "requires": { + "jake": "^10.8.5" + } + }, + "electron": { + "version": "1.8.8", + "optional": true, + "requires": { + "@types/node": "^8.0.24", + "electron-download": "^3.0.1", + "extract-zip": "^1.0.3" + }, + "dependencies": { + "@types/node": { + "version": "8.10.66", + "optional": true + } + } + }, + "electron-download": { + "version": "3.3.0", + "optional": true, + "requires": { + "debug": "^2.2.0", + "fs-extra": "^0.30.0", + "home-path": "^1.0.1", + "minimist": "^1.2.0", + "nugget": "^2.0.0", + "path-exists": "^2.1.0", + "rc": "^1.1.2", + "semver": "^5.3.0", + "sumchecker": "^1.2.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + }, + "semver": { + "version": "5.7.1", + "optional": true + } + } + }, + "electron-eval": { + "version": "0.9.10", + "optional": true, + "requires": { + "cross-spawn": "^5.1.0", + "electron": "^1.6.11", + "headless": "https://github.com/paulkernfeld/node-headless/tarball/master", + "ndjson": "^1.5.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "optional": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "lru-cache": { + "version": "4.1.5", + "optional": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "optional": true + }, + "which": { + "version": "1.3.1", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "optional": true + } + } + }, + "electron-fetch": { + "version": "1.7.4", + "requires": { + "encoding": "^0.1.13" + } + }, + "electron-to-chromium": { + "version": "1.3.749" + }, + "electron-webrtc": { + "version": "0.3.0", + "optional": true, + "requires": { + "debug": "^2.2.0", + "electron-eval": "^0.9.0", + "get-browser-rtc": "^1.0.2", + "hat": "^0.0.3" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + } + } + }, + "elliptic": { + "version": "6.5.4", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "emittery": { + "version": "0.13.1", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0" + }, + "emojis-list": { + "version": "3.0.0" + }, + "encodeurl": { + "version": "1.0.2" + }, + "encoding": { + "version": "0.1.13", + "requires": { + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.2", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "end-of-stream": { + "version": "1.4.4", + "requires": { + "once": "^1.4.0" + } + }, + "engine.io": { + "version": "6.4.0", + "requires": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.11.0" + } + }, + "engine.io-client": { + "version": "6.2.3", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.2.3", + "xmlhttprequest-ssl": "~2.0.0" + }, + "dependencies": { + "ws": { + "version": "8.2.3", + "requires": {} + } + } + }, + "engine.io-parser": { + "version": "5.0.4" + }, + "enhanced-resolve": { + "version": "5.15.0", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "envinfo": { + "version": "7.8.1", + "dev": true + }, + "err-code": { + "version": "3.0.1" + }, + "errno": { + "version": "0.1.8", + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-module-lexer": { + "version": "0.9.3" + }, + "es-to-primitive": { + "version": "1.2.1", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es6-object-assign": { + "version": "1.1.0" + }, + "es6-promise": { + "version": "4.2.8", + "optional": true + }, + "escalade": { + "version": "3.1.1" + }, + "escape-goat": { + "version": "4.0.0" + }, + "escape-html": { + "version": "1.0.3" + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "eslint-scope": { + "version": "5.1.1", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "esprima": { + "version": "4.0.1", + "dev": true + }, + "esrecurse": { + "version": "4.3.0", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0" + } + } + }, + "estraverse": { + "version": "4.3.0" + }, + "etag": { + "version": "1.8.1" + }, + "ethers": { + "version": "5.7.2", + "requires": { + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/base64": "5.7.0", + "@ethersproject/basex": "5.7.0", + "@ethersproject/bignumber": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/constants": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/networks": "5.7.1", + "@ethersproject/pbkdf2": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/rlp": "5.7.0", + "@ethersproject/sha2": "5.7.0", + "@ethersproject/signing-key": "5.7.0", + "@ethersproject/solidity": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/units": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/web": "5.7.1", + "@ethersproject/wordlists": "5.7.0" + } + }, + "event-iterator": { + "version": "2.0.0" + }, + "event-target-shim": { + "version": "5.0.1" + }, + "eventemitter3": { + "version": "4.0.7" + }, + "events": { + "version": "3.3.0" + }, + "evp_bytestokey": { + "version": "1.0.3", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "execa": { + "version": "5.1.1", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "dev": true + }, + "expect": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/expect-utils": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2" + }, + "dependencies": { + "jest-get-type": { + "version": "29.4.2", + "dev": true + } + } + }, + "express": { + "version": "4.18.2", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "cookie": { + "version": "0.5.0" + }, + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + }, + "path-to-regexp": { + "version": "0.1.7" + } + } + }, + "extend": { + "version": "3.0.2", + "optional": true + }, + "external-editor": { + "version": "3.1.0", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": { + "tmp": { + "version": "0.0.33", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + } + } + }, + "extract-zip": { + "version": "1.7.0", + "optional": true, + "requires": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + } + } + }, + "extsprintf": { + "version": "1.3.0", + "optional": true + }, + "fast-deep-equal": { + "version": "3.1.3" + }, + "fast-fifo": { + "version": "1.0.0" + }, + "fast-json-stable-stringify": { + "version": "2.1.0" + }, + "fast-redact": { + "version": "3.1.2" + }, + "fast-safe-stringify": { + "version": "2.1.1" + }, + "fast-write-atomic": { + "version": "0.2.1" + }, + "fastest-levenshtein": { + "version": "1.0.16", + "dev": true + }, + "fb-watchman": { + "version": "2.0.1", + "requires": { + "bser": "2.1.1" + } + }, + "fd-slicer": { + "version": "1.1.0", + "optional": true, + "requires": { + "pend": "~1.2.0" + } + }, + "fetch-mock": { + "version": "9.11.0", + "dev": true, + "requires": { + "@babel/core": "^7.0.0", + "@babel/runtime": "^7.0.0", + "core-js": "^3.0.0", + "debug": "^4.1.1", + "glob-to-regexp": "^0.4.0", + "is-subset": "^0.1.1", + "lodash.isequal": "^4.5.0", + "path-to-regexp": "^2.2.1", + "querystring": "^0.2.0", + "whatwg-url": "^6.5.0" + }, + "dependencies": { + "tr46": { + "version": "1.0.1", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "dev": true + }, + "whatwg-url": { + "version": "6.5.0", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "fetch-mock-jest": { + "version": "1.5.1", + "dev": true, + "requires": { + "fetch-mock": "^9.11.0" + } + }, + "figures": { + "version": "3.2.0", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-type": { + "version": "18.2.0", + "requires": { + "readable-web-to-node-stream": "^3.0.2", + "strtok3": "^7.0.0", + "token-types": "^5.0.1" + } + }, + "file-uri-to-path": { + "version": "1.0.0" + }, + "filelist": { + "version": "1.0.4", + "requires": { + "minimatch": "^5.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "filesize": { + "version": "10.0.6" + }, + "fill-range": { + "version": "7.0.1", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "flatstr": { + "version": "1.0.12" + }, + "fnv1a": { + "version": "1.1.1" + }, + "follow-redirects": { + "version": "1.14.1" + }, + "foreach": { + "version": "2.0.5" + }, + "forever-agent": { + "version": "0.6.1", + "optional": true + }, + "fork-ts-checker-webpack-plugin": { + "version": "8.0.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.22.5", + "dev": true, + "requires": { + "@babel/highlight": "^7.22.5" + } + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "form-data": { + "version": "3.0.0", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "form-data-encoder": { + "version": "2.1.4" + }, + "formidable": { + "version": "2.1.1", + "requires": { + "dezalgo": "^1.0.4", + "hexoid": "^1.0.0", + "once": "^1.4.0", + "qs": "^6.11.0" + } + }, + "freeport-promise": { + "version": "2.0.0" + }, + "fresh": { + "version": "0.5.2" + }, + "fs-extra": { + "version": "0.30.0", + "optional": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "optional": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "fs-minipass": { + "version": "2.1.0", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "fs-monkey": { + "version": "1.0.4", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0" + }, + "function-bind": { + "version": "1.1.1" + }, + "function-timeout": { + "version": "0.1.1" + }, + "gar": { + "version": "1.0.4" + }, + "gauge": { + "version": "3.0.2", + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "dev": true + }, + "get-browser-rtc": { + "version": "1.1.0", + "optional": true + }, + "get-caller-file": { + "version": "2.0.5" + }, + "get-folder-size": { + "version": "4.0.0", + "requires": { + "gar": "^1.0.4" + } + }, + "get-intrinsic": { + "version": "1.1.1", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-iterator": { + "version": "1.0.2" + }, + "get-package-type": { + "version": "0.1.0", + "dev": true + }, + "get-port": { + "version": "5.1.1" + }, + "get-stream": { + "version": "6.0.1" + }, + "get-symbol-description": { + "version": "1.0.0", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "getpass": { + "version": "0.1.7", + "optional": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.2.0", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1" + }, + "global-dirs": { + "version": "3.0.1", + "requires": { + "ini": "2.0.0" + }, + "dependencies": { + "ini": { + "version": "2.0.0" + } + } + }, + "go-ipfs": { + "version": "npm:mocked-go-ipfs@0.17.0" + }, + "graceful-fs": { + "version": "4.2.10" + }, + "hamt-sharding": { + "version": "3.0.2", + "requires": { + "sparse-array": "^1.3.1", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "hapi-pino": { + "version": "8.5.0", + "requires": { + "@hapi/hoek": "^9.0.0", + "abstract-logging": "^2.0.0", + "pino": "^6.0.0", + "pino-pretty": "^4.0.0" + } + }, + "har-schema": { + "version": "2.0.0", + "optional": true + }, + "har-validator": { + "version": "5.1.5", + "optional": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.1" + }, + "has-flag": { + "version": "3.0.0" + }, + "has-own-prop": { + "version": "2.0.0", + "dev": true + }, + "has-symbols": { + "version": "1.0.2" + }, + "has-tostringtag": { + "version": "1.0.0", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-unicode": { + "version": "2.0.1" + }, + "has-yarn": { + "version": "3.0.0" + }, + "hash-base": { + "version": "3.1.0", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "hash.js": { + "version": "1.1.7", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hashlru": { + "version": "2.3.0" + }, + "hat": { + "version": "0.0.3", + "optional": true + }, + "he": { + "version": "1.2.0" + }, + "header-case": { + "version": "2.0.4", + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "headless": { + "version": "1.1.0", + "optional": true + }, + "hexoid": { + "version": "1.0.0" + }, + "hmac-drbg": { + "version": "1.0.1", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "home-path": { + "version": "1.0.7", + "optional": true + }, + "html-escaper": { + "version": "2.0.2", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.0" + }, + "http-errors": { + "version": "2.0.0", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-proxy": { + "version": "1.18.1", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-server": { + "version": "0.12.3", + "requires": { + "basic-auth": "^1.0.3", + "colors": "^1.4.0", + "corser": "^2.0.1", + "ecstatic": "^3.3.2", + "http-proxy": "^1.18.0", + "minimist": "^1.2.5", + "opener": "^1.5.1", + "portfinder": "^1.0.25", + "secure-compare": "3.0.1", + "union": "~0.5.0" + } + }, + "http-signature": { + "version": "1.2.0", + "optional": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0" + }, + "iconv-lite": { + "version": "0.4.24", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1" + }, + "image-size": { + "version": "1.0.1", + "requires": { + "queue": "6.0.2" + } + }, + "import-fresh": { + "version": "3.3.0", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-lazy": { + "version": "4.0.0" + }, + "import-local": { + "version": "3.1.0", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4" + }, + "indent-string": { + "version": "4.0.0" + }, + "inflight": { + "version": "1.0.6", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4" + }, + "ini": { + "version": "1.3.8" + }, + "inquirer": { + "version": "8.2.5", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "interface-blockstore": { + "version": "4.0.1", + "requires": { + "interface-store": "^3.0.0", + "multiformats": "^11.0.0" + } + }, + "interface-datastore": { + "version": "7.0.4", + "requires": { + "interface-store": "^3.0.0", + "nanoid": "^4.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "nanoid": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "interface-store": { + "version": "3.0.4" + }, + "internal-slot": { + "version": "1.0.3", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "3.1.1", + "dev": true + }, + "ip": { + "version": "1.1.5" + }, + "ip-regex": { + "version": "4.3.0" + }, + "ipaddr.js": { + "version": "1.9.1" + }, + "ipfs": { + "version": "0.66.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "electron-webrtc": "^0.3.0", + "ipfs-cli": "^0.16.0", + "ipfs-core": "^0.18.0", + "semver": "^7.3.2", + "update-notifier": "^6.0.0", + "wrtc": "^0.4.6" + } + }, + "ipfs-bitswap": { + "version": "15.0.2", + "requires": { + "@libp2p/interface-connection": "^3.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-store": "^1.2.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/topology": "^4.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@vascosantos/moving-average": "^1.1.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "blockstore-core": "^3.0.0", + "interface-blockstore": "^4.0.0", + "it-length-prefixed": "^8.0.2", + "it-pipe": "^2.0.4", + "just-debounce-it": "^3.0.1", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "readable-stream": "^4.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0", + "varint-decoder": "^1.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "readable-stream": { + "version": "4.3.0", + "requires": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-cli": { + "version": "0.16.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "byteman": "^1.3.5", + "execa": "^6.1.0", + "get-folder-size": "^4.0.0", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-daemon": "^0.16.0", + "ipfs-http-client": "^60.0.0", + "ipfs-utils": "^9.0.13", + "it-concat": "^3.0.1", + "it-merge": "^2.0.0", + "it-pipe": "^2.0.3", + "it-split": "^2.0.0", + "it-tar": "^6.0.0", + "jsondiffpatch": "^0.4.1", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "pretty-bytes": "^6.0.0", + "progress": "^2.0.3", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2", + "yargs": "^17.4.0" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "execa": { + "version": "6.1.0", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + } + }, + "human-signals": { + "version": "3.0.1" + }, + "is-stream": { + "version": "3.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "mimic-fn": { + "version": "4.0.0" + }, + "npm-run-path": { + "version": "5.1.0", + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0" + }, + "strip-final-newline": { + "version": "3.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-core": { + "version": "0.18.0", + "requires": { + "@chainsafe/libp2p-noise": "^11.0.0", + "@ipld/car": "^5.0.0", + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/bootstrap": "^6.0.0", + "@libp2p/crypto": "^1.0.0", + "@libp2p/delegated-content-routing": "^4.0.0", + "@libp2p/delegated-peer-routing": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.6", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.2.0", + "@libp2p/kad-dht": "^7.0.0", + "@libp2p/logger": "^2.0.5", + "@libp2p/mplex": "^7.1.1", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/record": "^3.0.0", + "@libp2p/websockets": "^5.0.0", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.1.5", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "@multiformats/murmur3": "^2.0.0", + "any-signal": "^3.0.0", + "array-shuffle": "^3.0.0", + "blockstore-core": "^3.0.0", + "browser-readablestream-to-it": "^2.0.0", + "dag-jose": "^4.0.0", + "datastore-core": "^8.0.1", + "datastore-pubsub": "^7.0.0", + "dlv": "^1.1.3", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "hashlru": "^2.3.0", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-bitswap": "^15.0.0", + "ipfs-core-config": "^0.7.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-client": "^60.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-unixfs-exporter": "^10.0.0", + "ipfs-unixfs-importer": "^12.0.0", + "ipfs-utils": "^9.0.9", + "ipns": "^5.0.1", + "is-domain-name": "^1.0.1", + "is-ipfs": "^8.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel": "^3.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-tar": "^6.0.0", + "it-to-buffer": "^3.0.0", + "just-safe-set": "^4.0.2", + "libp2p": "^0.42.0", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "pako": "^2.0.4", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-core-config": { + "version": "0.7.0", + "requires": { + "@chainsafe/libp2p-gossipsub": "^6.0.0", + "@libp2p/floodsub": "^6.0.0", + "@libp2p/logger": "^2.0.2", + "@libp2p/mdns": "^6.0.0", + "@libp2p/prometheus-metrics": "^1.0.1", + "@libp2p/tcp": "^6.0.2", + "@libp2p/webrtc-star": "^6.0.0", + "blockstore-datastore-adapter": "^5.0.0", + "datastore-core": "^8.0.1", + "datastore-fs": "^8.0.0", + "datastore-level": "^9.0.0", + "err-code": "^3.0.1", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "ipfs-repo": "^17.0.0", + "ipfs-utils": "^9.0.13", + "is-ipfs": "^8.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-foreach": "^1.0.0", + "p-queue": "^7.2.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-core-types": { + "version": "0.14.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-keychain": "^2.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/node": "^18.0.0", + "interface-datastore": "^7.0.0", + "ipfs-unixfs": "^9.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@types/node": { + "version": "18.11.19" + } + } + }, + "ipfs-core-utils": { + "version": "0.18.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", + "any-signal": "^3.0.0", + "blob-to-it": "^2.0.0", + "browser-readablestream-to-it": "^2.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-unixfs": "^9.0.0", + "ipfs-utils": "^9.0.13", + "it-all": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "nanoid": "^4.0.0", + "parse-duration": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "nanoid": { + "version": "4.0.1" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-daemon": { + "version": "0.16.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "@libp2p/webrtc-star": "^6.0.0", + "@mapbox/node-pre-gyp": "^1.0.5", + "electron-webrtc": "^0.3.0", + "ipfs-core": "^0.18.0", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-server": "^0.12.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-http-server": "^0.15.0", + "ipfs-utils": "^9.0.13", + "libp2p": "^0.42.0", + "prom-client": "^14.0.1", + "wrtc": "^0.4.6" + } + }, + "ipfs-grpc-protocol": { + "version": "0.8.0" + }, + "ipfs-grpc-server": { + "version": "0.12.0", + "requires": { + "@grpc/grpc-js": "^1.1.8", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "change-case": "^4.1.1", + "coercer": "^1.1.2", + "ipfs-core-types": "^0.14.0", + "ipfs-grpc-protocol": "^0.8.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "nanoid": "^4.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "ws": "^8.5.0" + }, + "dependencies": { + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + }, + "long": { + "version": "5.2.1" + }, + "nanoid": { + "version": "4.0.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-http-client": { + "version": "60.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-json": "^10.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "any-signal": "^3.0.0", + "dag-jose": "^4.0.0", + "err-code": "^3.0.1", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-utils": "^9.0.13", + "it-first": "^2.0.0", + "it-last": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "stream-to-it": "^0.2.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-first": { + "version": "2.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-http-gateway": { + "version": "0.13.0", + "requires": { + "@hapi/ammo": "^5.0.1", + "@hapi/boom": "^9.1.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/logger": "^2.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-http-response": "^6.0.0", + "is-ipfs": "^8.0.0", + "it-last": "^2.0.0", + "it-to-stream": "^1.0.0", + "joi": "^17.2.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-http-response": { + "version": "6.0.0", + "requires": { + "@libp2p/logger": "^2.0.0", + "ejs": "^3.1.6", + "file-type": "^18.0.0", + "filesize": "^10.0.5", + "it-map": "^2.0.0", + "it-reader": "^6.0.1", + "it-to-stream": "^1.0.0", + "mime-types": "^2.1.30", + "p-try-each": "^1.0.1" + }, + "dependencies": { + "it-map": { + "version": "2.0.0" + } + } + }, + "ipfs-http-server": { + "version": "0.15.0", + "requires": { + "@hapi/boom": "^9.1.0", + "@hapi/content": "^5.0.2", + "@hapi/hapi": "^20.0.0", + "@ipld/dag-pb": "^4.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/uri-to-multiaddr": "^7.0.0", + "any-signal": "^3.0.0", + "dlv": "^1.1.3", + "hapi-pino": "^8.5.0", + "ipfs-core-types": "^0.14.0", + "ipfs-core-utils": "^0.18.0", + "ipfs-http-gateway": "^0.13.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-multipart": "^3.0.0", + "it-pipe": "^2.0.3", + "it-pushable": "^3.0.0", + "it-reduce": "^2.0.0", + "joi": "^17.2.1", + "just-safe-set": "^4.0.2", + "multiformats": "^11.0.0", + "parse-duration": "^1.0.0", + "prom-client": "^14.0.1", + "stream-to-it": "^0.2.2", + "timeout-abort-controller": "^3.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-log": { + "version": "5.4.2", + "requires": { + "json-stringify-deterministic": "^1.0.1", + "multihashing-async": "^2.0.1", + "orbit-db-identity-provider": "^0.3.1", + "orbit-db-io": "^1.1.2", + "p-do-whilst": "^1.1.0", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-whilst": "^2.1.0" + }, + "dependencies": { + "iso-random-stream": { + "version": "1.1.2", + "requires": { + "buffer": "^6.0.3", + "readable-stream": "^3.4.0" + } + }, + "libp2p-crypto": { + "version": "0.16.4", + "requires": { + "asmcrypto.js": "^2.3.2", + "asn1.js": "^5.0.1", + "async": "^2.6.1", + "bn.js": "^4.11.8", + "browserify-aes": "^1.2.0", + "bs58": "^4.0.1", + "iso-random-stream": "^1.1.0", + "keypair": "^1.0.1", + "libp2p-crypto-secp256k1": "~0.3.0", + "multihashing-async": "~0.5.1", + "node-forge": "^0.10.0", + "pem-jwk": "^2.0.0", + "protons": "^1.0.1", + "rsa-pem-to-jwk": "^1.1.3", + "tweetnacl": "^1.0.0", + "ursa-optional": "~0.10.0" + }, + "dependencies": { + "multihashing-async": { + "version": "0.5.2", + "requires": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + } + } + } + }, + "multibase": { + "version": "0.7.0", + "requires": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + } + } + }, + "multiformats": { + "version": "9.9.0" + }, + "multihashes": { + "version": "0.4.21", + "requires": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + } + } + }, + "orbit-db-identity-provider": { + "version": "0.3.1", + "requires": { + "ethers": "^5.0.8", + "orbit-db-keystore": "~0.3.5" + } + }, + "orbit-db-io": { + "version": "1.1.2", + "requires": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + } + }, + "orbit-db-keystore": { + "version": "0.3.5", + "requires": { + "elliptic": "^6.5.3", + "level": "8.0.0", + "leveldown": "^6", + "levelup": "~4.1.0", + "libp2p-crypto": "^0.16.0", + "libp2p-crypto-secp256k1": "^0.3.0", + "lru": "^3.1.0", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1" + } + }, + "tweetnacl": { + "version": "1.0.3" + }, + "varint": { + "version": "5.0.2" + } + } + }, + "ipfs-pubsub-1on1": { + "version": "0.1.0", + "requires": { + "safe-buffer": "~5.2.1" + } + }, + "ipfs-pubsub-peer-monitor": { + "version": "0.0.10", + "requires": { + "p-forever": "^2.1.0" + } + }, + "ipfs-repo": { + "version": "17.0.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "bytes": "^3.1.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "err-code": "^3.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "ipfs-repo-migrations": "^15.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "just-safe-get": "^4.1.1", + "just-safe-set": "^4.1.1", + "merge-options": "^3.0.4", + "mortice": "^3.0.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "proper-lockfile": "^4.0.0", + "quick-lru": "^6.1.1", + "sort-keys": "^5.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-parallel-batch": { + "version": "2.0.0", + "requires": { + "it-batch": "^2.0.0" + } + }, + "it-pushable": { + "version": "3.1.2" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "quick-lru": { + "version": "6.1.1" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-repo-migrations": { + "version": "15.0.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/multiaddr": "^11.0.0", + "cborg": "^1.3.4", + "datastore-core": "^8.0.1", + "debug": "^4.1.0", + "fnv1a": "^1.0.1", + "interface-blockstore": "^4.0.0", + "interface-datastore": "^7.0.0", + "it-length": "^2.0.0", + "multiformats": "^11.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-unixfs": { + "version": "9.0.0", + "requires": { + "err-code": "^3.0.1", + "protobufjs": "^7.0.0" + }, + "dependencies": { + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.2.1", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + } + } + }, + "ipfs-unixfs-exporter": { + "version": "10.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-last": "^2.0.0", + "it-map": "^2.0.0", + "it-parallel": "^3.0.0", + "it-pipe": "^2.0.4", + "it-pushable": "^3.1.0", + "multiformats": "^11.0.0", + "p-queue": "^7.3.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-map": { + "version": "2.0.0" + }, + "it-pushable": { + "version": "3.1.2" + }, + "p-queue": { + "version": "7.3.3", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-unixfs-importer": { + "version": "12.0.0", + "requires": { + "@ipld/dag-pb": "^4.0.0", + "@multiformats/murmur3": "^2.0.0", + "err-code": "^3.0.1", + "hamt-sharding": "^3.0.0", + "interface-blockstore": "^4.0.0", + "ipfs-unixfs": "^9.0.0", + "it-all": "^2.0.0", + "it-batch": "^2.0.0", + "it-first": "^2.0.0", + "it-parallel-batch": "^2.0.0", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "rabin-wasm": "^0.1.4", + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "it-all": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-parallel-batch": { + "version": "2.0.0", + "requires": { + "it-batch": "^2.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "ipfs-utils": { + "version": "9.0.14", + "requires": { + "any-signal": "^3.0.0", + "browser-readablestream-to-it": "^1.0.0", + "buffer": "^6.0.1", + "electron-fetch": "^1.7.2", + "err-code": "^3.0.1", + "is-electron": "^2.2.0", + "iso-url": "^1.1.5", + "it-all": "^1.0.4", + "it-glob": "^1.0.1", + "it-to-stream": "^1.0.0", + "merge-options": "^3.0.4", + "nanoid": "^3.1.20", + "native-fetch": "^3.0.0", + "node-fetch": "^2.6.8", + "react-native-fetch-api": "^3.0.0", + "stream-to-it": "^0.2.2" + }, + "dependencies": { + "browser-readablestream-to-it": { + "version": "1.0.3" + } + } + }, + "ipfsd-ctl": { + "version": "12.2.2", + "peer": true, + "requires": { + "@hapi/boom": "^10.0.0", + "@hapi/hapi": "^20.0.0", + "@libp2p/interface-peer-id": "^1.0.4", + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "execa": "^6.1.0", + "ipfs-utils": "^9.0.1", + "joi": "^17.2.1", + "merge-options": "^3.0.1", + "nanoid": "^4.0.0", + "p-wait-for": "^5.0.0", + "temp-write": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "dependencies": { + "@hapi/boom": { + "version": "10.0.0", + "peer": true, + "requires": { + "@hapi/hoek": "10.x.x" + } + }, + "@hapi/hoek": { + "version": "10.0.1", + "peer": true + }, + "execa": { + "version": "6.1.0", + "peer": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "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" + } + }, + "human-signals": { + "version": "3.0.1", + "peer": true + }, + "is-stream": { + "version": "3.0.0", + "peer": true + }, + "mimic-fn": { + "version": "4.0.0", + "peer": true + }, + "nanoid": { + "version": "4.0.0", + "peer": true + }, + "npm-run-path": { + "version": "5.1.0", + "peer": true, + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "peer": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0", + "peer": true + }, + "strip-final-newline": { + "version": "3.0.0", + "peer": true + }, + "wherearewe": { + "version": "2.0.1", + "peer": true, + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "ipns": { + "version": "5.0.1", + "requires": { + "@libp2p/crypto": "^1.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-keys": "^1.0.3", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "cborg": "^1.3.3", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "timestamp-nano": "^1.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "2.0.5" + }, + "is-callable": { + "version": "1.2.4" + }, + "is-core-module": { + "version": "2.8.0", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-domain-name": { + "version": "1.0.1" + }, + "is-electron": { + "version": "2.2.1" + }, + "is-extglob": { + "version": "2.1.1", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0" + }, + "is-generator-fn": { + "version": "2.1.0", + "dev": true + }, + "is-generator-function": { + "version": "1.0.10", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.4.0", + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-interactive": { + "version": "1.0.0", + "dev": true + }, + "is-ip": { + "version": "3.1.0", + "requires": { + "ip-regex": "^4.0.0" + } + }, + "is-ipfs": { + "version": "8.0.1", + "requires": { + "@multiformats/mafmt": "^11.0.3", + "@multiformats/multiaddr": "^11.0.0", + "iso-url": "^1.1.3", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "is-nan": { + "version": "1.3.2", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "is-negative-zero": { + "version": "2.0.1" + }, + "is-node": { + "version": "1.0.2" + }, + "is-npm": { + "version": "6.0.0" + }, + "is-number": { + "version": "7.0.0" + }, + "is-number-object": { + "version": "1.0.6", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0" + }, + "is-path-inside": { + "version": "3.0.3" + }, + "is-plain-obj": { + "version": "2.1.0" + }, + "is-plain-object": { + "version": "2.0.4", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-promise": { + "version": "1.0.1" + }, + "is-regex": { + "version": "1.1.4", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "3.1.0" + }, + "is-shared-array-buffer": { + "version": "1.0.1" + }, + "is-stream": { + "version": "2.0.1" + }, + "is-string": { + "version": "1.0.7", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-subset": { + "version": "0.1.1", + "dev": true + }, + "is-symbol": { + "version": "1.0.4", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.8", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0" + }, + "dependencies": { + "es-abstract": { + "version": "1.19.1", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "object-keys": { + "version": "1.1.1" + } + } + }, + "is-typedarray": { + "version": "1.0.0" + }, + "is-unicode-supported": { + "version": "0.1.0", + "dev": true + }, + "is-weakref": { + "version": "1.0.1", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-yarn-global": { + "version": "0.4.1" + }, + "isarray": { + "version": "1.0.0" + }, + "isexe": { + "version": "2.0.0" + }, + "iso-constants": { + "version": "0.1.2" + }, + "iso-random-stream": { + "version": "2.0.2", + "requires": { + "events": "^3.3.0", + "readable-stream": "^3.4.0" + } + }, + "iso-url": { + "version": "1.2.1" + }, + "isobject": { + "version": "3.0.1", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "optional": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.5", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "it-all": { + "version": "1.0.6" + }, + "it-batch": { + "version": "2.0.0" + }, + "it-batched-bytes": { + "version": "1.0.0", + "requires": { + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.4.1" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-concat": { + "version": "3.0.1", + "requires": { + "uint8arraylist": "^2.3.3", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-drain": { + "version": "1.0.5" + }, + "it-filter": { + "version": "1.0.3" + }, + "it-first": { + "version": "1.0.7" + }, + "it-foreach": { + "version": "1.0.0" + }, + "it-glob": { + "version": "1.0.2", + "requires": { + "@types/minimatch": "^3.0.4", + "minimatch": "^3.0.4" + } + }, + "it-handshake": { + "version": "4.1.2", + "requires": { + "it-pushable": "^3.1.0", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.0.0" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.0" + }, + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-last": { + "version": "2.0.0" + }, + "it-length": { + "version": "2.0.0" + }, + "it-length-prefixed": { + "version": "8.0.4", + "requires": { + "err-code": "^3.0.1", + "it-stream-types": "^1.0.4", + "uint8-varint": "^1.0.1", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-map": { + "version": "1.0.6" + }, + "it-merge": { + "version": "1.0.4", + "requires": { + "it-pushable": "^1.4.0" + } + }, + "it-multipart": { + "version": "3.0.0", + "requires": { + "formidable": "^2.0.1", + "it-pushable": "^3.1.0" + }, + "dependencies": { + "it-pushable": { + "version": "3.1.2" + } + } + }, + "it-pair": { + "version": "2.0.3", + "requires": { + "it-stream-types": "^1.0.3", + "p-defer": "^4.0.0" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-parallel": { + "version": "3.0.0", + "requires": { + "p-defer": "^4.0.0" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + } + } + }, + "it-parallel-batch": { + "version": "1.0.11", + "requires": { + "it-batch": "^1.0.9" + }, + "dependencies": { + "it-batch": { + "version": "1.0.9" + } + } + }, + "it-pb-stream": { + "version": "2.0.2", + "requires": { + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + } + }, + "it-peekable": { + "version": "2.0.0" + }, + "it-pipe": { + "version": "2.0.5", + "requires": { + "it-merge": "^2.0.0", + "it-pushable": "^3.1.0", + "it-stream-types": "^1.0.3" + }, + "dependencies": { + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.2" + } + } + }, + "it-pushable": { + "version": "1.4.2", + "requires": { + "fast-fifo": "^1.0.0" + } + }, + "it-reader": { + "version": "6.0.2", + "requires": { + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.0.0" + } + }, + "it-reduce": { + "version": "2.0.0" + }, + "it-sort": { + "version": "2.0.0", + "requires": { + "it-all": "^2.0.0" + }, + "dependencies": { + "it-all": { + "version": "2.0.0" + } + } + }, + "it-split": { + "version": "2.0.1", + "requires": { + "uint8arraylist": "^2.4.1" + } + }, + "it-stream-types": { + "version": "1.0.4" + }, + "it-take": { + "version": "1.0.2" + }, + "it-tar": { + "version": "6.0.1", + "requires": { + "iso-constants": "^0.1.2", + "it-reader": "^6.0.1", + "it-stream-types": "^1.0.4", + "it-to-buffer": "^3.0.0", + "p-defer": "^4.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "p-defer": { + "version": "4.0.0" + }, + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-to-buffer": { + "version": "3.0.0", + "requires": { + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "it-to-stream": { + "version": "1.0.0", + "requires": { + "buffer": "^6.0.3", + "fast-fifo": "^1.0.0", + "get-iterator": "^1.0.2", + "p-defer": "^3.0.0", + "p-fifo": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "it-ws": { + "version": "5.0.6", + "requires": { + "event-iterator": "^2.0.0", + "iso-url": "^1.1.2", + "it-stream-types": "^1.0.2", + "uint8arrays": "^4.0.2", + "ws": "^8.4.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "iterare": { + "version": "1.2.1" + }, + "jake": { + "version": "10.8.5", + "requires": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "async": { + "version": "3.2.4" + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/core": "^29.4.2", + "@jest/types": "^29.4.2", + "import-local": "^3.0.2", + "jest-cli": "^29.4.2" + } + }, + "jest-changed-files": { + "version": "29.4.2", + "dev": true, + "requires": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "dependencies": { + "p-limit": { + "version": "3.1.0", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "dev": true + } + } + }, + "jest-circus": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/expect": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "p-limit": "^3.1.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "dev": true + } + } + }, + "jest-cli": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/core": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.4.2", + "@jest/types": "^29.4.2", + "babel-jest": "^29.4.2", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runner": "^29.4.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "parse-json": { + "version": "5.2.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "29.4.2", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "29.4.2", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "jest-util": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-node": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-mock": "^29.4.2", + "jest-util": "^29.4.2" + } + }, + "jest-get-type": { + "version": "27.5.1" + }, + "jest-haste-map": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.2", + "jest-util": "^29.4.2", + "jest-worker": "^29.4.2", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + } + }, + "jest-leak-detector": { + "version": "29.4.2", + "dev": true, + "requires": { + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + } + } + }, + "jest-matcher-utils": { + "version": "29.4.2", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.4.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.18.6", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "jest-util": "^29.4.2" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "requires": {} + }, + "jest-regex-util": { + "version": "29.4.2", + "devOptional": true + }, + "jest-resolve": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.4.2", + "jest-validate": "^29.4.2", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "resolve.exports": { + "version": "2.0.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "29.4.2", + "dev": true, + "requires": { + "jest-regex-util": "^29.4.2", + "jest-snapshot": "^29.4.2" + } + }, + "jest-runner": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/console": "^29.4.2", + "@jest/environment": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.2", + "jest-environment-node": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-leak-detector": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-runtime": "^29.4.2", + "jest-util": "^29.4.2", + "jest-watcher": "^29.4.2", + "jest-worker": "^29.4.2", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "buffer-from": { + "version": "1.1.2", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.13", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "dev": true + } + } + }, + "jest-runtime": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/environment": "^29.4.2", + "@jest/fake-timers": "^29.4.2", + "@jest/globals": "^29.4.2", + "@jest/source-map": "^29.4.2", + "@jest/test-result": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-mock": "^29.4.2", + "jest-regex-util": "^29.4.2", + "jest-resolve": "^29.4.2", + "jest-snapshot": "^29.4.2", + "jest-util": "^29.4.2", + "semver": "^7.3.5", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "strip-bom": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "27.5.1", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-snapshot": { + "version": "29.4.2", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.4.2", + "@jest/transform": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.4.2", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.4.2", + "jest-get-type": "^29.4.2", + "jest-haste-map": "^29.4.2", + "jest-matcher-utils": "^29.4.2", + "jest-message-util": "^29.4.2", + "jest-util": "^29.4.2", + "natural-compare": "^1.4.0", + "pretty-format": "^29.4.2", + "semver": "^7.3.5" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "jest-get-type": { + "version": "29.4.2", + "dev": true + }, + "pretty-format": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "dev": true + } + } + }, + "react-is": { + "version": "18.2.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/types": "^29.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/types": "^29.4.2", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.2", + "leven": "^3.1.0", + "pretty-format": "^29.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0", + "devOptional": true + }, + "chalk": { + "version": "4.1.2", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "devOptional": true + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "jest-get-type": { + "version": "29.4.2", + "devOptional": true + }, + "leven": { + "version": "3.1.0", + "devOptional": true + }, + "pretty-format": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@jest/schemas": "^29.4.2", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "devOptional": true + } + } + }, + "react-is": { + "version": "18.2.0", + "devOptional": true + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "29.4.2", + "dev": true, + "requires": { + "@jest/test-result": "^29.4.2", + "@jest/types": "^29.4.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.4.2", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "29.4.2", + "devOptional": true, + "requires": { + "@types/node": "*", + "jest-util": "^29.4.2", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "supports-color": { + "version": "8.1.1", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jmespath": { + "version": "0.15.0" + }, + "joi": { + "version": "17.8.1", + "requires": { + "@hapi/address": "^5.1.0", + "@hapi/formula": "^3.0.2", + "@hapi/hoek": "^11.0.2", + "@hapi/pinpoint": "^2.0.1", + "@hapi/tlds": "^1.0.1", + "@hapi/topo": "^6.0.1" + }, + "dependencies": { + "@hapi/hoek": { + "version": "11.0.2" + }, + "@hapi/topo": { + "version": "6.0.1", + "requires": { + "@hapi/hoek": "^11.0.2" + } + } + } + }, + "joycon": { + "version": "2.2.5" + }, + "js-sha3": { + "version": "0.8.0" + }, + "js-tokens": { + "version": "4.0.0", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "1.1.0" + }, + "jsesc": { + "version": "2.5.2", + "dev": true + }, + "json-buffer": { + "version": "3.0.1" + }, + "json-parse-even-better-errors": { + "version": "2.3.1" + }, + "json-schema": { + "version": "0.4.0", + "optional": true + }, + "json-schema-traverse": { + "version": "0.4.1" + }, + "json-stringify-deterministic": { + "version": "1.0.8" + }, + "json-stringify-safe": { + "version": "5.0.1", + "optional": true + }, + "jsonc-parser": { + "version": "3.2.0", + "dev": true + }, + "jsondiffpatch": { + "version": "0.4.1", + "requires": { + "chalk": "^2.3.0", + "diff-match-patch": "^1.0.0" + } + }, + "jsonfile": { + "version": "2.4.0", + "optional": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsprim": { + "version": "1.4.2", + "optional": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "just-debounce-it": { + "version": "3.2.0" + }, + "just-safe-get": { + "version": "4.2.0" + }, + "just-safe-set": { + "version": "4.2.1" + }, + "k-bucket": { + "version": "5.1.0", + "requires": { + "randombytes": "^2.1.0" + } + }, + "keypair": { + "version": "1.0.4" + }, + "keyv": { + "version": "4.5.2", + "requires": { + "json-buffer": "3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "dev": true + }, + "klaw": { + "version": "1.3.1", + "optional": true, + "requires": { + "graceful-fs": "^4.1.9" + } + }, + "kleur": { + "version": "3.0.3", + "dev": true + }, + "latest-version": { + "version": "7.0.0", + "requires": { + "package-json": "^8.1.0" + } + }, + "level": { + "version": "8.0.0", + "requires": { + "browser-level": "^1.0.1", + "classic-level": "^1.2.0" + } + }, + "level-concat-iterator": { + "version": "3.1.0", + "requires": { + "catering": "^2.1.0" + } + }, + "level-errors": { + "version": "2.0.1", + "requires": { + "errno": "~0.1.1" + } + }, + "level-iterator-stream": { + "version": "4.0.2", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.4.0", + "xtend": "^4.0.2" + } + }, + "level-supports": { + "version": "2.1.0" + }, + "level-transcoder": { + "version": "1.0.1", + "requires": { + "buffer": "^6.0.3", + "module-error": "^1.0.1" + } + }, + "leveldown": { + "version": "6.1.1", + "requires": { + "abstract-leveldown": "^7.2.0", + "napi-macros": "~2.0.0", + "node-gyp-build": "^4.3.0" + } + }, + "levelup": { + "version": "4.1.0", + "requires": { + "deferred-leveldown": "~5.1.0", + "level-errors": "~2.0.0", + "level-iterator-stream": "~4.0.0", + "xtend": "~4.0.0" + } + }, + "leven": { + "version": "2.1.0" + }, + "libp2p": { + "version": "0.42.2", + "requires": { + "@achingbrain/nat-port-mapper": "^1.0.3", + "@libp2p/crypto": "^1.0.4", + "@libp2p/interface-address-manager": "^2.0.0", + "@libp2p/interface-connection": "^3.0.2", + "@libp2p/interface-connection-encrypter": "^3.0.1", + "@libp2p/interface-connection-manager": "^1.1.1", + "@libp2p/interface-content-routing": "^2.0.0", + "@libp2p/interface-dht": "^2.0.0", + "@libp2p/interface-libp2p": "^1.0.0", + "@libp2p/interface-metrics": "^4.0.0", + "@libp2p/interface-peer-discovery": "^1.0.1", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-peer-info": "^1.0.3", + "@libp2p/interface-peer-routing": "^1.0.1", + "@libp2p/interface-peer-store": "^1.2.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@libp2p/interface-registrar": "^2.0.3", + "@libp2p/interface-stream-muxer": "^3.0.0", + "@libp2p/interface-transport": "^2.1.0", + "@libp2p/interfaces": "^3.0.3", + "@libp2p/logger": "^2.0.1", + "@libp2p/multistream-select": "^3.0.0", + "@libp2p/peer-collections": "^3.0.0", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/peer-record": "^5.0.0", + "@libp2p/peer-store": "^6.0.0", + "@libp2p/tracked-map": "^3.0.0", + "@libp2p/utils": "^3.0.2", + "@multiformats/mafmt": "^11.0.2", + "@multiformats/multiaddr": "^11.0.0", + "abortable-iterator": "^4.0.2", + "any-signal": "^3.0.0", + "datastore-core": "^8.0.1", + "err-code": "^3.0.1", + "events": "^3.3.0", + "hashlru": "^2.3.0", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-drain": "^2.0.0", + "it-filter": "^2.0.0", + "it-first": "^2.0.0", + "it-foreach": "^1.0.0", + "it-handshake": "^4.1.2", + "it-length-prefixed": "^8.0.2", + "it-map": "^2.0.0", + "it-merge": "^2.0.0", + "it-pair": "^2.0.2", + "it-pipe": "^2.0.3", + "it-sort": "^2.0.0", + "it-stream-types": "^1.0.4", + "merge-options": "^3.0.4", + "multiformats": "^11.0.0", + "node-forge": "^1.3.1", + "p-fifo": "^1.0.0", + "p-retry": "^5.0.0", + "p-settle": "^5.0.0", + "private-ip": "^3.0.0", + "protons-runtime": "^4.0.1", + "rate-limiter-flexible": "^2.3.11", + "retimer": "^3.0.0", + "sanitize-filename": "^1.6.3", + "set-delayed-interval": "^1.0.0", + "timeout-abort-controller": "^3.0.0", + "uint8arraylist": "^2.3.2", + "uint8arrays": "^4.0.2", + "wherearewe": "^2.0.0", + "xsalsa20": "^1.1.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "requires": { + "multiformats": "^11.0.0" + } + }, + "@libp2p/peer-record": { + "version": "5.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interface-record": "^2.0.1", + "@libp2p/logger": "^2.0.5", + "@libp2p/peer-id": "^2.0.0", + "@libp2p/utils": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "err-code": "^3.0.1", + "interface-datastore": "^7.0.0", + "it-all": "^2.0.0", + "it-filter": "^2.0.0", + "it-foreach": "^1.0.0", + "it-map": "^2.0.0", + "it-pipe": "^2.0.3", + "multiformats": "^11.0.0", + "protons-runtime": "^4.0.1", + "uint8-varint": "^1.0.2", + "uint8arraylist": "^2.1.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + } + }, + "abortable-iterator": { + "version": "4.0.2", + "requires": { + "get-iterator": "^2.0.0", + "it-stream-types": "^1.0.3" + } + }, + "get-iterator": { + "version": "2.0.0" + }, + "ip-regex": { + "version": "5.0.0" + }, + "ipaddr.js": { + "version": "2.0.1" + }, + "it-all": { + "version": "2.0.0" + }, + "it-drain": { + "version": "2.0.0" + }, + "it-filter": { + "version": "2.0.0" + }, + "it-first": { + "version": "2.0.0" + }, + "it-map": { + "version": "2.0.0" + }, + "it-merge": { + "version": "2.0.0", + "requires": { + "it-pushable": "^3.1.0" + } + }, + "it-pushable": { + "version": "3.1.0" + }, + "node-forge": { + "version": "1.3.1" + }, + "private-ip": { + "version": "3.0.0", + "requires": { + "@chainsafe/is-ip": "^2.0.1", + "ip-regex": "^5.0.0", + "ipaddr.js": "^2.0.1", + "netmask": "^2.0.2" + } + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + }, + "dependencies": { + "multiformats": { + "version": "10.0.3" + } + } + }, + "wherearewe": { + "version": "2.0.1", + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "libp2p-crypto": { + "version": "0.21.2", + "requires": { + "@noble/ed25519": "^1.5.1", + "@noble/secp256k1": "^1.3.0", + "err-code": "^3.0.1", + "iso-random-stream": "^2.0.0", + "multiformats": "^9.4.5", + "node-forge": "^1.2.1", + "protobufjs": "^6.11.2", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + }, + "node-forge": { + "version": "1.3.1" + } + } + }, + "libp2p-crypto-secp256k1": { + "version": "0.3.1", + "requires": { + "async": "^2.6.2", + "bs58": "^4.0.1", + "multihashing-async": "~0.6.0", + "nodeify": "^1.0.1", + "safe-buffer": "^5.1.2", + "secp256k1": "^3.6.2" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "multibase": { + "version": "0.7.0", + "requires": { + "base-x": "^3.0.8", + "buffer": "^5.5.0" + } + }, + "multihashes": { + "version": "0.4.21", + "requires": { + "buffer": "^5.5.0", + "multibase": "^0.7.0", + "varint": "^5.0.0" + } + }, + "multihashing-async": { + "version": "0.6.0", + "requires": { + "blakejs": "^1.1.0", + "js-sha3": "~0.8.0", + "multihashes": "~0.4.13", + "murmurhash3js": "^3.0.1", + "nodeify": "^1.0.1" + } + }, + "secp256k1": { + "version": "3.8.0", + "requires": { + "bindings": "^1.5.0", + "bip66": "^1.1.5", + "bn.js": "^4.11.8", + "create-hash": "^1.2.0", + "drbg.js": "^1.0.1", + "elliptic": "^6.5.2", + "nan": "^2.14.0", + "safe-buffer": "^5.1.2" + } + }, + "varint": { + "version": "5.0.2" + } + } + }, + "libphonenumber-js": { + "version": "1.9.44" + }, + "lines-and-columns": { + "version": "1.2.4", + "dev": true + }, + "loader-runner": { + "version": "4.3.0" + }, + "loader-utils": { + "version": "2.0.4", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "dependencies": { + "json5": { + "version": "2.2.3" + } + } + }, + "lodash": { + "version": "4.17.21" + }, + "lodash.camelcase": { + "version": "4.3.0" + }, + "lodash.isequal": { + "version": "4.5.0", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "logplease": { + "version": "1.2.15" + }, + "long": { + "version": "4.0.0" + }, + "longbits": { + "version": "1.1.0", + "requires": { + "byte-access": "^1.0.1", + "uint8arraylist": "^2.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "lru": { + "version": "3.1.0", + "requires": { + "inherits": "^2.0.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "requires": { + "yallist": "^4.0.0" + } + }, + "luxon": { + "version": "1.28.0" + }, + "macos-release": { + "version": "2.5.1", + "dev": true + }, + "magic-string": { + "version": "0.30.0", + "dev": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.13" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0" + } + } + }, + "make-error": { + "version": "1.3.6", + "dev": true + }, + "makeerror": { + "version": "1.0.12", + "requires": { + "tmpl": "1.0.5" + } + }, + "md5.js": { + "version": "1.3.5", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "media-typer": { + "version": "0.3.0" + }, + "memfs": { + "version": "3.5.3", + "dev": true, + "requires": { + "fs-monkey": "^1.0.4" + } + }, + "merge-descriptors": { + "version": "1.0.1" + }, + "merge-options": { + "version": "3.0.4", + "requires": { + "is-plain-obj": "^2.1.0" + } + }, + "merge-stream": { + "version": "2.0.0" + }, + "methods": { + "version": "1.1.2" + }, + "micromatch": { + "version": "4.0.4", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "mime": { + "version": "1.6.0" + }, + "mime-db": { + "version": "1.51.0" + }, + "mime-types": { + "version": "2.1.34", + "requires": { + "mime-db": "1.51.0" + } + }, + "mimic-fn": { + "version": "2.1.0" + }, + "minimalistic-assert": { + "version": "1.0.1" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1" + }, + "minimatch": { + "version": "3.0.4", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8" + }, + "minipass": { + "version": "4.2.8" + }, + "minizlib": { + "version": "2.1.2", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "requires": { + "minimist": "^1.2.5" + } + }, + "mock-fs": { + "version": "5.1.2", + "dev": true + }, + "module-error": { + "version": "1.0.2" + }, + "mortice": { + "version": "3.0.1", + "requires": { + "nanoid": "^4.0.0", + "observable-webworkers": "^2.0.1", + "p-queue": "^7.2.0", + "p-timeout": "^6.0.0" + }, + "dependencies": { + "nanoid": { + "version": "4.0.0" + }, + "p-queue": { + "version": "7.3.0", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + }, + "dependencies": { + "p-timeout": { + "version": "5.1.0" + } + } + }, + "p-timeout": { + "version": "6.0.0" + } + } + }, + "mri": { + "version": "1.1.4" + }, + "ms": { + "version": "2.1.2" + }, + "multer": { + "version": "1.4.4-lts.1", + "requires": { + "append-field": "^1.0.0", + "busboy": "^1.0.0", + "concat-stream": "^1.5.2", + "mkdirp": "^0.5.4", + "object-assign": "^4.1.1", + "type-is": "^1.6.4", + "xtend": "^4.0.0" + } + }, + "multiaddr": { + "version": "10.0.1", + "requires": { + "dns-over-http-resolver": "^1.2.3", + "err-code": "^3.0.1", + "is-ip": "^3.1.0", + "multiformats": "^9.4.5", + "uint8arrays": "^3.0.0", + "varint": "^6.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "multibase": { + "version": "4.0.6", + "requires": { + "@multiformats/base-x": "^4.0.1" + } + }, + "multicast-dns": { + "version": "7.2.5", + "requires": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + } + }, + "multiformats": { + "version": "11.0.2" + }, + "multihashes": { + "version": "4.0.3", + "requires": { + "multibase": "^4.0.1", + "uint8arrays": "^3.0.0", + "varint": "^5.0.2" + }, + "dependencies": { + "varint": { + "version": "5.0.2" + } + } + }, + "multihashing-async": { + "version": "2.1.4", + "requires": { + "blakejs": "^1.1.0", + "err-code": "^3.0.0", + "js-sha3": "^0.8.0", + "multihashes": "^4.0.1", + "murmurhash3js-revisited": "^3.0.0", + "uint8arrays": "^3.0.0" + } + }, + "murmurhash3js": { + "version": "3.0.1" + }, + "murmurhash3js-revisited": { + "version": "3.0.0" + }, + "mute-stream": { + "version": "0.0.8", + "dev": true + }, + "nan": { + "version": "2.17.0" + }, + "nanoid": { + "version": "3.3.4" + }, + "napi-macros": { + "version": "2.0.0" + }, + "native-fetch": { + "version": "3.0.0", + "requires": {} + }, + "natural-compare": { + "version": "1.4.0", + "dev": true + }, + "ndjson": { + "version": "1.5.0", + "optional": true, + "requires": { + "json-stringify-safe": "^5.0.1", + "minimist": "^1.2.0", + "split2": "^2.1.0", + "through2": "^2.0.3" + } + }, + "negotiator": { + "version": "0.6.3" + }, + "neo-async": { + "version": "2.6.2" + }, + "netmask": { + "version": "2.0.2" + }, + "nice-try": { + "version": "1.0.5", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-abort-controller": { + "version": "3.1.1", + "dev": true + }, + "node-addon-api": { + "version": "2.0.2" + }, + "node-emoji": { + "version": "1.11.0", + "dev": true, + "requires": { + "lodash": "^4.17.21" + } + }, + "node-fetch": { + "version": "2.6.9", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "node-forge": { + "version": "0.10.0" + }, + "node-gyp-build": { + "version": "4.3.0" + }, + "node-int64": { + "version": "0.4.0" + }, + "node-releases": { + "version": "1.1.77" + }, + "nodeify": { + "version": "1.0.1", + "requires": { + "is-promise": "~1.0.0", + "promise": "~1.3.0" + } + }, + "nopt": { + "version": "5.0.0", + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0" + }, + "npm-run-path": { + "version": "4.0.1", + "requires": { + "path-key": "^3.0.0" + } + }, + "npmlog": { + "version": "5.0.1", + "requires": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "nugget": { + "version": "2.2.0", + "optional": true, + "requires": { + "debug": "^2.1.3", + "minimist": "^1.1.0", + "pretty-bytes": "^4.0.2", + "progress-stream": "^1.1.0", + "request": "^2.45.0", + "single-line-log": "^1.1.2", + "throttleit": "0.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + }, + "pretty-bytes": { + "version": "4.0.2", + "optional": true + } + } + }, + "number-is-nan": { + "version": "1.0.1", + "optional": true + }, + "oauth-sign": { + "version": "0.9.0", + "optional": true + }, + "object-assign": { + "version": "4.1.1" + }, + "object-inspect": { + "version": "1.11.1" + }, + "object-is": { + "version": "1.1.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "0.4.0", + "optional": true + }, + "object.assign": { + "version": "4.1.2", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1" + } + } + }, + "observable-webworkers": { + "version": "2.0.1" + }, + "on-finished": { + "version": "2.4.1", + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opener": { + "version": "1.5.2" + }, + "optimist": { + "version": "0.3.7", + "requires": { + "wordwrap": "~0.0.2" + } + }, + "ora": { + "version": "5.4.1", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "bl": { + "version": "4.1.0", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "orbit-db": { + "version": "0.29.0", + "requires": { + "ipfs-pubsub-1on1": "^0.1.0", + "is-node": "^1.0.2", + "logplease": "^1.2.15", + "orbit-db-access-controllers": "^0.4.0", + "orbit-db-cache": "^0.5.0", + "orbit-db-counterstore": "^2.0.0", + "orbit-db-docstore": "^2.0.0", + "orbit-db-eventstore": "^2.0.0", + "orbit-db-feedstore": "^2.0.0", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "orbit-db-keystore": "^2.0.0", + "orbit-db-kvstore": "^2.0.0", + "orbit-db-pubsub": "^0.7.0", + "orbit-db-storage-adapter": "^0.9.0", + "orbit-db-store": "^5.0.0", + "wherearewe": "^2.0.1" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.0", + "requires": { + "multiformats": "^11.0.0" + } + }, + "aggregate-error": { + "version": "4.0.1", + "requires": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + } + }, + "clean-stack": { + "version": "4.2.0", + "requires": { + "escape-string-regexp": "5.0.0" + } + }, + "crdts": { + "version": "0.2.0" + }, + "escape-string-regexp": { + "version": "5.0.0" + }, + "indent-string": { + "version": "5.0.0" + }, + "ipfs-log": { + "version": "6.0.0", + "requires": { + "json-stringify-deterministic": "^1.0.8", + "orbit-db-identity-provider": "^0.5.0", + "orbit-db-io": "^3.0.0", + "p-do-whilst": "^2.0.0", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-whilst": "^3.0.0" + }, + "dependencies": { + "p-map": { + "version": "5.5.0", + "requires": { + "aggregate-error": "^4.0.0" + } + } + } + }, + "orbit-db-cache": { + "version": "0.5.0", + "requires": { + "logplease": "~1.2.15" + } + }, + "orbit-db-counterstore": { + "version": "2.0.0", + "requires": { + "crdts": "^0.2.0" + } + }, + "orbit-db-docstore": { + "version": "2.0.0", + "requires": { + "p-map": "~1.1.1" + } + }, + "orbit-db-eventstore": { + "version": "2.0.0", + "requires": {} + }, + "orbit-db-feedstore": { + "version": "2.0.0", + "requires": { + "orbit-db-eventstore": "*" + } + }, + "orbit-db-io": { + "version": "3.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + } + }, + "orbit-db-kvstore": { + "version": "2.0.0", + "requires": {} + }, + "orbit-db-pubsub": { + "version": "0.7.0", + "requires": { + "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "orbit-db-store": { + "version": "5.0.0", + "requires": { + "ipfs-log": "^6.0.0", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.15", + "p-each-series": "^3.0.0", + "p-map": "^5.5.0", + "p-queue": "^7.3.0", + "readable-stream": "~4.3.0" + }, + "dependencies": { + "p-map": { + "version": "5.5.0", + "requires": { + "aggregate-error": "^4.0.0" + } + } + } + }, + "p-do-whilst": { + "version": "2.0.0" + }, + "p-each-series": { + "version": "3.0.0" + }, + "p-map": { + "version": "1.1.1" + }, + "p-whilst": { + "version": "3.0.0" + }, + "readable-stream": { + "version": "4.3.0", + "requires": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + } + }, + "wherearewe": { + "version": "2.0.1", + "requires": { + "is-electron": "^2.2.0" + } + } + } + }, + "orbit-db-access-controllers": { + "version": "0.4.0", + "requires": { + "orbit-db-io": "^3.0.0", + "p-map-series": "^3.0.0", + "safe-buffer": "^5.2.1" + }, + "dependencies": { + "@ipld/dag-cbor": { + "version": "9.0.0", + "requires": { + "cborg": "^1.10.0", + "multiformats": "^11.0.0" + } + }, + "@ipld/dag-pb": { + "version": "4.0.2", + "requires": { + "multiformats": "^11.0.0" + } + }, + "orbit-db-io": { + "version": "3.0.0", + "requires": { + "@ipld/dag-cbor": "^9.0.0", + "@ipld/dag-pb": "^4.0.0", + "multiformats": "^11.0.0" + } + } + } + }, + "orbit-db-identity-provider": { + "version": "0.5.0", + "requires": { + "@ethersproject/wallet": "^5.7.0", + "assert": "^2.0.0", + "dids": "^3.4.0", + "lru": "^3.1.0", + "orbit-db-keystore": "^2.0.0", + "path-browserify": "^1.0.1", + "stream-browserify": "^3.0.0", + "uint8arrays": "^4.0.3" + }, + "dependencies": { + "uint8arrays": { + "version": "4.0.3", + "requires": { + "multiformats": "^11.0.0" + } + } + } + }, + "orbit-db-io": { + "version": "1.0.2", + "requires": { + "@ipld/dag-cbor": "^6.0.10", + "@ipld/dag-pb": "^2.1.9", + "multiformats": "^9.4.7" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "orbit-db-keystore": { + "version": "2.0.0", + "requires": { + "@libp2p/crypto": "^1.0.11", + "elliptic": "^6.5.4", + "level": "8.0.0", + "lru": "^3.1.0", + "mkdirp": "^2.1.1", + "safe-buffer": "^5.2.1", + "secp256k1": "^5.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "2.1.6" + }, + "node-addon-api": { + "version": "5.1.0" + }, + "secp256k1": { + "version": "5.0.0", + "requires": { + "elliptic": "^6.5.4", + "node-addon-api": "^5.0.0", + "node-gyp-build": "^4.2.0" + } + } + } + }, + "orbit-db-pubsub": { + "version": "0.6.0", + "requires": { + "ipfs-pubsub-peer-monitor": "vinkabuki/ipfs-pubsub-peer-monitor#038af76f22e6c902dab4a855b24273707ce17d94", + "logplease": "~1.2.14", + "p-series": "^1.1.0" + } + }, + "orbit-db-storage-adapter": { + "version": "0.9.0", + "requires": { + "level": "8.0.0", + "mkdirp": "^2.1.1" + }, + "dependencies": { + "mkdirp": { + "version": "2.1.3" + } + } + }, + "orbit-db-store": { + "version": "4.3.4", + "requires": { + "ipfs-log": "^5.4.1", + "it-to-stream": "^1.0.0", + "logplease": "^1.2.14", + "p-each-series": "^2.1.0", + "p-map": "^4.0.0", + "p-queue": "^6.6.2", + "readable-stream": "~3.6.0" + }, + "dependencies": { + "p-queue": { + "version": "6.6.2", + "requires": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + } + }, + "p-timeout": { + "version": "3.2.0", + "requires": { + "p-finally": "^1.0.0" + } + } + } + }, + "os-name": { + "version": "4.0.1", + "dev": true, + "requires": { + "macos-release": "^2.5.0", + "windows-release": "^4.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "dev": true + }, + "p-defer": { + "version": "3.0.0" + }, + "p-do-whilst": { + "version": "1.1.0" + }, + "p-each-series": { + "version": "2.2.0" + }, + "p-event": { + "version": "5.0.1", + "requires": { + "p-timeout": "^5.0.2" + } + }, + "p-fifo": { + "version": "1.0.0", + "requires": { + "fast-fifo": "^1.0.0", + "p-defer": "^3.0.0" + } + }, + "p-finally": { + "version": "1.0.0" + }, + "p-forever": { + "version": "2.1.0" + }, + "p-limit": { + "version": "2.3.0", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-map": { + "version": "4.0.0", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-map-series": { + "version": "3.0.0" + }, + "p-queue": { + "version": "7.3.4", + "requires": { + "eventemitter3": "^4.0.7", + "p-timeout": "^5.0.2" + } + }, + "p-reduce": { + "version": "1.0.0" + }, + "p-reflect": { + "version": "3.1.0" + }, + "p-retry": { + "version": "5.1.1", + "requires": { + "@types/retry": "0.12.1", + "retry": "^0.13.1" + }, + "dependencies": { + "retry": { + "version": "0.13.1" + } + } + }, + "p-series": { + "version": "1.1.0", + "requires": { + "@sindresorhus/is": "^0.7.0", + "p-reduce": "^1.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.7.0" + } + } + }, + "p-settle": { + "version": "5.1.0", + "requires": { + "p-limit": "^4.0.0", + "p-reflect": "^3.1.0" + }, + "dependencies": { + "p-limit": { + "version": "4.0.0", + "requires": { + "yocto-queue": "^1.0.0" + } + } + } + }, + "p-timeout": { + "version": "5.1.0" + }, + "p-try": { + "version": "2.2.0", + "dev": true + }, + "p-try-each": { + "version": "1.0.1" + }, + "p-wait-for": { + "version": "5.0.0", + "peer": true, + "requires": { + "p-timeout": "^6.0.0" + }, + "dependencies": { + "p-timeout": { + "version": "6.0.0", + "peer": true + } + } + }, + "p-whilst": { + "version": "2.1.0" + }, + "package-json": { + "version": "8.1.0", + "requires": { + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "5.3.0" + }, + "@szmarczak/http-timer": { + "version": "5.0.1", + "requires": { + "defer-to-connect": "^2.0.1" + } + }, + "cacheable-lookup": { + "version": "7.0.0" + }, + "cacheable-request": { + "version": "10.2.3", + "requires": { + "@types/http-cache-semantics": "^4.0.1", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.0", + "keyv": "^4.5.2", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + } + }, + "got": { + "version": "12.5.3", + "requires": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.1", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + } + }, + "http2-wrapper": { + "version": "2.2.0", + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + } + }, + "lowercase-keys": { + "version": "3.0.0" + }, + "mimic-response": { + "version": "4.0.0" + }, + "normalize-url": { + "version": "8.0.0" + }, + "p-cancelable": { + "version": "3.0.0" + }, + "responselike": { + "version": "3.0.0", + "requires": { + "lowercase-keys": "^3.0.0" + } + } + } + }, + "pako": { + "version": "2.1.0" + }, + "param-case": { + "version": "3.0.4", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-duration": { + "version": "1.0.2" + }, + "parseurl": { + "version": "1.3.3" + }, + "pascal-case": { + "version": "3.1.2", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-browserify": { + "version": "1.0.1" + }, + "path-case": { + "version": "3.0.4", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-exists": { + "version": "2.1.0", + "optional": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1" + }, + "path-key": { + "version": "3.1.1" + }, + "path-parse": { + "version": "1.0.7" + }, + "path-scurry": { + "version": "1.9.2", + "dev": true, + "requires": { + "lru-cache": "^9.1.1", + "minipass": "^5.0.0 || ^6.0.2" + }, + "dependencies": { + "lru-cache": { + "version": "9.1.2", + "dev": true + }, + "minipass": { + "version": "6.0.2", + "dev": true + } + } + }, + "path-to-regexp": { + "version": "2.4.0", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "dev": true + }, + "peek-readable": { + "version": "5.0.0" + }, + "peer-id": { + "version": "0.16.0", + "requires": { + "class-is": "^1.1.0", + "libp2p-crypto": "^0.21.0", + "multiformats": "^9.4.5", + "protobufjs": "^6.10.2", + "uint8arrays": "^3.0.0" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "pem-jwk": { + "version": "2.0.0", + "requires": { + "asn1.js": "^5.0.1" + } + }, + "pend": { + "version": "1.2.0", + "optional": true + }, + "performance-now": { + "version": "2.1.0", + "optional": true + }, + "picomatch": { + "version": "2.3.0" + }, + "pinkie": { + "version": "2.0.4", + "optional": true + }, + "pinkie-promise": { + "version": "2.0.1", + "optional": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pino": { + "version": "6.14.0", + "requires": { + "fast-redact": "^3.0.0", + "fast-safe-stringify": "^2.0.8", + "flatstr": "^1.0.12", + "pino-std-serializers": "^3.1.0", + "process-warning": "^1.0.0", + "quick-format-unescaped": "^4.0.3", + "sonic-boom": "^1.0.2" + } + }, + "pino-pretty": { + "version": "4.8.0", + "requires": { + "@hapi/bourne": "^2.0.0", + "args": "^5.0.1", + "chalk": "^4.0.0", + "dateformat": "^4.5.1", + "fast-safe-stringify": "^2.0.7", + "jmespath": "^0.15.0", + "joycon": "^2.2.5", + "pump": "^3.0.0", + "readable-stream": "^3.6.0", + "rfdc": "^1.3.0", + "split2": "^3.1.1", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "split2": { + "version": "3.2.2", + "requires": { + "readable-stream": "^3.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "pino-std-serializers": { + "version": "3.2.0" + }, + "pirates": { + "version": "4.0.5", + "dev": true + }, + "pkijs": { + "version": "3.0.8", + "requires": { + "asn1js": "^3.0.5", + "bytestreamjs": "^2.0.0", + "pvtsutils": "^1.3.2", + "pvutils": "^1.1.3", + "tslib": "^2.4.0" + } + }, + "platform": { + "version": "1.3.6" + }, + "pluralize": { + "version": "8.0.0", + "dev": true + }, + "portfinder": { + "version": "1.0.28", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "pretty-bytes": { + "version": "6.1.0" + }, + "pretty-format": { + "version": "27.5.1", + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0" + } + } + }, + "private-ip": { + "version": "2.3.3", + "requires": { + "ip-regex": "^4.3.0", + "ipaddr.js": "^2.0.1", + "is-ip": "^3.1.0", + "netmask": "^2.0.2" + }, + "dependencies": { + "ipaddr.js": { + "version": "2.0.1" + } + } + }, + "process": { + "version": "0.11.10" + }, + "process-nextick-args": { + "version": "2.0.1" + }, + "process-warning": { + "version": "1.0.0" + }, + "progress": { + "version": "2.0.3" + }, + "progress-stream": { + "version": "1.2.0", + "optional": true, + "requires": { + "speedometer": "~0.1.2", + "through2": "~0.2.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "optional": true + }, + "readable-stream": { + "version": "1.1.14", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "optional": true + }, + "through2": { + "version": "0.2.3", + "optional": true, + "requires": { + "readable-stream": "~1.1.9", + "xtend": "~2.1.1" + } + }, + "xtend": { + "version": "2.1.2", + "optional": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "prom-client": { + "version": "14.1.1", + "requires": { + "tdigest": "^0.1.1" + } + }, + "promise": { + "version": "1.3.0", + "requires": { + "is-promise": "~1" + } + }, + "prompts": { + "version": "2.4.2", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "proper-lockfile": { + "version": "4.1.2", + "requires": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "proto-list": { + "version": "1.2.4" + }, + "protobufjs": { + "version": "6.11.2", + "requires": { + "@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.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + } + }, + "protocol-buffers-schema": { + "version": "3.6.0" + }, + "protons": { + "version": "1.2.1", + "requires": { + "buffer": "^5.5.0", + "protocol-buffers-schema": "^3.3.1", + "signed-varint": "^2.0.1", + "varint": "^5.0.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "varint": { + "version": "5.0.2" + } + } + }, + "protons-runtime": { + "version": "4.0.1", + "requires": { + "protobufjs": "^7.0.0", + "uint8arraylist": "^2.3.2" + }, + "dependencies": { + "long": { + "version": "5.2.1" + }, + "protobufjs": { + "version": "7.1.2", + "requires": { + "@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": ">=13.7.0", + "long": "^5.0.0" + } + } + } + }, + "proxy-addr": { + "version": "2.0.7", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "forwarded": { + "version": "0.2.0" + } + } + }, + "prr": { + "version": "1.0.1" + }, + "pseudomap": { + "version": "1.0.2", + "optional": true + }, + "psl": { + "version": "1.9.0", + "optional": true + }, + "pump": { + "version": "3.0.0", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1" + }, + "pupa": { + "version": "3.1.0", + "requires": { + "escape-goat": "^4.0.0" + } + }, + "pvtsutils": { + "version": "1.3.2", + "requires": { + "tslib": "^2.4.0" + } + }, + "pvutils": { + "version": "1.1.3" + }, + "qs": { + "version": "6.11.0", + "requires": { + "side-channel": "^1.0.4" + } + }, + "querystring": { + "version": "0.2.1", + "dev": true + }, + "queue": { + "version": "6.0.2", + "requires": { + "inherits": "~2.0.3" + } + }, + "queue-microtask": { + "version": "1.2.3" + }, + "quick-format-unescaped": { + "version": "4.0.4" + }, + "quick-lru": { + "version": "5.1.1" + }, + "rabin-wasm": { + "version": "0.1.5", + "requires": { + "@assemblyscript/loader": "^0.9.4", + "bl": "^5.0.0", + "debug": "^4.3.1", + "minimist": "^1.2.5", + "node-fetch": "^2.6.1", + "readable-stream": "^3.6.0" + } + }, + "randombytes": { + "version": "2.1.0", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1" + }, + "rate-limiter-flexible": { + "version": "2.4.1" + }, + "raw-body": { + "version": "2.5.1", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "rc": { + "version": "1.2.8", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1" + } + } + }, + "react-is": { + "version": "17.0.2" + }, + "react-native-fetch-api": { + "version": "3.0.0", + "requires": { + "p-defer": "^3.0.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readable-web-to-node-stream": { + "version": "3.0.2", + "requires": { + "readable-stream": "^3.6.0" + } + }, + "readdirp": { + "version": "3.6.0", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "receptacle": { + "version": "1.3.2", + "requires": { + "ms": "^2.1.1" + } + }, + "rechoir": { + "version": "0.8.0", + "dev": true, + "requires": { + "resolve": "^1.20.0" + } + }, + "reflect-metadata": { + "version": "0.1.13" + }, + "regenerator-runtime": { + "version": "0.13.11", + "dev": true + }, + "registry-auth-token": { + "version": "5.0.1", + "requires": { + "@pnpm/npm-conf": "^1.0.4" + } + }, + "registry-url": { + "version": "6.0.1", + "requires": { + "rc": "1.2.8" + } + }, + "repeat-string": { + "version": "1.6.1", + "dev": true + }, + "request": { + "version": "2.88.2", + "optional": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "form-data": { + "version": "2.3.3", + "optional": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "qs": { + "version": "6.5.3", + "optional": true + } + } + }, + "require-directory": { + "version": "2.1.1" + }, + "require-from-string": { + "version": "2.0.2", + "dev": true + }, + "requires-port": { + "version": "1.0.0" + }, + "resolve": { + "version": "1.20.0", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-alpn": { + "version": "1.2.1" + }, + "resolve-cwd": { + "version": "3.0.0", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "dev": true + } + } + }, + "resolve-from": { + "version": "4.0.0", + "dev": true + }, + "resolve.exports": { + "version": "1.1.0" + }, + "restore-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "retimer": { + "version": "3.0.0" + }, + "retry": { + "version": "0.12.0" + }, + "rfdc": { + "version": "1.3.0" + }, + "rimraf": { + "version": "3.0.2", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rpc-utils": { + "version": "0.6.2", + "requires": { + "nanoid": "^3.3.1" + } + }, + "rsa-pem-to-jwk": { + "version": "1.1.3", + "requires": { + "object-assign": "^2.0.0", + "rsa-unpack": "0.0.6" + }, + "dependencies": { + "object-assign": { + "version": "2.1.1" + } + } + }, + "rsa-unpack": { + "version": "0.0.6", + "requires": { + "optimist": "~0.3.5" + } + }, + "run-async": { + "version": "2.4.1", + "dev": true + }, + "run-parallel-limit": { + "version": "1.1.0", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "7.8.1", + "requires": { + "tslib": "^2.1.0" + } + }, + "safe-buffer": { + "version": "5.2.1" + }, + "safer-buffer": { + "version": "2.1.2" + }, + "sanitize-filename": { + "version": "1.6.3", + "requires": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "sax": { + "version": "1.2.4" + }, + "schema-utils": { + "version": "3.2.0", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "scrypt-js": { + "version": "3.0.1" + }, + "secp256k1": { + "version": "4.0.3", + "requires": { + "elliptic": "^6.5.4", + "node-addon-api": "^2.0.0", + "node-gyp-build": "^4.2.0" + } + }, + "secure-compare": { + "version": "3.0.1" + }, + "semver": { + "version": "7.3.8", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-diff": { + "version": "4.0.0", + "requires": { + "semver": "^7.3.5" + } + }, + "send": { + "version": "0.18.0", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0" + } + } + }, + "ms": { + "version": "2.1.3" + } + } + }, + "sentence-case": { + "version": "3.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "serialize-javascript": { + "version": "6.0.1", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-static": { + "version": "1.15.0", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-blocking": { + "version": "2.0.0" + }, + "set-delayed-interval": { + "version": "1.0.0" + }, + "setprototypeof": { + "version": "1.2.0" + }, + "sha.js": { + "version": "2.4.11", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "2.0.0", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0" + }, + "shelljs": { + "version": "0.8.5", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "dependencies": { + "interpret": { + "version": "1.4.0", + "dev": true + }, + "rechoir": { + "version": "0.6.2", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + } + } + }, + "side-channel": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7" + }, + "signed-varint": { + "version": "2.0.1", + "requires": { + "varint": "~5.0.0" + }, + "dependencies": { + "varint": { + "version": "5.0.2" + } + } + }, + "single-line-log": { + "version": "1.1.2", + "optional": true, + "requires": { + "string-width": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "optional": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "optional": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "sisteransi": { + "version": "1.0.5", + "dev": true + }, + "slash": { + "version": "3.0.0" + }, + "smart-buffer": { + "version": "4.2.0" + }, + "snake-case": { + "version": "3.0.4", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "socket.io": { + "version": "4.6.0", + "requires": { + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "debug": "~4.3.2", + "engine.io": "~6.4.0", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.1" + } + }, + "socket.io-adapter": { + "version": "2.5.2", + "requires": { + "ws": "~8.11.0" + } + }, + "socket.io-client": { + "version": "4.5.4", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.2.3", + "socket.io-parser": "~4.2.1" + } + }, + "socket.io-parser": { + "version": "4.2.1", + "requires": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + } + }, + "socks": { + "version": "2.6.1", + "requires": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + } + }, + "socks-proxy-agent": { + "version": "5.0.1", + "requires": { + "agent-base": "^6.0.2", + "debug": "4", + "socks": "^2.3.3" + } + }, + "sonic-boom": { + "version": "1.4.1", + "requires": { + "atomic-sleep": "^1.0.0", + "flatstr": "^1.0.12" + } + }, + "sort-keys": { + "version": "5.0.0", + "requires": { + "is-plain-obj": "^4.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "4.1.0" + } + } + }, + "source-map": { + "version": "0.6.1" + }, + "source-map-support": { + "version": "0.5.21", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "buffer-from": { + "version": "1.1.2" + } + } + }, + "sparse-array": { + "version": "1.3.2" + }, + "speedometer": { + "version": "0.1.4", + "optional": true + }, + "split2": { + "version": "2.2.0", + "optional": true, + "requires": { + "through2": "^2.0.2" + } + }, + "sprintf-js": { + "version": "1.1.2" + }, + "sshpk": { + "version": "1.17.0", + "optional": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "dependencies": { + "jsbn": { + "version": "0.1.1", + "optional": true + } + } + }, + "stack-utils": { + "version": "2.0.6", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "dev": true + } + } + }, + "statuses": { + "version": "2.0.1" + }, + "stream-browserify": { + "version": "3.0.0", + "requires": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "stream-to-it": { + "version": "0.2.4", + "requires": { + "get-iterator": "^1.0.2" + } + }, + "streamsearch": { + "version": "1.1.0" + }, + "string_decoder": { + "version": "1.3.0", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-length": { + "version": "4.0.2", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-replace-loader": { + "version": "3.1.0", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "strip-ansi": { + "version": "6.0.1", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0" + }, + "strip-json-comments": { + "version": "3.1.1" + }, + "strtok3": { + "version": "7.0.0", + "requires": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^5.0.0" + } + }, + "sumchecker": { + "version": "1.3.1", + "optional": true, + "requires": { + "debug": "^2.2.0", + "es6-promise": "^4.0.5" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "optional": true + } + } + }, + "super-regex": { + "version": "0.2.0", + "requires": { + "clone-regexp": "^3.0.0", + "function-timeout": "^0.1.0", + "time-span": "^5.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "requires": { + "has-flag": "^3.0.0" + } + }, + "symbol-observable": { + "version": "4.0.0", + "dev": true + }, + "tapable": { + "version": "2.2.1" + }, + "tar": { + "version": "6.1.13", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^4.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4" + } + } + }, + "tdigest": { + "version": "0.1.2", + "requires": { + "bintrees": "1.0.2" + } + }, + "temp-dir": { + "version": "2.0.0", + "peer": true + }, + "temp-write": { + "version": "5.0.0", + "peer": true, + "requires": { + "graceful-fs": "^4.2.6", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "uuid": "^8.3.2" + }, + "dependencies": { + "uuid": { + "version": "8.3.2", + "peer": true + } + } + }, + "terser": { + "version": "5.18.0", + "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "acorn": { + "version": "8.8.2" + }, + "commander": { + "version": "2.20.3" + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.9", + "requires": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0" + }, + "jest-worker": { + "version": "27.5.1", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "test-exclude": { + "version": "6.0.0", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "throttleit": { + "version": "0.0.2", + "optional": true + }, + "through": { + "version": "2.3.8", + "dev": true + }, + "through2": { + "version": "2.0.5", + "optional": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "optional": true + }, + "string_decoder": { + "version": "1.1.1", + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "thunky": { + "version": "1.1.0" + }, + "time-span": { + "version": "5.1.0", + "requires": { + "convert-hrtime": "^5.0.0" + } + }, + "timeout-abort-controller": { + "version": "3.0.0", + "requires": { + "retimer": "^3.0.0" + } + }, + "timestamp-nano": { + "version": "1.0.1" + }, + "tmp": { + "version": "0.2.1", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, + "tmpl": { + "version": "1.0.5" + }, + "to-fast-properties": { + "version": "2.0.0", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1" + }, + "token-types": { + "version": "5.0.1", + "requires": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + } + }, + "tough-cookie": { + "version": "2.5.0", + "optional": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "0.0.3" + }, + "tree-kill": { + "version": "1.2.2", + "dev": true + }, + "truncate-utf8-bytes": { + "version": "1.0.2", + "requires": { + "utf8-byte-length": "^1.0.1" + } + }, + "ts-jest": { + "version": "29.0.5", + "dev": true, + "requires": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "dependencies": { + "json5": { + "version": "2.2.3", + "dev": true + }, + "yargs-parser": { + "version": "21.1.1", + "dev": true + } + } + }, + "ts-jest-resolver": { + "version": "2.0.0", + "requires": { + "jest-resolve": "^27.2.5" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "@types/yargs": { + "version": "16.0.5", + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0" + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "has-flag": { + "version": "4.0.0" + }, + "jest-haste-map": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-regex-util": { + "version": "27.5.1" + }, + "jest-resolve": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + } + }, + "jest-util": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "jest-validate": { + "version": "27.5.1", + "requires": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + } + }, + "jest-worker": { + "version": "27.5.1", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "leven": { + "version": "3.1.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "ts-loader": { + "version": "9.4.2", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "ts-node": { + "version": "10.9.1", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "dependencies": { + "acorn": { + "version": "8.8.1", + "dev": true + } + } + }, + "tsconfig-paths-webpack-plugin": { + "version": "4.0.1", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.7.0", + "tsconfig-paths": "^4.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "json5": { + "version": "2.2.3", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tsconfig-paths": { + "version": "4.2.0", + "dev": true, + "requires": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + } + } + }, + "tslib": { + "version": "2.5.3" + }, + "tunnel-agent": { + "version": "0.6.0", + "optional": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "optional": true + }, + "type-detect": { + "version": "4.0.8", + "dev": true + }, + "type-fest": { + "version": "2.19.0" + }, + "type-is": { + "version": "1.6.18", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.9.5", + "dev": true + }, + "uid": { + "version": "2.0.2", + "requires": { + "@lukeed/csprng": "^1.0.0" + } + }, + "uint8-varint": { + "version": "1.0.4", + "requires": { + "byte-access": "^1.0.0", + "longbits": "^1.1.0", + "uint8arraylist": "^2.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "uint8arraylist": { + "version": "2.4.2", + "requires": { + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "multiformats": { + "version": "10.0.2" + }, + "uint8arrays": { + "version": "4.0.2", + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "uint8arrays": { + "version": "3.0.0", + "requires": { + "multiformats": "^9.4.2" + }, + "dependencies": { + "multiformats": { + "version": "9.9.0" + } + } + }, + "unbox-primitive": { + "version": "1.0.1", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "undici": { + "version": "5.12.0", + "peer": true, + "requires": { + "busboy": "^1.6.0" + } + }, + "union": { + "version": "0.5.0", + "requires": { + "qs": "^6.4.0" + } + }, + "unique-string": { + "version": "3.0.0", + "requires": { + "crypto-random-string": "^4.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "dev": true + }, + "unpipe": { + "version": "1.0.0" + }, + "update-notifier": { + "version": "6.0.2", + "requires": { + "boxen": "^7.0.0", + "chalk": "^5.0.1", + "configstore": "^6.0.0", + "has-yarn": "^3.0.0", + "import-lazy": "^4.0.0", + "is-ci": "^3.0.1", + "is-installed-globally": "^0.4.0", + "is-npm": "^6.0.0", + "is-yarn-global": "^0.4.0", + "latest-version": "^7.0.0", + "pupa": "^3.1.0", + "semver": "^7.3.7", + "semver-diff": "^4.0.0", + "xdg-basedir": "^5.1.0" + }, + "dependencies": { + "chalk": { + "version": "5.1.2" + }, + "is-ci": { + "version": "3.0.1", + "requires": { + "ci-info": "^3.2.0" + } + } + } + }, + "upper-case": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "upper-case-first": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "uri-js": { + "version": "4.4.1", + "requires": { + "punycode": "^2.1.0" + } + }, + "url-join": { + "version": "2.0.5" + }, + "ursa-optional": { + "version": "0.10.2", + "requires": { + "bindings": "^1.5.0", + "nan": "^2.14.2" + } + }, + "utf8-byte-length": { + "version": "1.0.4" + }, + "util": { + "version": "0.12.4", + "requires": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "safe-buffer": "^5.1.2", + "which-typed-array": "^1.1.2" + } + }, + "util-deprecate": { + "version": "1.0.2" + }, + "utils-merge": { + "version": "1.0.1" + }, + "uuid": { + "version": "3.4.0", + "optional": true + }, + "v8-compile-cache-lib": { + "version": "3.0.1", + "dev": true + }, + "v8-to-istanbul": { + "version": "9.0.1", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + } + }, + "validator": { + "version": "13.7.0" + }, + "varint": { + "version": "6.0.0" + }, + "varint-decoder": { + "version": "1.0.0", + "requires": { + "varint": "^5.0.0" + }, + "dependencies": { + "varint": { + "version": "5.0.2" + } + } + }, + "vary": { + "version": "1.1.2" + }, + "verror": { + "version": "1.10.0", + "optional": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "wait-for-expect": { + "version": "3.0.2", + "dev": true + }, + "walker": { + "version": "1.0.8", + "requires": { + "makeerror": "1.0.12" + } + }, + "watchpack": { + "version": "2.4.0", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wcwidth": { + "version": "1.0.1", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webcrypto-core": { + "version": "1.7.7", + "requires": { + "@peculiar/asn1-schema": "^2.3.6", + "@peculiar/json-schema": "^1.1.12", + "asn1js": "^3.0.1", + "pvtsutils": "^1.3.2", + "tslib": "^2.4.0" + } + }, + "webidl-conversions": { + "version": "3.0.1" + }, + "webpack": { + "version": "5.75.0", + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "dependencies": { + "acorn": { + "version": "8.8.2" + }, + "acorn-import-assertions": { + "version": "1.8.0", + "requires": {} + } + } + }, + "webpack-cli": { + "version": "5.0.1", + "dev": true, + "requires": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.0.1", + "@webpack-cli/info": "^2.0.1", + "@webpack-cli/serve": "^2.0.1", + "colorette": "^2.0.14", + "commander": "^9.4.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "dependencies": { + "colorette": { + "version": "2.0.19", + "dev": true + }, + "commander": { + "version": "9.5.0", + "dev": true + } + } + }, + "webpack-merge": { + "version": "5.8.0", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-node-externals": { + "version": "3.0.0", + "dev": true + }, + "webpack-sources": { + "version": "3.2.3" + }, + "whatwg-url": { + "version": "5.0.0", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "which": { + "version": "2.0.2", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.7", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", + "foreach": "^2.0.5", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.7" + }, + "dependencies": { + "es-abstract": { + "version": "1.19.1", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "object-keys": { + "version": "1.1.1" + } + } + }, + "wide-align": { + "version": "1.1.5", + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "widest-line": { + "version": "4.0.1", + "requires": { + "string-width": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1" + }, + "emoji-regex": { + "version": "9.2.2" + }, + "string-width": { + "version": "5.1.2", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.0.1", + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "wildcard": { + "version": "2.0.0", + "dev": true + }, + "windows-release": { + "version": "4.0.0", + "dev": true, + "requires": { + "execa": "^4.0.2" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "dev": true + } + } + }, + "wordwrap": { + "version": "0.0.3" + }, + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + } + } + }, + "wrappy": { + "version": "1.0.2" + }, + "write-file-atomic": { + "version": "3.0.3", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "wrtc": { + "version": "0.4.7", + "optional": true, + "requires": { + "domexception": "^1.0.1", + "node-pre-gyp": "^0.13.0" + } + }, + "ws": { + "version": "8.11.0", + "requires": {} + }, + "xdg-basedir": { + "version": "5.1.0" + }, + "xml2js": { + "version": "0.4.23", + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + } + }, + "xmlbuilder": { + "version": "11.0.1" + }, + "xmlhttprequest-ssl": { + "version": "2.0.0" + }, + "xsalsa20": { + "version": "1.2.0" + }, + "xtend": { + "version": "4.0.2" + }, + "y18n": { + "version": "5.0.8" + }, + "yallist": { + "version": "4.0.0" + }, + "yaml": { + "version": "1.10.2", + "dev": true + }, + "yargs": { + "version": "17.6.2", + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "dependencies": { + "yargs-parser": { + "version": "21.1.1" + } + } + }, + "yargs-parser": { + "version": "20.2.9" + }, + "yauzl": { + "version": "2.10.0", + "optional": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "yn": { + "version": "3.1.1", + "dev": true + }, + "yocto-queue": { + "version": "1.0.0" + } + } } diff --git a/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts b/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts index 21e3ba2ca0..b4965e4bdd 100644 --- a/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts +++ b/packages/mobile/src/store/init/deepLink/deepLink.saga.test.ts @@ -3,12 +3,12 @@ import { combineReducers } from '@reduxjs/toolkit' import { reducers } from '../../root.reducer' import { Store } from '../../store.types' import { prepareStore } from '../../../tests/utils/prepareStore' -import { communities, Community, connection, getInvitationCodes, identity } from '@quiet/state-manager' +import { communities, connection, getInvitationCodes, identity } from '@quiet/state-manager' import { initActions } from '../init.slice' import { navigationActions } from '../../navigation/navigation.slice' import { ScreenNames } from '../../../const/ScreenNames.enum' import { deepLinkSaga } from './deepLink.saga' -import { CommunityOwnership, ConnectionProcessInfo, Identity } from '@quiet/types' +import { type Community, CommunityOwnership, ConnectionProcessInfo, type Identity } from '@quiet/types' import { Site } from '@quiet/common' describe('deepLinkSaga', () => { From ba678eec1a42b2d2c49e83d7d991d9a343f40a9b Mon Sep 17 00:00:00 2001 From: Emi Date: Wed, 18 Oct 2023 23:46:25 +0200 Subject: [PATCH 05/31] Refactor invitation url parsing functions --- packages/common/src/invitationCode.test.ts | 20 ++-- packages/common/src/invitationCode.ts | 106 +++++++----------- packages/common/src/static.ts | 2 + packages/desktop/libssl.so | Bin 0 -> 577312 bytes packages/desktop/src/main/main.test.ts | 6 +- packages/desktop/src/main/main.ts | 6 +- .../PerformCommunityActionComponent.tsx | 4 +- .../components/Settings/Settings.stories.tsx | 4 +- .../Tabs/Invite/Invite.component.test.tsx | 6 +- .../Settings/Tabs/Invite/Invite.stories.tsx | 4 +- .../Settings/Tabs/QRCode/QRCode.stories.tsx | 4 +- .../registerUsername.saga.test.ts | 5 +- .../invitationCode/invitationCode.test.ts | 50 ++++++--- .../invitationCode/invitationCode.ts | 11 +- 14 files changed, 119 insertions(+), 109 deletions(-) create mode 100755 packages/desktop/libssl.so diff --git a/packages/common/src/invitationCode.test.ts b/packages/common/src/invitationCode.test.ts index b093b153e3..76cb6320f7 100644 --- a/packages/common/src/invitationCode.test.ts +++ b/packages/common/src/invitationCode.test.ts @@ -1,10 +1,10 @@ import { InvitationData } from '@quiet/types' import { argvInvitationCode, - invitationDeepUrl, + composeInvitationDeepUrl, invitationShareUrl, - pairsToInvitationShareUrl, - retrieveInvitationCode, + composeInvitationShareUrl, + parseInvitationCodeDeepUrl, } from './invitationCode' import { QUIET_JOIN_PAGE, Site } from './static' @@ -28,14 +28,14 @@ describe('Invitation code helper', () => { 'zbay://invalid', 'quiet://invalid', 'quiet://?param=invalid', - invitationDeepUrl(expectedCodes), + composeInvitationDeepUrl(expectedCodes), ]) expect(result).toEqual(expectedCodes) }) it('builds proper invitation deep url', () => { expect( - invitationDeepUrl({ + composeInvitationDeepUrl({ pairs: [ { peerId: 'peerID1', onionAddress: 'address1' }, { peerId: 'peerID2', onionAddress: 'address2' }, @@ -54,7 +54,7 @@ describe('Invitation code helper', () => { psk: '12345', } const expected = `${QUIET_JOIN_PAGE}#peerID1=address1&peerID2=address2&${Site.PSK_PARAM_KEY}=${pairs.psk}` - expect(pairsToInvitationShareUrl(pairs)).toEqual(expected) + expect(composeInvitationShareUrl(pairs)).toEqual(expected) }) it('builds proper invitation share url', () => { @@ -70,8 +70,8 @@ describe('Invitation code helper', () => { }) it('retrieves invitation codes from deep url', () => { - const psk = 12345 - const codes = retrieveInvitationCode( + const psk = '12345' + const codes = parseInvitationCodeDeepUrl( `quiet://?${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${psk}` ) expect(codes).toEqual({ @@ -87,9 +87,9 @@ describe('Invitation code helper', () => { const psk = '12345' const peerId2 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLs' const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' - const codes = retrieveInvitationCode( + const parsed = parseInvitationCodeDeepUrl( `quiet://?${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${psk}` ) - expect(codes).toEqual({ pairs: [{ peerId: peerId1, onionAddress: address1 }], psk: psk }) + expect(parsed).toEqual({ pairs: [{ peerId: peerId1, onionAddress: address1 }], psk: psk }) }) }) diff --git a/packages/common/src/invitationCode.ts b/packages/common/src/invitationCode.ts index 2d4be09d72..d36a5ddc8e 100644 --- a/packages/common/src/invitationCode.ts +++ b/packages/common/src/invitationCode.ts @@ -1,36 +1,38 @@ import { InvitationData, InvitationPair } from '@quiet/types' -import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, Site } from './static' +import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, QUIET_JOIN_PAGE, Site } from './static' import { createLibp2pAddress } from './libp2p' -export const retrieveInvitationCode = (url: string): InvitationData => { - // TODO: rename to parseDeepUrl? - /** - * Extract invitation data from deep url. - * Valid format: quiet://?=&=&k= - */ - let data: URL +const parseDeepUrl = ({ url, expectedProtocol = `quiet:` }: { url: string; expectedProtocol?: string }) => { + let _url = url + let validUrl: URL | null = null + + if (!expectedProtocol) { + expectedProtocol = `${Site.DEEP_URL_SCHEME}:` + _url = `${Site.DEEP_URL_SCHEME}://?${url}` + } + try { - data = new URL(url) + validUrl = new URL(_url) } catch (e) { console.error(`Could not retrieve invitation code from deep url ${url}. Reason: ${e.message}`) throw e } - if (!data || data.protocol !== 'quiet:') { + if (!validUrl || validUrl.protocol !== expectedProtocol) { console.error(`Could not retrieve invitation code from deep url ${url}`) throw new Error() } - const params = data.searchParams + const params = validUrl.searchParams const codes: InvitationPair[] = [] let psk = params.get(Site.PSK_PARAM_KEY) if (!psk) throw new Error(`No psk found in invitation code ${url}`) - psk = decodeURIComponent(psk) // TODO: can be dangerous? + psk = decodeURIComponent(psk) // Validate base64 params.delete(Site.PSK_PARAM_KEY) - params.forEach((peerId, onionAddress) => { - if (!invitationCodeValid(peerId, onionAddress)) return + params.forEach((onionAddress, peerId) => { + if (!peerDataValid({ peerId, onionAddress })) return codes.push({ peerId, onionAddress, @@ -43,6 +45,21 @@ export const retrieveInvitationCode = (url: string): InvitationData => { } } +export const parseInvitationCodeDeepUrl = (url: string): InvitationData => { + /** + * Extract invitation data from deep url. + * Valid format: quiet://?=&=&k= + */ + return parseDeepUrl({ url }) +} + +export const parseInvitationCode = (code: string): InvitationData => { + /** + * @param code =&=&k= + */ + return parseDeepUrl({ url: code, expectedProtocol: '' }) +} + export const invitationShareUrl = (peers: string[] = [], psk: string): string => { // TODO: rename to 'composeInvitationShareUrl' /** @@ -75,9 +92,8 @@ export const invitationShareUrl = (peers: string[] = [], psk: string): string => pairs.push({ peerId: peerId, onionAddress: rawAddress }) } - const _url = pairsToInvitationShareUrl({ pairs: pairs, psk: psk }) + const _url = composeInvitationShareUrl({ pairs: pairs, psk: psk }) - // const _url = `${Site.MAIN_PAGE}${Site.JOIN_PAGE}#${pairs.join('&')}&${psk}` console.log('invitationShareUrl', _url) const url = new URL(_url) return url.href @@ -91,19 +107,16 @@ export const pairsToP2pAddresses = (pairs: InvitationPair[]): string[] => { return addresses } -export const pairsToInvitationShareUrl = (data: InvitationData) => { - const url = new URL(`${Site.MAIN_PAGE}${Site.JOIN_PAGE}`) - for (const pair of data.pairs) { - url.searchParams.append(pair.peerId, pair.onionAddress) - } - url.searchParams.append(Site.PSK_PARAM_KEY, data.psk) - return url.href.replace('?', '#') +export const composeInvitationShareUrl = (data: InvitationData) => { + return composeInvitationUrl(`${QUIET_JOIN_PAGE}`, data).replace('?', '#') } -export const invitationDeepUrl = (data: InvitationData): string => { - // TODO: rename to 'composeInvitationDeepUrl' - // TODO: refactor - unify with pairsToInvitationShareUrl - const url = new URL('quiet://') +export const composeInvitationDeepUrl = (data: InvitationData): string => { + return composeInvitationUrl(`${Site.DEEP_URL_SCHEME_WITH_SEPARATOR}`, data) +} + +const composeInvitationUrl = (baseUrl: string, data: InvitationData): string => { + const url = new URL(baseUrl) for (const pair of data.pairs) { url.searchParams.append(pair.peerId, pair.onionAddress) } @@ -118,7 +131,7 @@ export const argvInvitationCode = (argv: string[]): InvitationData | null => { let invitationData: InvitationData | null = null for (const arg of argv) { try { - invitationData = retrieveInvitationCode(arg) + invitationData = parseInvitationCodeDeepUrl(arg) } catch (e) { continue } @@ -131,7 +144,7 @@ export const argvInvitationCode = (argv: string[]): InvitationData | null => { return invitationData } -export const invitationCodeValid = (peerId: string, onionAddress: string): boolean => { +export const peerDataValid = ({ peerId, onionAddress }: { peerId: string; onionAddress: string }): boolean => { // TODO: rename to peerDataValid? if (!peerId.match(PEER_ID_REGEX)) { // TODO: test it more properly e.g with PeerId.createFromB58String(peerId.trim()) @@ -144,38 +157,3 @@ export const invitationCodeValid = (peerId: string, onionAddress: string): boole } return true } - -export const getInvitationPairs = (code: string): InvitationData => { - /** - * @param code =&=&k= - */ - - // TODO: refactor - use parametrized retrieveInvitationCode instead - const elements = code.split('&') - if (elements.length <= 1) throw new Error(`Invitation link '${code}' has not enough data`) - const pairs = elements.slice(0, -1) - - // TODO: Verify psk format - const _psk = elements.slice(-1)[0] - const psk = decodeURIComponent(_psk.split('=')[1]) // FIXME - - const codes: InvitationPair[] = [] - for (const pair of pairs) { - const [peerId, address] = pair.split('=') - if (!peerId || !address) continue - if (!invitationCodeValid(peerId, address)) continue - codes.push({ - peerId: peerId, - onionAddress: address, - }) - } - - console.log('getInvitationPairs', { - pairs: codes, - psk: psk, - }) - return { - pairs: codes, - psk: psk, - } -} diff --git a/packages/common/src/static.ts b/packages/common/src/static.ts index bac22f4f22..df3b741511 100644 --- a/packages/common/src/static.ts +++ b/packages/common/src/static.ts @@ -2,6 +2,8 @@ export const ONION_ADDRESS_REGEX = /^[a-z0-9]{56}$/g export const PEER_ID_REGEX = /^[a-zA-Z0-9]{46}$/g export enum Site { + DEEP_URL_SCHEME_WITH_SEPARATOR = 'quiet://', + DEEP_URL_SCHEME = 'quiet', DOMAIN = 'tryquiet.org', MAIN_PAGE = 'https://tryquiet.org/', JOIN_PAGE = 'join', diff --git a/packages/desktop/libssl.so b/packages/desktop/libssl.so new file mode 100755 index 0000000000000000000000000000000000000000..48a21e5940a78b6f53bfeb4ea8232bca06b3e37a GIT binary patch literal 577312 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 z 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 r6fo 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%0A;v=BHv(oUF~ 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 literal 0 HcmV?d00001 diff --git a/packages/desktop/src/main/main.test.ts b/packages/desktop/src/main/main.test.ts index 5af456527d..a0ebdc0e02 100644 --- a/packages/desktop/src/main/main.test.ts +++ b/packages/desktop/src/main/main.test.ts @@ -5,7 +5,7 @@ import { autoUpdater } from 'electron-updater' import { BrowserWindow, app, ipcMain, Menu } from 'electron' import { waitFor } from '@testing-library/dom' import path from 'path' -import { invitationDeepUrl } from '@quiet/common' +import { composeInvitationDeepUrl } from '@quiet/common' import { InvitationData } from '@quiet/types' // eslint-disable-next-line @@ -254,13 +254,13 @@ describe('Invitation code', () => { expect(mockAppOnCalls[1][0]).toBe('open-url') const event = { preventDefault: () => {} } - mockAppOnCalls[1][1](event, invitationDeepUrl(codes)) + mockAppOnCalls[1][1](event, composeInvitationDeepUrl(codes)) expect(mockWindowWebContentsSend).toHaveBeenCalledWith('invitation', { codes }) }) it('process invitation code on second-instance event', async () => { await mockAppOnCalls[2][1]() - const commandLine = ['/tmp/.mount_Quiet-TVQc6s/quiet', invitationDeepUrl(codes)] + const commandLine = ['/tmp/.mount_Quiet-TVQc6s/quiet', composeInvitationDeepUrl(codes)] expect(mockAppOnCalls[0][0]).toBe('second-instance') const event = { preventDefault: () => {} } mockAppOnCalls[0][1](event, commandLine) diff --git a/packages/desktop/src/main/main.ts b/packages/desktop/src/main/main.ts index b6efd97cae..3e0e354191 100644 --- a/packages/desktop/src/main/main.ts +++ b/packages/desktop/src/main/main.ts @@ -11,7 +11,7 @@ import { Crypto } from '@peculiar/webcrypto' import logger from './logger' import { DATA_DIR, DEV_DATA_DIR } from '../shared/static' import { fork, ChildProcess } from 'child_process' -import { argvInvitationCode, getFilesData, retrieveInvitationCode } from '@quiet/common' +import { argvInvitationCode, getFilesData, parseInvitationCodeDeepUrl } from '@quiet/common' import { updateDesktopFile, processInvitationCode } from './invitation' const ElectronStore = require('electron-store') ElectronStore.initRenderer() @@ -147,7 +147,7 @@ app.on('open-url', (event, url) => { event.preventDefault() if (mainWindow) { invitationUrl = null - const invitationCode = retrieveInvitationCode(url) // TODO: handle thrown error + const invitationCode = parseInvitationCodeDeepUrl(url) // TODO: handle thrown error processInvitationCode(mainWindow, invitationCode) } }) @@ -474,7 +474,7 @@ app.on('ready', async () => { throw new Error(`mainWindow is on unexpected type ${mainWindow}`) } if (process.platform === 'darwin' && invitationUrl) { - const invitationCode = retrieveInvitationCode(invitationUrl) // TODO: handle thrown error + const invitationCode = parseInvitationCodeDeepUrl(invitationUrl) // TODO: handle thrown error processInvitationCode(mainWindow, invitationCode) invitationUrl = null } diff --git a/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx b/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx index 692a7984d1..e5920095e1 100644 --- a/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx +++ b/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx @@ -20,7 +20,7 @@ import { InviteLinkErrors } from '../../forms/fieldsErrors' import { IconButton, InputAdornment } from '@mui/material' import VisibilityOff from '@mui/icons-material/VisibilityOff' import Visibility from '@mui/icons-material/Visibility' -import { ONION_ADDRESS_REGEX, pairsToInvitationShareUrl, parseName } from '@quiet/common' +import { ONION_ADDRESS_REGEX, composeToInvitationShareUrl, parseName } from '@quiet/common' import { getInvitationCodes } from '@quiet/state-manager' const PREFIX = 'PerformCommunityActionComponent' @@ -221,7 +221,7 @@ export const PerformCommunityActionComponent: React.FC { if (communityOwnership === CommunityOwnership.User && invitationCode?.length && psk) { setFormSent(true) - setValue('name', pairsToInvitationShareUrl({ pairs: invitationCode, psk: psk })) + setValue('name', composeToInvitationShareUrl({ pairs: invitationCode, psk: psk })) } }, [communityOwnership, invitationCode]) diff --git a/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx b/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx index 4393ea6bc0..829cfcdffa 100644 --- a/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx @@ -10,9 +10,9 @@ import { InviteComponent } from './Tabs/Invite/Invite.component' import { LeaveCommunityComponent } from './Tabs/LeaveCommunity/LeaveCommunityComponent' import { Typography } from '@mui/material' import { QRCodeComponent } from './Tabs/QRCode/QRCode.component' -import { pairsToInvitationShareUrl } from '@quiet/common' +import { composeToInvitationShareUrl } from '@quiet/common' -const invitationLink = pairsToInvitationShareUrl({ +const invitationLink = composeToInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx index 21e47ebec2..3e3508c114 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx @@ -2,11 +2,11 @@ import '@testing-library/jest-dom' import React from 'react' import { renderComponent } from '../../../../testUtils/renderComponent' import { InviteComponent } from './Invite.component' -import { pairsToInvitationShareUrl } from '@quiet/common' +import { composeToInvitationShareUrl } from '@quiet/common' describe('CopyLink', () => { it('renderComponent - hidden long link', () => { - const invitationLink = pairsToInvitationShareUrl({ + const invitationLink = composeToInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', @@ -127,7 +127,7 @@ describe('CopyLink', () => { }) it('renderComponent - revealed short link', () => { - const invitationLink = pairsToInvitationShareUrl({ + const invitationLink = composeToInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx index 856dd94a8a..66530189df 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx @@ -2,7 +2,7 @@ import React from 'react' import { ComponentStory, ComponentMeta } from '@storybook/react' import { withTheme } from '../../../../storybook/decorators' import { InviteComponent, InviteComponentProps } from './Invite.component' -import { pairsToInvitationShareUrl } from '@quiet/common' +import { composeToInvitationShareUrl } from '@quiet/common' const Template: ComponentStory = args => { return @@ -10,7 +10,7 @@ const Template: ComponentStory = args => { export const Component = Template.bind({}) let revealInputValue = true -const invitationLink = pairsToInvitationShareUrl({ +const invitationLink = composeToInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx index 1a089dd2eb..888340710d 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx @@ -3,9 +3,9 @@ import { ComponentStory, ComponentMeta } from '@storybook/react' import { withTheme } from '../../../../storybook/decorators' import QRCodeComponent, { QRCodeProps } from './QRCode.component' -import { pairsToInvitationShareUrl } from '@quiet/common' +import { composeToInvitationShareUrl } from '@quiet/common' -const invitationLink = pairsToInvitationShareUrl({ +const invitationLink = composeToInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.test.ts b/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.test.ts index f536ec15be..1598a0dc6e 100644 --- a/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.test.ts +++ b/packages/state-manager/src/sagas/identity/registerUsername/registerUsername.saga.test.ts @@ -7,7 +7,7 @@ import { getFactory } from '../../../utils/tests/factories' import { reducers } from '../../reducers' import { identityActions } from '../identity.slice' import { registerUsernameSaga } from './registerUsername.saga' -import { type communitiesActions } from '../../communities/communities.slice' +import { communitiesActions } from '../../communities/communities.slice' import { config } from '../../users/const/certFieldTypes' import { CertData, CreateUserCsrPayload, SocketActionTypes } from '@quiet/types' import { Socket } from '../../../types' @@ -60,6 +60,8 @@ describe('registerUsernameSaga', () => { hashAlg: config.hashAlg, } const reducer = combineReducers(reducers) + const psk = '12345' + store.dispatch(communitiesActions.savePSK(psk)) await expectSaga(registerUsernameSaga, socket, identityActions.registerUsername({ nickname: 'nickname' })) .withReducer(reducer) .withState(store.getState()) @@ -72,6 +74,7 @@ describe('registerUsernameSaga', () => { registrarUrl: community.registrarUrl, CA: community.CA, rootCa: undefined, + psk: psk, }, ]) .dispatch(identityActions.addNewIdentity(identity)) diff --git a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts index 1d3860c69f..90f456d3b1 100644 --- a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts +++ b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts @@ -8,23 +8,47 @@ describe('Invitation code helper', () => { const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' it('retrieves invitation code if url is a proper share url', () => { - const result = getInvitationCodes(`${QUIET_JOIN_PAGE}#${peerId1}=${address1}&${peerId2}=${address2}`) - expect(result).toEqual([ - { peerId: peerId1, onionAddress: address1 }, - { peerId: peerId2, onionAddress: address2 }, - ]) + const psk = 'abcde' + const result = getInvitationCodes(`${QUIET_JOIN_PAGE}#${peerId1}=${address1}&${peerId2}=${address2}&k=${psk}`) + expect(result).toEqual({ + pairs: [ + { peerId: peerId1, onionAddress: address1 }, + { peerId: peerId2, onionAddress: address2 }, + ], + psk, + }) }) - it('returns empty list if code is not a proper share url nor a code', () => { - const result = getInvitationCodes('invalidCode') - expect(result).toEqual([]) + it('throws error if code is not a proper share url nor a code', () => { + // const result = 'invalidCode') + expect(() => getInvitationCodes('invalidCode')).toThrow() + }) + + it('throws error if code does not contain psk', () => { + expect(() => getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}`)).toThrow() + }) + + it('retrieves invitation code if url is a proper code', () => { + const psk = 'abcde' + const result = getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}&k=${psk}`) + expect(result).toEqual({ + pairs: [ + { peerId: peerId1, onionAddress: address1 }, + { peerId: peerId2, onionAddress: address2 }, + ], + psk, + }) }) it('retrieves invitation code if url is a proper code', () => { - const result = getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}`) - expect(result).toEqual([ - { peerId: peerId1, onionAddress: address1 }, - { peerId: peerId2, onionAddress: address2 }, - ]) + const psk = 'abcde' + const result = getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}&k=${psk}`) + expect(result).toEqual({ + pairs: [ + { peerId: peerId1, onionAddress: address1 }, + { peerId: peerId2, onionAddress: address2 }, + ], + psk, + }) }) }) diff --git a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts index 1309f12cd6..1fe956f338 100644 --- a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts +++ b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.ts @@ -1,4 +1,4 @@ -import { Site, getInvitationPairs } from '@quiet/common' +import { Site, parseInvitationCode } from '@quiet/common' import { type InvitationData } from '@quiet/types' export const getInvitationCodes = (codeOrUrl: string): InvitationData => { @@ -10,6 +10,8 @@ export const getInvitationCodes = (codeOrUrl: string): InvitationData => { let potentialCode let validUrl: URL | null = null + let code = '' + try { validUrl = new URL(codeOrUrl) } catch (e) { @@ -21,14 +23,15 @@ export const getInvitationCodes = (codeOrUrl: string): InvitationData => { const hash = validUrl.hash if (hash) { // Parse hash - const pairs = hash.substring(1) - data = getInvitationPairs(pairs) + code = hash.substring(1) } } else if (potentialCode) { // Parse code just as hash value - data = getInvitationPairs(potentialCode) + code = potentialCode } + data = parseInvitationCode(code) + if (!data || data?.pairs.length === 0) { throw new Error(`No invitation codes. Code/url passed: ${codeOrUrl}`) } From f4c73706196edc1542025275b28bc9bffb34cee8 Mon Sep 17 00:00:00 2001 From: Emi Date: Tue, 24 Oct 2023 12:02:18 +0200 Subject: [PATCH 06/31] Fix import --- packages/mobile/src/store/init/deepLink/deepLink.saga.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/mobile/src/store/init/deepLink/deepLink.saga.ts b/packages/mobile/src/store/init/deepLink/deepLink.saga.ts index b6dc76ca97..91ab770f1c 100644 --- a/packages/mobile/src/store/init/deepLink/deepLink.saga.ts +++ b/packages/mobile/src/store/init/deepLink/deepLink.saga.ts @@ -1,15 +1,13 @@ import { PayloadAction } from '@reduxjs/toolkit' import { select, delay, put } from 'typed-redux-saga' -import { communities, connection, getInvitationCodes, identity } from '@quiet/state-manager' +import { communities, getInvitationCodes } from '@quiet/state-manager' import { ScreenNames } from '../../../const/ScreenNames.enum' import { navigationActions } from '../../navigation/navigation.slice' import { initSelectors } from '../init.selectors' import { initActions } from '../init.slice' import { appImages } from '../../../assets' import { replaceScreen } from '../../../RootNavigation' -import { UsernameRegistrationRouteProps } from '../../../route.params' -import { CommunityOwnership, ConnectionProcessInfo, CreateNetworkPayload } from '@quiet/types' -import { retrieveInvitationCode } from '@quiet/common' +import { CommunityOwnership, CreateNetworkPayload } from '@quiet/types' export function* deepLinkSaga(action: PayloadAction['payload']>): Generator { const code = action.payload From 294945ccbb2fc74b2fe4bb671102528f23e76c8e Mon Sep 17 00:00:00 2001 From: Emi Date: Tue, 24 Oct 2023 14:31:39 +0200 Subject: [PATCH 07/31] feat: Check if psk in invitation link is base64 encoded #1897 --- packages/backend/package-lock.json | 22 +++++++----- packages/backend/package.json | 4 +-- packages/backend/src/nest/common/utils.ts | 8 +++-- .../connections-manager.service.ts | 29 ++++++++++------ packages/common/package-lock.json | 29 +++++++++++++++- packages/common/package.json | 4 ++- packages/common/src/invitationCode.test.ts | 34 ++++++++++++------- packages/common/src/invitationCode.ts | 15 ++++---- .../PerformCommunityActionComponent.tsx | 4 +-- .../components/Settings/Settings.stories.tsx | 4 +-- .../Tabs/Invite/Invite.component.test.tsx | 6 ++-- .../Settings/Tabs/Invite/Invite.stories.tsx | 4 +-- .../Settings/Tabs/QRCode/QRCode.stories.tsx | 4 +-- .../invitationCode/invitationCode.test.ts | 26 +++++++++----- 14 files changed, 130 insertions(+), 63 deletions(-) diff --git a/packages/backend/package-lock.json b/packages/backend/package-lock.json index e3231dcb13..f31eec94c5 100644 --- a/packages/backend/package-lock.json +++ b/packages/backend/package-lock.json @@ -56,7 +56,7 @@ "socks-proxy-agent": "^5.0.0", "string-replace-loader": "3.1.0", "ts-jest-resolver": "^2.0.0", - "validator": "^13.6.0" + "validator": "^13.11.0" }, "devDependencies": { "@nestjs/cli": "^10.0.0", @@ -72,7 +72,7 @@ "@types/orbit-db": "git+https://github.com/orbitdb/orbit-db-types.git", "@types/supertest": "^2.0.11", "@types/tmp": "^0.2.3", - "@types/validator": "^13.1.4", + "@types/validator": "^13.11.5", "@types/ws": "8.5.3", "babel-jest": "^29.3.1", "cross-env": "^5.2.0", @@ -6580,8 +6580,9 @@ "license": "MIT" }, "node_modules/@types/validator": { - "version": "13.1.4", - "license": "MIT" + "version": "13.11.5", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.11.5.tgz", + "integrity": "sha512-xW4qsT4UIYILu+7ZrBnfQdBYniZrMLYYK3wN9M/NdeIHgBN5pZI2/8Q7UfdWIcr5RLJv/OGENsx91JIpUUoC7Q==" }, "node_modules/@types/ws": { "version": "8.5.3", @@ -21995,8 +21996,9 @@ } }, "node_modules/validator": { - "version": "13.7.0", - "license": "MIT", + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", + "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", "engines": { "node": ">= 0.10" } @@ -26934,7 +26936,9 @@ "dev": true }, "@types/validator": { - "version": "13.1.4" + "version": "13.11.5", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.11.5.tgz", + "integrity": "sha512-xW4qsT4UIYILu+7ZrBnfQdBYniZrMLYYK3wN9M/NdeIHgBN5pZI2/8Q7UfdWIcr5RLJv/OGENsx91JIpUUoC7Q==" }, "@types/ws": { "version": "8.5.3", @@ -36673,7 +36677,9 @@ } }, "validator": { - "version": "13.7.0" + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", + "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" }, "varint": { "version": "6.0.0" diff --git a/packages/backend/package.json b/packages/backend/package.json index 43ca6f284b..a1e58e0f34 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -65,7 +65,7 @@ "@types/orbit-db": "git+https://github.com/orbitdb/orbit-db-types.git", "@types/supertest": "^2.0.11", "@types/tmp": "^0.2.3", - "@types/validator": "^13.1.4", + "@types/validator": "^13.11.5", "@types/ws": "8.5.3", "babel-jest": "^29.3.1", "cross-env": "^5.2.0", @@ -134,7 +134,7 @@ "socks-proxy-agent": "^5.0.0", "string-replace-loader": "3.1.0", "ts-jest-resolver": "^2.0.0", - "validator": "^13.6.0" + "validator": "^13.11.0" }, "overrides": { "level": "$level", diff --git a/packages/backend/src/nest/common/utils.ts b/packages/backend/src/nest/common/utils.ts index 23d3735631..4d0de9701a 100644 --- a/packages/backend/src/nest/common/utils.ts +++ b/packages/backend/src/nest/common/utils.ts @@ -13,7 +13,6 @@ import logger from './logger' import { createCertificatesTestHelper } from './client-server' import { Libp2pNodeParams } from '../libp2p/libp2p.types' import { createLibp2pAddress, createLibp2pListenAddress } from '@quiet/common' -import { randomBytes } from '@libp2p/crypto' import { toString as uint8ArrayToString } from 'uint8arrays/to-string' import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string' @@ -241,8 +240,11 @@ export async function createPeerId(): Promise { const KEY_LENGTH = 32 -export function generateKey(bytes: Uint8Array | NodeJS.WriteStream, key?: Uint8Array) { - const psk = key || randomBytes(KEY_LENGTH) +export function generateLibp2pPSK(bytes: Uint8Array | NodeJS.WriteStream, key?: Uint8Array) { + /** + * Based on 'libp2p/pnet' generateKey + */ + const psk = key || crypto.randomBytes(KEY_LENGTH) const base16StringKey = uint8ArrayToString(psk, 'base16') const fullKey = uint8ArrayFromString('/key/swarm/psk/1.0.0/\n/base16/\n' + base16StringKey) diff --git a/packages/backend/src/nest/connections-manager/connections-manager.service.ts b/packages/backend/src/nest/connections-manager/connections-manager.service.ts index 486e32b573..8ab0b5988d 100644 --- a/packages/backend/src/nest/connections-manager/connections-manager.service.ts +++ b/packages/backend/src/nest/connections-manager/connections-manager.service.ts @@ -8,7 +8,8 @@ import { setEngine, CryptoEngine } from 'pkijs' import { EventEmitter } from 'events' import getPort from 'get-port' import PeerId from 'peer-id' -import { generateKey, removeFilesFromDir } from '../common/utils' +import { generateLibp2pPSK, removeFilesFromDir } from '../common/utils' +import validator from 'validator' import { AskForMessagesPayload, ChannelMessagesIdsResponse, @@ -276,10 +277,18 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI }, network, } - const psk = community.psk // Passed in base64 + const psk = community.psk if (psk) { console.log('createNetwork got psk', psk) - await this.localDbService.put(LocalDBKeys.PSK, psk) // Validate psk before saving? + if (!validator.isBase64(psk)) { + emitError(this.serverIoProvider.io, { + type: SocketActionTypes.NETWORK, + message: ErrorMessages.NETWORK_SETUP_FAILED, + community: community.id, + }) + return + } + await this.localDbService.put(LocalDBKeys.PSK, psk) } this.serverIoProvider.io.emit(SocketActionTypes.NETWORK, payload) @@ -287,11 +296,9 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI private async generatePSK() { const libp2pPSK = new Uint8Array(95) - const psk = generateKey(libp2pPSK) - console.log('Generated new buffer psk', psk) - const pskBase64 = uint8ArrayToString(psk, 'base64') + const psk = generateLibp2pPSK(libp2pPSK) + const pskBase64 = psk.toString('base64') await this.localDbService.put(LocalDBKeys.PSK, pskBase64) - console.log('psk base64 SAVED', pskBase64) this.serverIoProvider.io.emit(SocketActionTypes.PSK, { psk: pskBase64 }) } @@ -367,12 +374,14 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI if (!peers || peers.length === 0) { peers = [this.libp2pService.createLibp2pAddress(onionAddress, _peerId.toString())] } - const pskValue = await this.localDbService.get(LocalDBKeys.PSK) // What if there is no psk in db? + const pskValue = await this.localDbService.get(LocalDBKeys.PSK) + if (!pskValue) { + throw new Error('No psk in local db') + } console.log('psk base64 RETRIEVED', pskValue) const psk = uint8ArrayFromString(pskValue, 'base64') - console.log('psk buffer retrieved', psk) const libp2pPSK = new Uint8Array(95) - generateKey(libp2pPSK, psk) + generateLibp2pPSK(libp2pPSK, psk) const params: Libp2pNodeParams = { peerId: _peerId, diff --git a/packages/common/package-lock.json b/packages/common/package-lock.json index e3ab0a7f16..45a196a5bc 100644 --- a/packages/common/package-lock.json +++ b/packages/common/package-lock.json @@ -10,11 +10,13 @@ "license": "ISC", "dependencies": { "cross-env": "^5.2.0", - "debug": "^4.3.1" + "debug": "^4.3.1", + "validator": "^13.11.0" }, "devDependencies": { "@types/jest": "^26.0.23", "@types/node": "^17.0.21", + "@types/validator": "^13.11.5", "jest": "^26.6.3", "ts-jest": "^26.5.2", "typescript": "^4.9.3" @@ -1116,6 +1118,12 @@ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, + "node_modules/@types/validator": { + "version": "13.11.5", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.11.5.tgz", + "integrity": "sha512-xW4qsT4UIYILu+7ZrBnfQdBYniZrMLYYK3wN9M/NdeIHgBN5pZI2/8Q7UfdWIcr5RLJv/OGENsx91JIpUUoC7Q==", + "dev": true + }, "node_modules/@types/yargs": { "version": "15.0.15", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.15.tgz", @@ -5989,6 +5997,14 @@ "spdx-expression-parse": "^3.0.0" } }, + "node_modules/validator": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", + "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", + "engines": { + "node": ">= 0.10" + } + }, "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -7098,6 +7114,12 @@ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, + "@types/validator": { + "version": "13.11.5", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.11.5.tgz", + "integrity": "sha512-xW4qsT4UIYILu+7ZrBnfQdBYniZrMLYYK3wN9M/NdeIHgBN5pZI2/8Q7UfdWIcr5RLJv/OGENsx91JIpUUoC7Q==", + "dev": true + }, "@types/yargs": { "version": "15.0.15", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.15.tgz", @@ -10885,6 +10907,11 @@ "spdx-expression-parse": "^3.0.0" } }, + "validator": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", + "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" + }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", diff --git a/packages/common/package.json b/packages/common/package.json index f9f6eb49f0..b3e8934d16 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -21,6 +21,7 @@ "@quiet/eslint-config": "^2.0.1-alpha.4", "@types/jest": "^26.0.23", "@types/node": "^17.0.21", + "@types/validator": "^13.11.5", "jest": "^26.6.3", "ts-jest": "^26.5.2", "typescript": "^4.9.3" @@ -28,7 +29,8 @@ "dependencies": { "@quiet/types": "^2.0.1-alpha.4", "cross-env": "^5.2.0", - "debug": "^4.3.1" + "debug": "^4.3.1", + "validator": "^13.11.0" }, "jest": { "transform": { diff --git a/packages/common/src/invitationCode.test.ts b/packages/common/src/invitationCode.test.ts index 76cb6320f7..f44588fe1f 100644 --- a/packages/common/src/invitationCode.test.ts +++ b/packages/common/src/invitationCode.test.ts @@ -13,6 +13,8 @@ describe('Invitation code helper', () => { const address1 = 'gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad' const peerId2 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE' const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' + const psk = 'BNlxfE2WBF7LrlpIX0CvECN5o1oZtA16PkAb7GYiwYw%3D' + const pskDecoded = 'BNlxfE2WBF7LrlpIX0CvECN5o1oZtA16PkAb7GYiwYw=' it('retrieves invitation code from argv', () => { const expectedCodes: InvitationData = { @@ -20,7 +22,7 @@ describe('Invitation code helper', () => { { peerId: peerId1, onionAddress: address1 }, { peerId: peerId2, onionAddress: address2 }, ], - psk: '12345', + psk: pskDecoded, } const result = argvInvitationCode([ 'something', @@ -33,16 +35,27 @@ describe('Invitation code helper', () => { expect(result).toEqual(expectedCodes) }) - it('builds proper invitation deep url', () => { + it('returns null if argv do not contain any valid invitation code', () => { + const result = argvInvitationCode([ + 'something', + 'quiet:/invalid', + 'zbay://invalid', + 'quiet://invalid', + 'quiet://?param=invalid', + ]) + expect(result).toBeNull() + }) + + it('composes proper invitation deep url', () => { expect( composeInvitationDeepUrl({ pairs: [ { peerId: 'peerID1', onionAddress: 'address1' }, { peerId: 'peerID2', onionAddress: 'address2' }, ], - psk: '12345', + psk: pskDecoded, }) - ).toEqual(`quiet://?peerID1=address1&peerID2=address2&${Site.PSK_PARAM_KEY}=12345`) + ).toEqual(`quiet://?peerID1=address1&peerID2=address2&${Site.PSK_PARAM_KEY}=${psk}`) }) it('creates invitation share url based on invitation data', () => { @@ -51,9 +64,9 @@ describe('Invitation code helper', () => { { peerId: 'peerID1', onionAddress: 'address1' }, { peerId: 'peerID2', onionAddress: 'address2' }, ], - psk: '12345', + psk: pskDecoded, } - const expected = `${QUIET_JOIN_PAGE}#peerID1=address1&peerID2=address2&${Site.PSK_PARAM_KEY}=${pairs.psk}` + const expected = `${QUIET_JOIN_PAGE}#peerID1=address1&peerID2=address2&${Site.PSK_PARAM_KEY}=${psk}` expect(composeInvitationShareUrl(pairs)).toEqual(expected) }) @@ -63,14 +76,12 @@ describe('Invitation code helper', () => { 'invalidAddress', '/dns4/somethingElse.onion/tcp/443/wss/p2p/QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA', ] - const psk = 'L2tleS9zd2FybS9wc2svMS' - expect(invitationShareUrl(peerList, psk)).toEqual( + expect(invitationShareUrl(peerList, pskDecoded)).toEqual( `${QUIET_JOIN_PAGE}#QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad&QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA=somethingElse&${Site.PSK_PARAM_KEY}=${psk}` ) }) it('retrieves invitation codes from deep url', () => { - const psk = '12345' const codes = parseInvitationCodeDeepUrl( `quiet://?${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${psk}` ) @@ -79,17 +90,16 @@ describe('Invitation code helper', () => { { peerId: peerId1, onionAddress: address1 }, { peerId: peerId2, onionAddress: address2 }, ], - psk: psk, + psk: pskDecoded, }) }) it('retrieves invitation codes from deep url with partly invalid codes', () => { - const psk = '12345' const peerId2 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLs' const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' const parsed = parseInvitationCodeDeepUrl( `quiet://?${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${psk}` ) - expect(parsed).toEqual({ pairs: [{ peerId: peerId1, onionAddress: address1 }], psk: psk }) + expect(parsed).toEqual({ pairs: [{ peerId: peerId1, onionAddress: address1 }], psk: pskDecoded }) }) }) diff --git a/packages/common/src/invitationCode.ts b/packages/common/src/invitationCode.ts index d36a5ddc8e..4cc50616b8 100644 --- a/packages/common/src/invitationCode.ts +++ b/packages/common/src/invitationCode.ts @@ -1,12 +1,14 @@ import { InvitationData, InvitationPair } from '@quiet/types' import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, QUIET_JOIN_PAGE, Site } from './static' import { createLibp2pAddress } from './libp2p' +import validator from 'validator' const parseDeepUrl = ({ url, expectedProtocol = `quiet:` }: { url: string; expectedProtocol?: string }) => { let _url = url let validUrl: URL | null = null if (!expectedProtocol) { + // Create a full url to be able to use the same URL parsing mechanism expectedProtocol = `${Site.DEEP_URL_SCHEME}:` _url = `${Site.DEEP_URL_SCHEME}://?${url}` } @@ -14,20 +16,20 @@ const parseDeepUrl = ({ url, expectedProtocol = `quiet:` }: { url: string; expec try { validUrl = new URL(_url) } catch (e) { - console.error(`Could not retrieve invitation code from deep url ${url}. Reason: ${e.message}`) + console.error(`Could not retrieve invitation code from deep url '${url}'. Reason: ${e.message}`) throw e } if (!validUrl || validUrl.protocol !== expectedProtocol) { - console.error(`Could not retrieve invitation code from deep url ${url}`) + console.error(`Could not retrieve invitation code from deep url '${url}'`) throw new Error() } const params = validUrl.searchParams const codes: InvitationPair[] = [] let psk = params.get(Site.PSK_PARAM_KEY) - if (!psk) throw new Error(`No psk found in invitation code ${url}`) + if (!psk) throw new Error(`No psk found in invitation code '${url}'`) psk = decodeURIComponent(psk) - // Validate base64 + if (!validator.isBase64(psk)) throw new Error(`Invalid psk in invitation code '${url}'`) params.delete(Site.PSK_PARAM_KEY) @@ -61,12 +63,11 @@ export const parseInvitationCode = (code: string): InvitationData => { } export const invitationShareUrl = (peers: string[] = [], psk: string): string => { - // TODO: rename to 'composeInvitationShareUrl' + // TODO: rename /** * @arg {string[]} peers - List of peer's p2p addresses * @returns {string} - Complete shareable invitation link, e.g. https://tryquiet.org/join/#=&=&k= */ - console.log('Invitation share url, peers:', peers) const pairs: InvitationPair[] = [] for (const peerAddress of peers) { let peerId: string @@ -144,7 +145,7 @@ export const argvInvitationCode = (argv: string[]): InvitationData | null => { return invitationData } -export const peerDataValid = ({ peerId, onionAddress }: { peerId: string; onionAddress: string }): boolean => { +const peerDataValid = ({ peerId, onionAddress }: { peerId: string; onionAddress: string }): boolean => { // TODO: rename to peerDataValid? if (!peerId.match(PEER_ID_REGEX)) { // TODO: test it more properly e.g with PeerId.createFromB58String(peerId.trim()) diff --git a/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx b/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx index e5920095e1..1d094db8b0 100644 --- a/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx +++ b/packages/desktop/src/renderer/components/CreateJoinCommunity/PerformCommunityActionComponent.tsx @@ -20,7 +20,7 @@ import { InviteLinkErrors } from '../../forms/fieldsErrors' import { IconButton, InputAdornment } from '@mui/material' import VisibilityOff from '@mui/icons-material/VisibilityOff' import Visibility from '@mui/icons-material/Visibility' -import { ONION_ADDRESS_REGEX, composeToInvitationShareUrl, parseName } from '@quiet/common' +import { ONION_ADDRESS_REGEX, composeInvitationShareUrl, parseName } from '@quiet/common' import { getInvitationCodes } from '@quiet/state-manager' const PREFIX = 'PerformCommunityActionComponent' @@ -221,7 +221,7 @@ export const PerformCommunityActionComponent: React.FC { if (communityOwnership === CommunityOwnership.User && invitationCode?.length && psk) { setFormSent(true) - setValue('name', composeToInvitationShareUrl({ pairs: invitationCode, psk: psk })) + setValue('name', composeInvitationShareUrl({ pairs: invitationCode, psk: psk })) } }, [communityOwnership, invitationCode]) diff --git a/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx b/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx index 829cfcdffa..80e8663143 100644 --- a/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Settings.stories.tsx @@ -10,9 +10,9 @@ import { InviteComponent } from './Tabs/Invite/Invite.component' import { LeaveCommunityComponent } from './Tabs/LeaveCommunity/LeaveCommunityComponent' import { Typography } from '@mui/material' import { QRCodeComponent } from './Tabs/QRCode/QRCode.component' -import { composeToInvitationShareUrl } from '@quiet/common' +import { composeInvitationShareUrl } from '@quiet/common' -const invitationLink = composeToInvitationShareUrl({ +const invitationLink = composeInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx index 3e3508c114..62e01e5e9f 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx @@ -2,11 +2,11 @@ import '@testing-library/jest-dom' import React from 'react' import { renderComponent } from '../../../../testUtils/renderComponent' import { InviteComponent } from './Invite.component' -import { composeToInvitationShareUrl } from '@quiet/common' +import { composeInvitationShareUrl } from '@quiet/common' describe('CopyLink', () => { it('renderComponent - hidden long link', () => { - const invitationLink = composeToInvitationShareUrl({ + const invitationLink = composeInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', @@ -127,7 +127,7 @@ describe('CopyLink', () => { }) it('renderComponent - revealed short link', () => { - const invitationLink = composeToInvitationShareUrl({ + const invitationLink = composeInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx index 66530189df..95849b7ca6 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.stories.tsx @@ -2,7 +2,7 @@ import React from 'react' import { ComponentStory, ComponentMeta } from '@storybook/react' import { withTheme } from '../../../../storybook/decorators' import { InviteComponent, InviteComponentProps } from './Invite.component' -import { composeToInvitationShareUrl } from '@quiet/common' +import { composeInvitationShareUrl } from '@quiet/common' const Template: ComponentStory = args => { return @@ -10,7 +10,7 @@ const Template: ComponentStory = args => { export const Component = Template.bind({}) let revealInputValue = true -const invitationLink = composeToInvitationShareUrl({ +const invitationLink = composeInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx index 888340710d..3eee7762eb 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/QRCode/QRCode.stories.tsx @@ -3,9 +3,9 @@ import { ComponentStory, ComponentMeta } from '@storybook/react' import { withTheme } from '../../../../storybook/decorators' import QRCodeComponent, { QRCodeProps } from './QRCode.component' -import { composeToInvitationShareUrl } from '@quiet/common' +import { composeInvitationShareUrl } from '@quiet/common' -const invitationLink = composeToInvitationShareUrl({ +const invitationLink = composeInvitationShareUrl({ pairs: [ { peerId: 'QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3', diff --git a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts index 90f456d3b1..a87ef32a81 100644 --- a/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts +++ b/packages/state-manager/src/utils/functions/invitationCode/invitationCode.test.ts @@ -1,15 +1,18 @@ import { getInvitationCodes } from './invitationCode' -import { QUIET_JOIN_PAGE } from '@quiet/common' +import { QUIET_JOIN_PAGE, Site } from '@quiet/common' describe('Invitation code helper', () => { const peerId1 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSA' const address1 = 'gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad' const peerId2 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE' const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' + const psk = 'BNlxfE2WBF7LrlpIX0CvECN5o1oZtA16PkAb7GYiwYw=' + const encodedPsk = encodeURIComponent(psk) it('retrieves invitation code if url is a proper share url', () => { - const psk = 'abcde' - const result = getInvitationCodes(`${QUIET_JOIN_PAGE}#${peerId1}=${address1}&${peerId2}=${address2}&k=${psk}`) + const result = getInvitationCodes( + `${QUIET_JOIN_PAGE}#${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${encodedPsk}` + ) expect(result).toEqual({ pairs: [ { peerId: peerId1, onionAddress: address1 }, @@ -20,7 +23,6 @@ describe('Invitation code helper', () => { }) it('throws error if code is not a proper share url nor a code', () => { - // const result = 'invalidCode') expect(() => getInvitationCodes('invalidCode')).toThrow() }) @@ -28,9 +30,16 @@ describe('Invitation code helper', () => { expect(() => getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}`)).toThrow() }) + it('throws error if psk has invalid format', () => { + expect(() => + getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=12345`) + ).toThrow() + }) + it('retrieves invitation code if url is a proper code', () => { - const psk = 'abcde' - const result = getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}&k=${psk}`) + const result = getInvitationCodes( + `${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${encodedPsk}` + ) expect(result).toEqual({ pairs: [ { peerId: peerId1, onionAddress: address1 }, @@ -41,8 +50,9 @@ describe('Invitation code helper', () => { }) it('retrieves invitation code if url is a proper code', () => { - const psk = 'abcde' - const result = getInvitationCodes(`${peerId1}=${address1}&${peerId2}=${address2}&k=${psk}`) + const result = getInvitationCodes( + `${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${encodedPsk}` + ) expect(result).toEqual({ pairs: [ { peerId: peerId1, onionAddress: address1 }, From 33d4b6beffdfc59860016dc0bd985588efdc5a12 Mon Sep 17 00:00:00 2001 From: Emi Date: Tue, 24 Oct 2023 15:50:52 +0200 Subject: [PATCH 08/31] feat: check psk length in invitation code --- .../connections-manager.service.ts | 3 ++- packages/common/src/invitationCode.test.ts | 13 ++++++++++++- packages/common/src/invitationCode.ts | 6 +++--- packages/common/src/libp2p.ts | 8 ++++++++ packages/common/src/static.ts | 1 + 5 files changed, 26 insertions(+), 5 deletions(-) diff --git a/packages/backend/src/nest/connections-manager/connections-manager.service.ts b/packages/backend/src/nest/connections-manager/connections-manager.service.ts index 8ab0b5988d..7a804d7b60 100644 --- a/packages/backend/src/nest/connections-manager/connections-manager.service.ts +++ b/packages/backend/src/nest/connections-manager/connections-manager.service.ts @@ -62,6 +62,7 @@ import Logger from '../common/logger' import { emitError } from '../socket/socket.errors' import { toString as uint8ArrayToString } from 'uint8arrays/to-string' import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string' +import { isPSKcodeValid } from '@quiet/common' @Injectable() export class ConnectionsManagerService extends EventEmitter implements OnModuleInit { @@ -280,7 +281,7 @@ export class ConnectionsManagerService extends EventEmitter implements OnModuleI const psk = community.psk if (psk) { console.log('createNetwork got psk', psk) - if (!validator.isBase64(psk)) { + if (!isPSKcodeValid(psk)) { emitError(this.serverIoProvider.io, { type: SocketActionTypes.NETWORK, message: ErrorMessages.NETWORK_SETUP_FAILED, diff --git a/packages/common/src/invitationCode.test.ts b/packages/common/src/invitationCode.test.ts index f44588fe1f..ed405f723c 100644 --- a/packages/common/src/invitationCode.test.ts +++ b/packages/common/src/invitationCode.test.ts @@ -70,7 +70,7 @@ describe('Invitation code helper', () => { expect(composeInvitationShareUrl(pairs)).toEqual(expected) }) - it('builds proper invitation share url', () => { + it('builds proper invitation share url from peers addresses', () => { const peerList = [ '/dns4/gloao6h5plwjy4tdlze24zzgcxll6upq2ex2fmu2ohhyu4gtys4nrjad.onion/tcp/443/wss/p2p/QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', 'invalidAddress', @@ -94,6 +94,17 @@ describe('Invitation code helper', () => { }) }) + it.each([['12345'], ['a2FzemE='], 'a2FycGllIHcgZ2FsYXJlY2llIGVjaWUgcGVjaWUgYWxlIGkgdGFrIHpqZWNpZQ=='])( + 'parsing invitation code throws error if psk is invalid: (%s)', + (psk: string) => { + expect(() => { + parseInvitationCodeDeepUrl( + `quiet://?${peerId1}=${address1}&${peerId2}=${address2}&${Site.PSK_PARAM_KEY}=${psk}` + ) + }).toThrow() + } + ) + it('retrieves invitation codes from deep url with partly invalid codes', () => { const peerId2 = 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLs' const address2 = 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' diff --git a/packages/common/src/invitationCode.ts b/packages/common/src/invitationCode.ts index 4cc50616b8..ab3bf0b50a 100644 --- a/packages/common/src/invitationCode.ts +++ b/packages/common/src/invitationCode.ts @@ -1,6 +1,6 @@ import { InvitationData, InvitationPair } from '@quiet/types' -import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, QUIET_JOIN_PAGE, Site } from './static' -import { createLibp2pAddress } from './libp2p' +import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, PSK_LENGTH, QUIET_JOIN_PAGE, Site } from './static' +import { createLibp2pAddress, isPSKcodeValid } from './libp2p' import validator from 'validator' const parseDeepUrl = ({ url, expectedProtocol = `quiet:` }: { url: string; expectedProtocol?: string }) => { @@ -29,7 +29,7 @@ const parseDeepUrl = ({ url, expectedProtocol = `quiet:` }: { url: string; expec if (!psk) throw new Error(`No psk found in invitation code '${url}'`) psk = decodeURIComponent(psk) - if (!validator.isBase64(psk)) throw new Error(`Invalid psk in invitation code '${url}'`) + if (!isPSKcodeValid(psk)) throw new Error(`Invalid psk in invitation code '${url}'`) params.delete(Site.PSK_PARAM_KEY) diff --git a/packages/common/src/libp2p.ts b/packages/common/src/libp2p.ts index e86ee508e2..24154f8e4e 100644 --- a/packages/common/src/libp2p.ts +++ b/packages/common/src/libp2p.ts @@ -1,3 +1,6 @@ +import validator from 'validator' +import { PSK_LENGTH } from './static' + const ONION = '.onion' export const createLibp2pAddress = (address: string, peerId: string) => { @@ -9,3 +12,8 @@ export const createLibp2pListenAddress = (address: string) => { if (!address.endsWith(ONION)) address += ONION return `/dns4/${address}/tcp/80/ws` } + +export const isPSKcodeValid = (psk: string): boolean => { + const _psk = psk.trim() + return validator.isBase64(_psk) && _psk.length === PSK_LENGTH +} diff --git a/packages/common/src/static.ts b/packages/common/src/static.ts index df3b741511..aad1efffa4 100644 --- a/packages/common/src/static.ts +++ b/packages/common/src/static.ts @@ -1,5 +1,6 @@ export const ONION_ADDRESS_REGEX = /^[a-z0-9]{56}$/g export const PEER_ID_REGEX = /^[a-zA-Z0-9]{46}$/g +export const PSK_LENGTH = 44 // PSK is 256 bits/8 = 32 bytes which encodes to 44 characters base64 export enum Site { DEEP_URL_SCHEME_WITH_SEPARATOR = 'quiet://', From 800b4f33fb35b5c725623e447bee87c3e354b18f Mon Sep 17 00:00:00 2001 From: Emi Date: Tue, 24 Oct 2023 16:02:53 +0200 Subject: [PATCH 09/31] fix: generate valid psk for backend test libp2p param --- packages/backend/src/nest/common/utils.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/backend/src/nest/common/utils.ts b/packages/backend/src/nest/common/utils.ts index 4d0de9701a..13e3fada6a 100644 --- a/packages/backend/src/nest/common/utils.ts +++ b/packages/backend/src/nest/common/utils.ts @@ -198,7 +198,8 @@ export const libp2pInstanceParams = async (): Promise => { const address = '0.0.0.0' const peerIdRemote = await createPeerId() const remoteAddress = createLibp2pAddress(address, peerIdRemote.toString()) - + const key = new Uint8Array(95) + generateLibp2pPSK(key) return { peerId, listenAddresses: [createLibp2pListenAddress('localhost')], @@ -206,7 +207,7 @@ export const libp2pInstanceParams = async (): Promise => { localAddress: createLibp2pAddress('localhost', peerId.toString()), targetPort: port, peers: [remoteAddress], - psk: new Uint8Array(95), + psk: key, } } From 9f3680ae39b64578a2a526cefda89a1f7607136e Mon Sep 17 00:00:00 2001 From: Emi Date: Tue, 24 Oct 2023 20:51:21 +0200 Subject: [PATCH 10/31] fix: adjust tests for desktop and e2e --- packages/common/src/invitationCode.ts | 4 +- packages/desktop/src/main/main.test.ts | 6 +-- .../JoinCommunity/JoinCommunity.test.tsx | 53 +++++++------------ .../Tabs/Invite/Invite.component.test.tsx | 2 +- .../handleInvitationCode.saga.test.ts | 2 +- .../src/rtl-tests/community.join.test.tsx | 14 ++++- .../src/tests/invitationLink.test.ts | 18 ++++--- 7 files changed, 50 insertions(+), 49 deletions(-) diff --git a/packages/common/src/invitationCode.ts b/packages/common/src/invitationCode.ts index ab3bf0b50a..45fc830c7d 100644 --- a/packages/common/src/invitationCode.ts +++ b/packages/common/src/invitationCode.ts @@ -1,7 +1,6 @@ import { InvitationData, InvitationPair } from '@quiet/types' -import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, PSK_LENGTH, QUIET_JOIN_PAGE, Site } from './static' +import { ONION_ADDRESS_REGEX, PEER_ID_REGEX, QUIET_JOIN_PAGE, Site } from './static' import { createLibp2pAddress, isPSKcodeValid } from './libp2p' -import validator from 'validator' const parseDeepUrl = ({ url, expectedProtocol = `quiet:` }: { url: string; expectedProtocol?: string }) => { let _url = url @@ -66,6 +65,7 @@ export const invitationShareUrl = (peers: string[] = [], psk: string): string => // TODO: rename /** * @arg {string[]} peers - List of peer's p2p addresses + * @arg psk - Pre shared key in base64 * @returns {string} - Complete shareable invitation link, e.g. https://tryquiet.org/join/#=&=&k= */ const pairs: InvitationPair[] = [] diff --git a/packages/desktop/src/main/main.test.ts b/packages/desktop/src/main/main.test.ts index a0ebdc0e02..5a62d9c667 100644 --- a/packages/desktop/src/main/main.test.ts +++ b/packages/desktop/src/main/main.test.ts @@ -245,7 +245,7 @@ describe('Invitation code', () => { onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', }, ], - psk: '12345', + psk: 'BNlxfE2WBF7LrlpIX0CvECN5o1oZtA16PkAb7GYiwYw=', } it('handles invitation code on open-url event (on macos)', async () => { @@ -255,7 +255,7 @@ describe('Invitation code', () => { expect(mockAppOnCalls[1][0]).toBe('open-url') const event = { preventDefault: () => {} } mockAppOnCalls[1][1](event, composeInvitationDeepUrl(codes)) - expect(mockWindowWebContentsSend).toHaveBeenCalledWith('invitation', { codes }) + expect(mockWindowWebContentsSend).toHaveBeenCalledWith('invitation', { data: codes }) }) it('process invitation code on second-instance event', async () => { @@ -264,6 +264,6 @@ describe('Invitation code', () => { expect(mockAppOnCalls[0][0]).toBe('second-instance') const event = { preventDefault: () => {} } mockAppOnCalls[0][1](event, commandLine) - expect(mockWindowWebContentsSend).toHaveBeenCalledWith('invitation', { codes }) + expect(mockWindowWebContentsSend).toHaveBeenCalledWith('invitation', { data: codes }) }) }) diff --git a/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.test.tsx b/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.test.tsx index a9752d46f8..ee970fd024 100644 --- a/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.test.tsx +++ b/packages/desktop/src/renderer/components/CreateJoinCommunity/JoinCommunity/JoinCommunity.test.tsx @@ -16,18 +16,21 @@ import CreateUsername from '../../CreateUsername/CreateUsername' import PerformCommunityActionComponent from '../PerformCommunityActionComponent' import { inviteLinkField } from '../../../forms/fields/communityFields' import { InviteLinkErrors } from '../../../forms/fieldsErrors' -import { CommunityOwnership } from '@quiet/types' -import { Site, QUIET_JOIN_PAGE } from '@quiet/common' +import { CommunityOwnership, InvitationData } from '@quiet/types' +import { Site, QUIET_JOIN_PAGE, composeInvitationShareUrl } from '@quiet/common' describe('join community', () => { - const validCode = - 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' - const validPair = [ - { - onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', - peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', - }, - ] + const psk = 'BNlxfE2WBF7LrlpIX0CvECN5o1oZtA16PkAb7GYiwYw=' + const validData: InvitationData = { + pairs: [ + { + onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', + peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', + }, + ], + psk, + } + const validCode = composeInvitationShareUrl(validData).split(QUIET_JOIN_PAGE + '#')[1] it('users switches from join to create', async () => { const { store } = await prepareStore({ @@ -106,9 +109,6 @@ describe('join community', () => { }) it('joins community on submit if connection is ready and registrar url is correct', async () => { - const registrarUrl = - 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd' - const handleCommunityAction = jest.fn() const component = ( @@ -129,20 +129,13 @@ describe('join community', () => { const textInput = result.queryByPlaceholderText(inviteLinkField().fieldProps.placeholder) expect(textInput).not.toBeNull() // @ts-expect-error - await userEvent.type(textInput, registrarUrl) + await userEvent.type(textInput, validCode) const submitButton = result.getByText('Continue') expect(submitButton).toBeEnabled() await userEvent.click(submitButton) - await waitFor(() => - expect(handleCommunityAction).toBeCalledWith([ - { - peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', - onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', - }, - ]) - ) + await waitFor(() => expect(handleCommunityAction).toBeCalledWith(validData)) }) it.each([[`${QUIET_JOIN_PAGE}#${validCode}`], [`${QUIET_JOIN_PAGE}/#${validCode}`]])( @@ -176,13 +169,12 @@ describe('join community', () => { expect(submitButton).toBeEnabled() await userEvent.click(submitButton) - await waitFor(() => expect(handleCommunityAction).toBeCalledWith(validPair)) + await waitFor(() => expect(handleCommunityAction).toBeCalledWith(validData)) } ) it('trims whitespaces from registrar url', async () => { - const registrarUrl = - 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd ' + const registrarUrl = validCode + ' ' const handleCommunityAction = jest.fn() @@ -210,19 +202,12 @@ describe('join community', () => { expect(submitButton).toBeEnabled() await userEvent.click(submitButton) - await waitFor(() => - expect(handleCommunityAction).toBeCalledWith([ - { - peerId: 'QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE', - onionAddress: 'y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', - }, - ]) - ) + await waitFor(() => expect(handleCommunityAction).toBeCalledWith(validData)) }) it.each([ [`http://${validCode}`, InviteLinkErrors.InvalidCode], - ['QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=bbb', InviteLinkErrors.InvalidCode], + [`QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE=bbb&${Site.PSK_PARAM_KEY}=${psk}`, InviteLinkErrors.InvalidCode], ['bbb=y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', InviteLinkErrors.InvalidCode], ['QmZoiJNAvCffeEHBjk766nLuKVdkxkAT7wfFJDPPLsbKSE= ', InviteLinkErrors.InvalidCode], ['nqnw4kc4c77fb47lk52m5l57h4tc', InviteLinkErrors.InvalidCode], diff --git a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx index 62e01e5e9f..a258ee8331 100644 --- a/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx +++ b/packages/desktop/src/renderer/components/Settings/Tabs/Invite/Invite.component.test.tsx @@ -188,7 +188,7 @@ describe('CopyLink', () => { class="MuiTypography-root MuiTypography-body2 InviteToCommunitylink css-16d47hw-MuiTypography-root" data-testid="invitation-link" > - https://tryquiet.org/join#QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3=p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad + https://tryquiet.org/join#QmVTkUad2Gq3MkCa8gf12R1gsWDfk2yiTEqb6YGXDG2iQ3=p3oqdr53dkgg3n5nuezlzyawhxvit5efxzlunvzp7n7lmva6fj3i43ad&k=12345