diff --git a/packages/snap/index.html b/packages/snap/index.html
index 90438dff0..ec0dbb404 100644
--- a/packages/snap/index.html
+++ b/packages/snap/index.html
@@ -1,452 +1,438 @@
-
- Hello, Snaps!
-
-
-
-
- Hello, Snaps!
-
- Instructions
-
- First, click "Connect". Then, try out the other buttons!
- Please note that:
-
-
- If you want to generate a VP you need a VC ID. To get it, you need a
- VC saved in MetaMask state (use Save VC). Then you need to retrieve
- id of VC by using Get VCS button and searching for "key" property in
- the console.
-
-
-
-
-
-
- Connect
-
-
- Get VCS
-
-
-
-
- Save VC
- Save VC Ceramic
- Save VC Both
-
-
-
- With challenge
-
-
- jwt
- lds
- eip
-
- Get VP
- Get VC
-
-
-
- did:ethr
- did:key
- did:pkh
- did:gh
-
- Switch current method
-
-
- Get current DID
- Get current method
- Get available methods
-
-
-
-
-
-
- ChangeInfuraToken
- resolveDID
-
-
- Get current VCStore
- Toggle current VCStore
- Get available vc stores
-
-
-
+
- async function resolveDIDDocument() {
- try {
- const did = document.getElementById('infura_token').value.toString();
- const response = await ethereum.request({
- method: `wallet_snap_${snapId}`,
- params: {
- method: 'resolveDID',
- params: {
- did,
- },
- },
- });
- console.log(response);
- } catch (err) {
- console.error(err);
- alert('Problem happened: ' + err.message || err);
- }
- }
-
- async function togglePopups() {
- try {
- const response = await ethereum.request({
- method: `wallet_snap_${snapId}`,
- params: {
- method: 'togglePopups',
- },
- });
- console.log(response);
- } catch (err) {
- console.error(err);
- alert('Problem happened: ' + err.message || err);
- }
- }
-
diff --git a/packages/snap/package.json b/packages/snap/package.json
index 1060ac86a..ff43624a0 100644
--- a/packages/snap/package.json
+++ b/packages/snap/package.json
@@ -53,6 +53,10 @@
"@blockchain-lab-um/ssi-snap-types": "*",
"@blockchain-lab-um/utils": "*",
"@blockchain-lab-um/veramo-vc-manager": "*",
+ "@cef-ebsi/ebsi-did-resolver": "^3.0.0",
+ "@cef-ebsi/key-did-resolver": "^1.0.0",
+ "@cef-ebsi/siop-auth": "^3.0.0",
+ "@cef-ebsi/verifiable-presentation": "^5.0.5",
"@ceramicnetwork/http-client": "2.20.0",
"@ceramicnetwork/streamid": "2.14.0",
"@didtools/pkh-ethereum": "^0.0.2",
@@ -84,10 +88,12 @@
"did-resolver": "4.0.1",
"did-session": "1.0.0",
"dids": "^3.4.0",
+ "elliptic": "^6.5.4",
"eth-sig-util": "3.0.1",
"ethers": "5.7.2",
"ethr-did": "2.3.6",
"ethr-did-resolver": "8.0.0",
+ "jose": "^4.13.1",
"js-sha256": "^0.9.0",
"json-loader": "^0.5.7",
"jsonpath": "^1.1.1",
@@ -111,6 +117,7 @@
"@metamask/snaps-webpack-plugin": "0.28.0",
"@swc/core": "^1.3.41",
"@swc/jest": "^0.2.24",
+ "@types/elliptic": "^6.4.14",
"@types/jest": "^29.5.0",
"@types/jsonpath": "^0.2.0",
"@types/lodash.clonedeep": "^4.5.7",
diff --git a/packages/snap/snap.manifest.json b/packages/snap/snap.manifest.json
index 28c3fceab..0bb5e07fa 100644
--- a/packages/snap/snap.manifest.json
+++ b/packages/snap/snap.manifest.json
@@ -7,7 +7,7 @@
"url": "https://github.com/blockchain-lab-um/ssi-snap.git"
},
"source": {
- "shasum": "qyCwn7UrXV23XgK1QfNXZNTqHphKIY8yEcvMUVYJMD4=",
+ "shasum": "uEvHRxNOsnlp04R9abWC2sMzqWWEZ0A+F/RhF+CKrcM=",
"location": {
"npm": {
"filePath": "dist/snap.js",
diff --git a/packages/snap/src/constants/multicodec.ts b/packages/snap/src/constants/multicodec.ts
index 4863c519b..7807905af 100644
--- a/packages/snap/src/constants/multicodec.ts
+++ b/packages/snap/src/constants/multicodec.ts
@@ -3,11 +3,13 @@ export type CodecName =
| 'secp256k1-priv'
| 'secp256k1-pub'
| 'ed25519-priv'
+ | 'jwk_jcs-pub'
| 'ed25519-pub';
export const MULTICODECS: Record = {
'secp256k1-priv': new Uint8Array([129, 38]),
'secp256k1-pub': new Uint8Array([231, 1]),
'ed25519-priv': new Uint8Array([128, 38]),
+ 'jwk_jcs-pub': new Uint8Array([235, 81]),
'ed25519-pub': new Uint8Array([237, 1]),
};
diff --git a/packages/snap/src/did/ebsi/constants.ts b/packages/snap/src/did/ebsi/constants.ts
new file mode 100644
index 000000000..e93fba71a
--- /dev/null
+++ b/packages/snap/src/did/ebsi/constants.ts
@@ -0,0 +1,19 @@
+const BASE_URL = 'https://api-pilot.ebsi.eu';
+const DID_REGISTRY = `${BASE_URL}/did-registry/v3/identifiers`;
+const TAR_REG = `${BASE_URL}/trusted-apps-registry/v3/apps`;
+
+const AUTH_RESPONSE = '/users-onboarding/v2/authentication-responses';
+const SIOP_SESSIONS = '/authorisation/v2/siop-sessions';
+const DID_REGISTRY_RPC = '/did-registry/v3/jsonrpc';
+
+export const EbsiConfig = {
+ BASE_URL,
+ DID_REGISTRY,
+ TAR_REG,
+};
+
+export const EbsiEndpoints = {
+ AUTH_RESPONSE,
+ SIOP_SESSIONS,
+ DID_REGISTRY_RPC,
+};
diff --git a/packages/snap/src/did/ebsi/ebsiDidOnboarding.ts b/packages/snap/src/did/ebsi/ebsiDidOnboarding.ts
new file mode 100644
index 000000000..a2553a047
--- /dev/null
+++ b/packages/snap/src/did/ebsi/ebsiDidOnboarding.ts
@@ -0,0 +1,349 @@
+import { randomBytes } from 'crypto';
+import { Agent } from '@cef-ebsi/siop-auth';
+import {
+ EbsiIssuer,
+ EbsiVerifiablePresentation,
+ createVerifiablePresentationJwt,
+} from '@cef-ebsi/verifiable-presentation';
+import { IIdentifier } from '@veramo/core';
+import { ethers } from 'ethers';
+import * as jose from 'jose';
+import { v4 as uuidv4 } from 'uuid';
+
+import { EbsiConfig, EbsiEndpoints } from './constants';
+import { algoMap, privateKeyJwkToHex } from './ebsiDidUtils';
+import {
+ IEbsiDidSupportedKeyTypes,
+ IKeyJwks,
+ IRPCResult,
+ ISession,
+ IUnsignedTransaction,
+ IVerifiableAuthorization,
+ IVerifiablePresentation,
+} from './types/ebsiProviderTypes';
+
+async function createVerifiablePresentation(args: {
+ verifiableAuthorization: IVerifiableAuthorization;
+ identifier: Omit;
+ keyJwks: IKeyJwks;
+}): Promise {
+ const alg = args.keyJwks.privateKeyJwk.alg as 'ES256' | 'ES256K' | 'EdDSA';
+
+ const verifiableAuthorization =
+ args.verifiableAuthorization.verifiableCredential;
+ if (args.identifier.controllerKeyId === undefined) {
+ throw new Error('Controller Key ID undefined');
+ }
+ if (args.verifiableAuthorization.verifiableCredential === undefined) {
+ throw new Error('Verifiable Authorization undefined');
+ }
+ const issuer: EbsiIssuer = {
+ did: args.identifier.did,
+ kid: args.identifier.controllerKeyId,
+ privateKeyJwk: args.keyJwks.privateKeyJwk,
+ publicKeyJwk: args.keyJwks.publicKeyJwk,
+ alg,
+ };
+
+ const payload = {
+ id: `urn:did:${uuidv4()}`,
+ '@context': ['https://www.w3.org/2018/credentials/v1'],
+ type: ['VerifiablePresentation'],
+ holder: args.identifier.did,
+ verifiableCredential: [verifiableAuthorization],
+ } as EbsiVerifiablePresentation;
+
+ // FIXME: find a way around this function, it uses a library which prevents the
+ // snap from building
+ const jwtVp = await createVerifiablePresentationJwt(
+ payload,
+ issuer,
+ `${EbsiConfig.BASE_URL}${EbsiEndpoints.SIOP_SESSIONS}`,
+ {
+ skipValidation: true,
+ ebsiAuthority: EbsiConfig.BASE_URL.replace('http://', '').replace(
+ 'https://',
+ ''
+ ),
+ exp: Math.floor(Date.now() / 1000) + 900,
+ }
+ );
+ return { jwtVp, payload };
+}
+
+export async function requestVerifiableAuthorization(args: {
+ idTokenJwt: string;
+ bearer: string;
+}): Promise {
+ const authenticationResponse = await fetch(
+ `${EbsiConfig.BASE_URL}${EbsiEndpoints.AUTH_RESPONSE}`,
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ Authorization: `Bearer ${args.bearer}`,
+ },
+ body: JSON.stringify({
+ id_token: args.idTokenJwt,
+ }),
+ }
+ );
+ if (
+ authenticationResponse.status > 299 ||
+ authenticationResponse.status < 200
+ ) {
+ throw new Error(
+ `${JSON.stringify(await authenticationResponse.json(), null, 2)}`
+ );
+ }
+ const va = (await authenticationResponse.json()) as IVerifiableAuthorization;
+
+ return va;
+}
+
+async function exchangeVerifiableAuthorization(args: {
+ verifiableAuthorization: IVerifiableAuthorization;
+ identifier: Omit;
+ keyJwks: IKeyJwks;
+}): Promise {
+ const alg =
+ algoMap[args.keyJwks.privateKeyJwk.crv as IEbsiDidSupportedKeyTypes] ||
+ 'ES256K';
+ const verifiablePresentation = await createVerifiablePresentation({
+ verifiableAuthorization: args.verifiableAuthorization,
+ identifier: args.identifier,
+ keyJwks: args.keyJwks,
+ });
+ const ebsiAgent = new Agent({
+ privateKey: await jose.importJWK(args.keyJwks.privateKeyJwk, alg),
+ alg,
+ kid: args.identifier.controllerKeyId,
+ siopV2: true,
+ });
+ const ephemeralKey = await jose.generateKeyPair(alg);
+ const ephemeralKeyJwk = await jose.exportJWK(ephemeralKey.privateKey);
+
+ if (!ephemeralKeyJwk.d) {
+ throw new Error(
+ 'There has been an error while generating ephemeral keys needed for SIOP'
+ );
+ }
+ const ephemeralPublicKeyJwk = { ...ephemeralKeyJwk };
+ delete ephemeralPublicKeyJwk.d;
+
+ const nonce = uuidv4();
+
+ const response = await ebsiAgent.createResponse({
+ nonce,
+ redirectUri: 'https://self-issued.me',
+ claims: {
+ encryption_key: ephemeralPublicKeyJwk,
+ },
+ responseMode: 'form_post',
+ _vp_token: {
+ presentation_submission: {
+ id: uuidv4(),
+ definition_id: uuidv4(),
+ descriptor_map: [
+ {
+ id: uuidv4(),
+ format: 'jwt_vp',
+ path: '$',
+ path_nested: {
+ id: 'onboarding-input-id',
+ format: 'jwt_vc',
+ path: '$.vp.verifiableCredential[0]',
+ },
+ },
+ ],
+ },
+ },
+ });
+
+ const body = {
+ id_token: response.idToken as string,
+ vp_token: verifiablePresentation.jwtVp,
+ };
+ const sessionResponse = await fetch(
+ `${EbsiConfig.BASE_URL}${EbsiEndpoints.SIOP_SESSIONS}`,
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/x-www-form-urlencoded',
+ },
+ body: new URLSearchParams(body),
+ }
+ );
+ if (sessionResponse.status > 299 || sessionResponse.status < 200) {
+ throw new Error(`${JSON.stringify(await sessionResponse.json(), null, 2)}`);
+ }
+
+ const session = (await sessionResponse.json()) as ISession;
+ const accessToken = await Agent.verifyAkeResponse(session, {
+ nonce,
+ privateEncryptionKeyJwk: ephemeralKeyJwk,
+ trustedAppsRegistry: `${EbsiConfig.TAR_REG}`,
+ alg,
+ });
+
+ return accessToken;
+}
+
+async function insertDidDocument(args: {
+ bearer: string;
+ identifier: Omit;
+ keyJwks: IKeyJwks;
+}): Promise {
+ const didDocument = {
+ '@context': [
+ 'https://www.w3.org/ns/did/v1',
+ 'https://w3id.org/security/suites/jws-2020/v1',
+ ],
+ id: args.identifier.did,
+ verificationMethod: [
+ {
+ id: args.identifier.controllerKeyId,
+ type: 'JsonWebKey2020',
+ controller: args.identifier.did,
+ publicKeyJwk: args.keyJwks.publicKeyJwk,
+ },
+ ],
+ authentication: [args.identifier.controllerKeyId],
+ assertionMethod: [args.identifier.controllerKeyId],
+ };
+
+ const metadata = {
+ meta: randomBytes(32).toString('hex'),
+ };
+ const timestamp = {
+ data: randomBytes(32).toString('hex'),
+ };
+
+ const privateKeyHex = privateKeyJwkToHex(args.keyJwks.privateKeyJwk);
+ const wallet = new ethers.Wallet(privateKeyHex);
+ const address = await wallet.getAddress();
+ const bufferDidDocument = Buffer.from(JSON.stringify(didDocument));
+ const bufferTimestamp = Buffer.from(JSON.stringify(timestamp));
+ const bufferMetadata = Buffer.from(JSON.stringify(metadata));
+ const hashValue = ethers.utils.sha256(bufferDidDocument);
+
+ const unsignedTxResponse = await fetch(
+ `${EbsiConfig.BASE_URL}${EbsiEndpoints.DID_REGISTRY_RPC}`,
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ Authorization: `Bearer ${args.bearer}`,
+ },
+ body: JSON.stringify({
+ jsonrpc: '2.0',
+ method: 'insertDidDocument',
+ id: Math.ceil(Math.random() * 1000),
+ params: [
+ {
+ from: address,
+ identifier: `0x${Buffer.from(args.identifier.did).toString('hex')}`,
+ hashAlgorithmId: 1, // sha256
+ hashValue,
+ didVersionInfo: `0x${bufferDidDocument.toString('hex')}`,
+ timestampData: `0x${bufferTimestamp.toString('hex')}`,
+ didVersionMetadata: `0x${bufferMetadata.toString('hex')}`,
+ },
+ ],
+ }),
+ }
+ );
+ if (unsignedTxResponse.status > 299 || unsignedTxResponse.status < 200) {
+ throw new Error(
+ `${JSON.stringify(await unsignedTxResponse.json(), null, 2)}`
+ );
+ }
+ const unsignedTx = (await unsignedTxResponse.json()) as IUnsignedTransaction;
+ const tmpChainId = unsignedTx.result.chainId;
+ const chainId = Number(unsignedTx.result.chainId);
+ unsignedTx.result.chainId = chainId.toString();
+ const signedRawTransaction = await wallet.signTransaction(
+ unsignedTx.result as ethers.providers.TransactionRequest
+ );
+
+ const { r, s, v } = ethers.utils.parseTransaction(signedRawTransaction);
+ unsignedTx.result.chainId = tmpChainId;
+ const signedTx = {
+ protocol: 'eth',
+ unsignedTransaction: unsignedTx.result,
+ r,
+ s,
+ v: `0x${Number(v).toString(16)}`,
+ signedRawTransaction,
+ };
+ const jsonRpcBody = {
+ jsonrpc: '2.0',
+ method: 'sendSignedTransaction',
+ params: [signedTx],
+ id: Math.ceil(Math.random() * 1000),
+ };
+
+ const jsonRpcResponse = await fetch(
+ `${EbsiConfig.BASE_URL}${EbsiEndpoints.DID_REGISTRY_RPC}`,
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ Authorization: `Bearer ${args.bearer}`,
+ },
+ body: JSON.stringify(jsonRpcBody),
+ }
+ );
+
+ return (await jsonRpcResponse.json()) as IRPCResult;
+}
+
+// Main onboard function to call when creating a new identifier
+export async function onboard(args: {
+ bearer: string;
+ keyJwks: IKeyJwks;
+ identifier: Omit;
+}): Promise {
+ if (!args.identifier.controllerKeyId) {
+ throw new Error('Missing controllerKeyId');
+ }
+ const kid = args.identifier.controllerKeyId;
+ const subject = kid.split('#')[1];
+ const idToken = {
+ sub: subject,
+ sub_jwk: args.keyJwks.publicKeyJwk,
+ nonce: uuidv4(),
+ responseMode: 'form_post',
+ };
+ if (!args.keyJwks.privateKeyJwk.crv) {
+ throw new Error('Missing crv');
+ }
+ const alg =
+ algoMap[args.keyJwks.privateKeyJwk.crv as IEbsiDidSupportedKeyTypes] ||
+ 'ES256K';
+ const privateKey = await jose.importJWK(args.keyJwks.privateKeyJwk, alg);
+ const idTokenJwt = await new jose.SignJWT(idToken)
+ .setProtectedHeader({ alg, typ: 'JWT', kid })
+ .setIssuedAt()
+ .setAudience(`${EbsiConfig.BASE_URL}${EbsiEndpoints.AUTH_RESPONSE}`)
+ .setIssuer('https://self-issued.me/v2')
+ .setExpirationTime('1h')
+ .sign(privateKey);
+
+ const verifiableAuthorization = await requestVerifiableAuthorization({
+ idTokenJwt,
+ bearer: args.bearer,
+ });
+
+ const accessToken = await exchangeVerifiableAuthorization({
+ verifiableAuthorization,
+ keyJwks: args.keyJwks,
+ identifier: args.identifier,
+ });
+
+ return insertDidDocument({
+ identifier: args.identifier,
+ bearer: accessToken,
+ keyJwks: args.keyJwks,
+ });
+}
diff --git a/packages/snap/src/did/ebsi/ebsiDidProvider.ts b/packages/snap/src/did/ebsi/ebsiDidProvider.ts
new file mode 100644
index 000000000..885437491
--- /dev/null
+++ b/packages/snap/src/did/ebsi/ebsiDidProvider.ts
@@ -0,0 +1,289 @@
+/* eslint-disable @typescript-eslint/require-await */
+/* eslint-disable @typescript-eslint/no-explicit-any */
+/* eslint-disable unused-imports/no-unused-vars */
+import {
+ IAgentContext,
+ IIdentifier,
+ IKey,
+ IKeyManager,
+ IService,
+} from '@veramo/core';
+import { AbstractIdentifierProvider } from '@veramo/did-manager';
+import { bytesToBase64url, hexToBytes } from '@veramo/utils';
+import { ec as EC } from 'elliptic';
+import * as jose from 'jose';
+
+import { onboard } from './ebsiDidOnboarding';
+import {
+ algoMap,
+ generateEbsiSubjectIdentifier,
+ generateRandomEbsiSubjectIdentifier,
+ privateKeyJwkToHex,
+} from './ebsiDidUtils';
+import {
+ IContext,
+ IEbsiCreateIdentifierOptions,
+ IEbsiDidSupportedEcdsaAlgo,
+ IEbsiDidSupportedHashTypes,
+ IEbsiDidSupportedKeyTypes,
+ IImportedKey,
+} from './types/ebsiProviderTypes';
+
+/**
+ * {@link @veramo/did-manager#DIDManager} identifier provider for `did:ebsi` identifiers
+ *
+ * @beta This API may change without a BREAKING CHANGE notice.
+ */
+export class EbsiDIDProvider extends AbstractIdentifierProvider {
+ private defaultKms: string;
+
+ constructor(options: { defaultKms: string }) {
+ super();
+ this.defaultKms = options.defaultKms;
+ }
+
+ async createIdentifier(
+ { kms, options }: { kms?: string; options?: IEbsiCreateIdentifierOptions },
+ context: IContext
+ ): Promise> {
+ if (options?.id && options?.id.length !== 32) {
+ throw new Error(
+ 'Subject identifier should be 16 bytes (32 characters in hex string, or Uint8Array) long'
+ );
+ }
+
+ if (options?.privateKeyHex && !options?.id) {
+ throw new Error(
+ 'Currently, subject identifier id should be provided along with a private key'
+ );
+ }
+ let privateKeyHex = options?.privateKeyHex;
+ if (privateKeyHex?.startsWith('0x')) {
+ privateKeyHex = privateKeyHex.slice(2);
+ }
+
+ if (privateKeyHex && privateKeyHex?.length !== 64) {
+ throw new Error(
+ 'Private key should be 32 bytes (64 characters in hex string) long'
+ );
+ }
+
+ const hashType: IEbsiDidSupportedHashTypes = options?.hashType || 'sha256';
+ if (hashType !== 'sha256') {
+ throw new Error('Currently, only sha256 hash type is supported');
+ }
+ const keyType = options?.keyType || 'Secp256k1';
+ const importedKey = await this.importKey({
+ privateKeyHex,
+ id: options?.id,
+ keyType,
+ });
+ privateKeyHex = importedKey.privateKeyHex;
+
+ const kid = `did:ebsi:${importedKey.subjectIdentifier}#${importedKey.jwkThumbprint}`;
+ const did = `did:ebsi:${importedKey.subjectIdentifier}`;
+ const key = await context.agent.keyManagerImport({
+ kid,
+ privateKeyHex,
+ type: keyType === 'P-256' ? 'Secp256r1' : keyType,
+ kms: this.defaultKms || 'local',
+ });
+ const resolution = await context.agent.resolveDid({ didUrl: did });
+
+ if (resolution.didDocument) {
+ const resolvedVerificationMethod =
+ resolution.didDocument.verificationMethod?.find((vm) => vm.id === kid);
+
+ if (!resolvedVerificationMethod) {
+ throw new Error(
+ `${kid} does not match any key id in resolved did doc's verification method, check provided crv: ${keyType}`
+ );
+ }
+ return {
+ did,
+ controllerKeyId: kid,
+ keys: [key],
+ services: [],
+ } as Omit;
+ }
+
+ if (!options?.bearer) {
+ throw new Error(
+ 'Bearer token is required for onboarding, it should be passed as options parameter'
+ );
+ }
+ const { bearer } = options;
+
+ const identifier = {
+ did,
+ controllerKeyId: kid,
+ keys: [key],
+ services: [],
+ };
+
+ const keyJwks = {
+ privateKeyJwk: importedKey.privateKeyJwk,
+ publicKeyJwk: importedKey.publicKeyJwk,
+ };
+ const onboardedResult = await onboard({ bearer, identifier, keyJwks });
+
+ if (!onboardedResult) {
+ throw new Error(
+ 'Unknown error while creating identifier (onboarding unsuccessful)'
+ );
+ }
+
+ if (
+ !onboardedResult.result ||
+ (onboardedResult.result &&
+ !(onboardedResult.result as string).startsWith('0x'))
+ ) {
+ throw new Error(
+ `Error while creating identifier: ${JSON.stringify(
+ onboardedResult.error,
+ null,
+ 2
+ )}`
+ );
+ }
+
+ return identifier;
+ }
+
+ async importKey(args: {
+ privateKeyHex?: string;
+ keyType?: IEbsiDidSupportedKeyTypes;
+ id?: Uint8Array | string;
+ }): Promise {
+ let jwkThumbprint: string;
+ let privateKeyJwk: jose.JWK;
+ let publicKeyJwk: jose.JWK;
+ let subjectIdentifier: string;
+ const keyType: IEbsiDidSupportedKeyTypes = args.keyType || 'Secp256k1';
+ let crv: string;
+ const algorithm: IEbsiDidSupportedEcdsaAlgo = algoMap[keyType];
+ if (!algorithm) {
+ throw new Error(
+ `Unsupported key type, currently only supported Secp256k1 and P-256`
+ );
+ }
+ let curve: EC;
+ switch (keyType) {
+ case 'Secp256k1':
+ curve = new EC('secp256k1');
+ crv = 'secp256k1';
+ break;
+ case 'P-256':
+ curve = new EC('p256');
+ crv = 'P-256';
+ break;
+ default:
+ throw new Error(
+ `Unsupported key type, currently only supported Secp256k1 and P-256`
+ );
+ }
+
+ let privateKeyHex;
+
+ if (args.privateKeyHex) {
+ const privateKey = curve.keyFromPrivate(args.privateKeyHex, 'hex');
+ const y = bytesToBase64url(
+ hexToBytes(privateKey.getPublic().getY().toString('hex'))
+ );
+ const x = bytesToBase64url(
+ hexToBytes(privateKey.getPublic().getX().toString('hex'))
+ );
+ const d = bytesToBase64url(hexToBytes(args.privateKeyHex));
+ publicKeyJwk = {
+ kty: 'EC',
+ crv,
+ x,
+ y,
+ };
+ privateKeyJwk = { ...publicKeyJwk, d };
+
+ jwkThumbprint = await jose.calculateJwkThumbprint(
+ privateKeyJwk,
+ 'sha256'
+ );
+ subjectIdentifier = generateEbsiSubjectIdentifier(args.id);
+ } else {
+ // Generate new key pair
+ const keys = await jose.generateKeyPair(algorithm);
+ privateKeyJwk = await jose.exportJWK(keys.privateKey);
+ publicKeyJwk = await jose.exportJWK(keys.publicKey);
+ jwkThumbprint = await jose.calculateJwkThumbprint(
+ privateKeyJwk,
+ 'sha256'
+ );
+ subjectIdentifier = generateRandomEbsiSubjectIdentifier();
+ privateKeyHex = privateKeyJwkToHex(privateKeyJwk);
+ }
+ return {
+ jwkThumbprint,
+ privateKeyJwk,
+ publicKeyJwk,
+ subjectIdentifier,
+ privateKeyHex,
+ } as IImportedKey;
+ }
+
+ async updateIdentifier(
+ args: {
+ did: string;
+ kms?: string | undefined;
+ alias?: string | undefined;
+ options?: any;
+ },
+ context: IAgentContext
+ ): Promise {
+ throw new Error('EbsiDIDProvider updateIdentifier not supported yet.');
+ }
+
+ async deleteIdentifier(
+ identifier: IIdentifier,
+ context: IContext
+ ): Promise {
+ for (const { kid } of identifier.keys) {
+ // eslint-disable-next-line no-await-in-loop
+ await context.agent.keyManagerDelete({ kid });
+ }
+ return true;
+ }
+
+ async addKey(
+ {
+ identifier,
+ key,
+ options,
+ }: { identifier: IIdentifier; key: IKey; options?: any },
+ context: IContext
+ ): Promise {
+ throw Error('EbsiDIDProvider addKey not supported');
+ }
+
+ async addService(
+ {
+ identifier,
+ service,
+ options,
+ }: { identifier: IIdentifier; service: IService; options?: any },
+ context: IContext
+ ): Promise {
+ throw Error('EbsiDIDProvider addService not supported');
+ }
+
+ async removeKey(
+ args: { identifier: IIdentifier; kid: string; options?: any },
+ context: IContext
+ ): Promise {
+ throw Error('EbsiDIDProvider removeKey not supported');
+ }
+
+ async removeService(
+ args: { identifier: IIdentifier; id: string; options?: any },
+ context: IContext
+ ): Promise {
+ throw Error('EbsiDIDProvider removeService not supported');
+ }
+}
diff --git a/packages/snap/src/did/ebsi/ebsiDidResolver.ts b/packages/snap/src/did/ebsi/ebsiDidResolver.ts
new file mode 100644
index 000000000..b3d56f386
--- /dev/null
+++ b/packages/snap/src/did/ebsi/ebsiDidResolver.ts
@@ -0,0 +1,47 @@
+import { getResolver } from '@cef-ebsi/ebsi-did-resolver';
+import {
+ DIDResolutionOptions,
+ DIDResolutionResult,
+ DIDResolver,
+ ParsedDID,
+ Resolvable,
+ Resolver,
+} from 'did-resolver';
+
+import { EbsiConfig } from './constants';
+
+const resolveDidEbsi: DIDResolver = async (
+ did: string,
+ _parsed: ParsedDID,
+ _resolver: Resolvable,
+ _options: DIDResolutionOptions
+): Promise => {
+ try {
+ const resolverConfig = {
+ registry: EbsiConfig.DID_REGISTRY,
+ };
+ const ebsiResolver = getResolver(resolverConfig);
+ const didResolver = new Resolver(ebsiResolver);
+
+ const didResolution = await didResolver.resolve(did);
+ return didResolution;
+ } catch (err: unknown) {
+ return {
+ didDocumentMetadata: {},
+ didResolutionMetadata: {
+ error: 'invalidDid',
+ message: (err as string).toString(),
+ },
+ didDocument: null,
+ };
+ }
+};
+
+/**
+ * Provides a mapping to a did:ebsi resolver, usable by {@link did-resolver#Resolver}.
+ *
+ * @public
+ */
+export function ebsiDidResolver() {
+ return { ebsi: resolveDidEbsi };
+}
diff --git a/packages/snap/src/did/ebsi/ebsiDidUtils.ts b/packages/snap/src/did/ebsi/ebsiDidUtils.ts
new file mode 100644
index 000000000..c4e23b86f
--- /dev/null
+++ b/packages/snap/src/did/ebsi/ebsiDidUtils.ts
@@ -0,0 +1,49 @@
+import { randomBytes } from 'crypto';
+import * as jose from 'jose';
+import { base58btc } from 'multiformats/bases/base58';
+
+import {
+ IEbsiDidSupportedEcdsaAlgo,
+ IEbsiDidSupportedKeyTypes,
+} from './types/ebsiProviderTypes';
+
+export const algoMap: Record<
+ IEbsiDidSupportedKeyTypes,
+ IEbsiDidSupportedEcdsaAlgo
+> = {
+ 'P-256': 'ES256',
+ Secp256k1: 'ES256K',
+};
+
+export function generateRandomEbsiSubjectIdentifier(): string {
+ // TODO: probably refactor this to use u8a
+ return Buffer.from(
+ base58btc.encode(Buffer.concat([new Uint8Array([1]), randomBytes(16)]))
+ ).toString();
+}
+
+export function generateEbsiSubjectIdentifier(
+ sequence: Uint8Array | string | undefined
+): string {
+ if (!sequence) {
+ throw new Error('Sequence is undefined');
+ }
+ if (sequence instanceof Uint8Array) {
+ return Buffer.from(
+ base58btc.encode(Buffer.concat([new Uint8Array([1]), sequence]))
+ ).toString();
+ }
+
+ return Buffer.from(
+ base58btc.encode(
+ Buffer.concat([new Uint8Array([1]), Buffer.from(sequence, 'hex')])
+ )
+ ).toString();
+}
+
+export function privateKeyJwkToHex(privateKeyJwk: jose.JWK): string {
+ if (!privateKeyJwk.d) {
+ throw new Error('Key does not contain private key material');
+ }
+ return Buffer.from(privateKeyJwk.d, 'base64').toString('hex');
+}
diff --git a/packages/snap/src/did/ebsi/types/ebsiProviderTypes.ts b/packages/snap/src/did/ebsi/types/ebsiProviderTypes.ts
new file mode 100644
index 000000000..9c3c5c193
--- /dev/null
+++ b/packages/snap/src/did/ebsi/types/ebsiProviderTypes.ts
@@ -0,0 +1,219 @@
+import { EbsiVerifiablePresentation } from '@cef-ebsi/verifiable-presentation';
+import {
+ IAgentContext,
+ ICredentialIssuer,
+ IKeyManager,
+ IResolver,
+} from '@veramo/core';
+import { JWK } from 'jose';
+
+export type IContext = IAgentContext<
+ IKeyManager & ICredentialIssuer & IResolver
+>;
+
+export type IRequestVerifiableAuthorizationArgs = {
+ /**
+ * JWT encoded id token
+ */
+ idTokenJwt: string;
+ /**
+ * Bearer token needed for authorization
+ */
+ bearer: string;
+};
+
+export type IVerifiableAuthorization = {
+ /**
+ * JWT encoded Verifiable Authorization
+ */
+ verifiableCredential: string;
+};
+
+export type IVerifiablePresentation = {
+ /**
+ * JWT encoded Verifiable Presentation
+ */
+ jwtVp: string;
+ /**
+ * Payload of the Verifiable Presentation
+ */
+ payload: EbsiVerifiablePresentation;
+};
+
+export type ISession = {
+ /**
+ * Encrypted payload with user's public key
+ */
+ ake1_enc_payload: string;
+ /**
+ * Encrypted payload with user's public key
+ */
+ ake1_sig_payload: ISIOPSessionPayload;
+ /**
+ * Detached JWS of AKE1 Signing Payload
+ */
+ ake1_jws_detached: string;
+ /**
+ * API KID
+ */
+ kid: string;
+};
+
+export type IKeyJwks = {
+ /**
+ * Private key in JWK format
+ */
+ privateKeyJwk: JWK;
+ /**
+ * Public key in JWK format
+ */
+ publicKeyJwk: JWK;
+};
+
+export type ISIOPSessionPayload = {
+ /**
+ * Issued at
+ */
+ iat: number;
+ /**
+ * Expires at
+ */
+ exp: number;
+ /**
+ * Nonce used during the authentication process
+ */
+ ake1_nonce: string;
+ /**
+ * Encrypted payload with user's public key
+ */
+ ake1_enc_payload: string;
+ /**
+ * API DID
+ */
+ did: string;
+ /**
+ * Issuer
+ */
+ iss: string;
+};
+
+export type IRPCResult = {
+ /**
+ * Must be exactly "2.0"
+ */
+ jsonrpc: string;
+ /**
+ * Same identifier established by the client in the call
+ */
+ id: number;
+ /**
+ * Result of the call
+ */
+ result?: string | object;
+ /**
+ * Error of the call if raised
+ */
+ error?: string | object;
+};
+
+export type IEbsiCreateIdentifierOptions = {
+ /**
+ * Bearer token needed for authorization
+ */
+ bearer?: string;
+ /**
+ * Custom private key to import, must be passed along with subject identifier, of type Secp256k1
+ * i.e. 2658053a899091ceb000e0f13d0a47790397e0ebc84e2b6a90489430cb6b9e06
+ */
+ privateKeyHex?: string;
+ /**
+ * Imported key type, must be passed along with private key, currently supported only Secp256k1
+ */
+ keyType?: IEbsiDidSupportedKeyTypes;
+ /**
+ * Hash type used for generating keys, currently supported only sha256
+ */
+ hashType?: IEbsiDidSupportedHashTypes;
+ /**
+ * Custom sequence of 16 bytes used for generating a subject identifier, must be passed along with private key, 32 bytes hex string or uint8array
+ * i.e. 27ca548e74bd14275251623cea1ff0c5 or Uint8Array([132, 156, 183, 245, 109, 91, 99, 250, 84, 198, 222, 61, 170, 87, 120, 151])
+ */
+ id?: Uint8Array | string;
+};
+
+export type IEbsiDidSupportedKeyTypes = 'Secp256k1' | 'P-256';
+export type IEbsiDidSupportedHashTypes = 'sha256';
+export type IEbsiDidSupportedEcdsaAlgo = 'ES256' | 'ES256K';
+
+export type IImportedKey = {
+ /**
+ * JWK thumbprint
+ */
+ jwkThumbprint: string;
+ /**
+ * Passed or generated private key in hex format
+ */
+ privateKeyHex: string;
+ /**
+ * Passed or generated private key in JWK format
+ */
+ privateKeyJwk: JWK;
+ /**
+ * Passed or generated public key in JWK format
+ */
+ publicKeyJwk: JWK;
+ /**
+ * Generated subject identifier
+ */
+ subjectIdentifier: string;
+};
+
+export type IUnsignedTransaction = {
+ /**
+ * Version of JSON-RPC protocol
+ */
+ jsonrpc: string;
+ /**
+ * A number representing the unique ID for this tx
+ */
+ id: number;
+ /**
+ * Unsigned transaction
+ */
+ result: IUnsignedTransactionResult;
+};
+
+export type IUnsignedTransactionResult = {
+ /**
+ * Address of the sender
+ */
+ from: string;
+ /**
+ * Address of the receiver
+ */
+ to: string;
+ /**
+ * Tx data
+ */
+ data: string;
+ /**
+ * Tx nonce
+ */
+ nonce: string;
+ /**
+ * ID of the chain
+ */
+ chainId: string | number;
+ /**
+ * Max gas limit
+ */
+ gasLimit: string;
+ /**
+ * Gas price
+ */
+ gasPrice: string;
+ /**
+ * Quantity of Ether to send
+ */
+ value: string;
+};
diff --git a/packages/snap/src/did/key/keyDidProvider.ts b/packages/snap/src/did/key/keyDidProvider.ts
index 03760169c..a91987e08 100644
--- a/packages/snap/src/did/key/keyDidProvider.ts
+++ b/packages/snap/src/did/key/keyDidProvider.ts
@@ -4,6 +4,8 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/require-await */
+
+import { util } from '@cef-ebsi/key-did-resolver';
import {
IAgentContext,
IIdentifier,
@@ -12,9 +14,12 @@ import {
IService,
} from '@veramo/core';
import { AbstractIdentifierProvider } from '@veramo/did-manager';
+import { bytesToBase64url, hexToBytes } from '@veramo/utils';
+import { ec as EC } from 'elliptic';
import { base58btc } from 'multiformats/bases/base58';
import { addMulticodecPrefix } from '../../utils/formatUtils';
+import { IKeyCreateIdentifierOptionsany } from './types/keyProviderTypes';
type IContext = IAgentContext;
@@ -33,14 +38,44 @@ export class KeyDIDProvider extends AbstractIdentifierProvider {
async createIdentifier(
// eslint-disable-next-line @typescript-eslint/no-unused-vars
- { kms, options }: { kms?: string; options?: any },
+ {
+ kms,
+ options,
+ }: { kms?: string; options?: IKeyCreateIdentifierOptionsany },
context: IContext
): Promise> {
+ if (options?.type === 'ebsi') {
+ const key = await context.agent.keyManagerCreate({
+ kms: kms || this.defaultKms,
+ type: 'Secp256k1',
+ });
+ const curve = new EC('secp256k1');
+ const publicKey = curve.keyFromPublic(key.publicKeyHex, 'hex');
+ const y = bytesToBase64url(
+ hexToBytes(publicKey.getPublic().getY().toString('hex'))
+ );
+ const x = bytesToBase64url(
+ hexToBytes(publicKey.getPublic().getX().toString('hex'))
+ );
+ const jwk = {
+ kty: 'EC',
+ crv: 'secp256k1',
+ x,
+ y,
+ };
+ const did = util.createDid(jwk);
+ const identifier: Omit = {
+ did,
+ controllerKeyId: key.kid,
+ keys: [key],
+ services: [],
+ };
+ return identifier;
+ }
const key = await context.agent.keyManagerCreate({
kms: kms || this.defaultKms,
type: 'Ed25519',
});
-
const methodSpecificId = Buffer.from(
base58btc.encode(
addMulticodecPrefix('ed25519-pub', Buffer.from(key.publicKeyHex, 'hex'))
diff --git a/packages/snap/src/did/key/keyDidResolver.ts b/packages/snap/src/did/key/keyDidResolver.ts
index 559eb48a3..38dfb553d 100644
--- a/packages/snap/src/did/key/keyDidResolver.ts
+++ b/packages/snap/src/did/key/keyDidResolver.ts
@@ -1,3 +1,4 @@
+import { getResolver } from '@cef-ebsi/key-did-resolver';
import { SnapsGlobalObject } from '@metamask/snaps-types';
import {
DIDDocument,
@@ -6,6 +7,7 @@ import {
DIDResolver,
ParsedDID,
Resolvable,
+ Resolver,
} from 'did-resolver';
import { getCurrentAccount, getPublicKey } from '../../utils/snapUtils';
@@ -49,6 +51,17 @@ export const resolveSecp256k1 = async (
return didDocument;
};
+export const resolveSecp256k1Ebsi = async (
+ snap: SnapsGlobalObject,
+ account: string,
+ did: string
+): Promise => {
+ const keyResolver = getResolver();
+ const didResolver = new Resolver(keyResolver);
+ const resolution = await didResolver.resolve(did);
+ return resolution.didDocument as DIDDocument;
+};
+
type ResolutionFunction = (
snap: SnapsGlobalObject,
account: string,
@@ -57,6 +70,8 @@ type ResolutionFunction = (
const startsWithMap: Record = {
'did:key:zQ3s': resolveSecp256k1,
+ 'did:key:z2dm': resolveSecp256k1Ebsi,
+ 'did:key:zBhB': resolveSecp256k1Ebsi,
};
export const resolveDidKey: DIDResolver = async (
diff --git a/packages/snap/src/did/key/keyDidUtils.ts b/packages/snap/src/did/key/keyDidUtils.ts
index ff501d0d0..49c792a29 100644
--- a/packages/snap/src/did/key/keyDidUtils.ts
+++ b/packages/snap/src/did/key/keyDidUtils.ts
@@ -1,3 +1,6 @@
+import { util } from '@cef-ebsi/key-did-resolver';
+import { bytesToBase64url, hexToBytes } from '@veramo/utils';
+import { ec as EC } from 'elliptic';
import { base58btc } from 'multiformats/bases/base58';
import { SSISnapState } from '../../interfaces';
@@ -18,3 +21,28 @@ export function getDidKeyIdentifier(
)
).toString();
}
+
+export function getDidEbsiKeyIdentifier(
+ state: SSISnapState,
+ account: string
+): string {
+ const curve = new EC('secp256k1');
+ const publicKey = curve.keyFromPublic(
+ state.accountState[account].publicKey.slice(2),
+ 'hex'
+ );
+ const y = bytesToBase64url(
+ hexToBytes(publicKey.getPublic().getY().toString('hex'))
+ );
+ const x = bytesToBase64url(
+ hexToBytes(publicKey.getPublic().getX().toString('hex'))
+ );
+ const jwk = {
+ kty: 'EC',
+ crv: 'secp256k1',
+ x,
+ y,
+ };
+ const did = util.createDid(jwk);
+ return did.split(':')[2];
+}
diff --git a/packages/snap/src/did/key/types/keyProviderTypes.ts b/packages/snap/src/did/key/types/keyProviderTypes.ts
new file mode 100644
index 000000000..83c100bc2
--- /dev/null
+++ b/packages/snap/src/did/key/types/keyProviderTypes.ts
@@ -0,0 +1,6 @@
+export type IKeyCreateIdentifierOptionsany = {
+ /**
+ * Type whether to use classic did key or did key for EBSI NP
+ */
+ type?: 'ebsi';
+};
diff --git a/packages/snap/src/index.ts b/packages/snap/src/index.ts
index a178a623c..d91aecc4c 100644
--- a/packages/snap/src/index.ts
+++ b/packages/snap/src/index.ts
@@ -94,6 +94,7 @@ export const onRpcRequest: OnRpcRequestHandler = async ({
return ResultObject.success(res);
case 'switchDIDMethod':
isValidSwitchMethodRequest(request.params);
+ apiParams.bip44CoinTypeNode = await getAddressKeyDeriver(apiParams);
res = await switchMethod(apiParams, request.params);
return ResultObject.success(res);
case 'getDID':
@@ -131,7 +132,7 @@ export const onRpcRequest: OnRpcRequestHandler = async ({
return ResultObject.success(res);
case 'resolveDID':
isValidResolveDIDRequest(request.params);
- res = await resolveDID(request.params.did);
+ res = await resolveDID(apiParams, request.params.did);
return ResultObject.success(res);
case 'verifyData':
isValidVerifyDataRequest(request.params);
@@ -141,7 +142,7 @@ export const onRpcRequest: OnRpcRequestHandler = async ({
throw new Error('Method not found.');
}
} catch (e) {
- // TODO (martin): Check for any and unknown errors
+ // TODO (martin, urban): Check for any and unknown errors
return ResultObject.error((e as Error).toString());
}
};
diff --git a/packages/snap/src/interfaces.ts b/packages/snap/src/interfaces.ts
index 8ba1949e9..e412e7265 100644
--- a/packages/snap/src/interfaces.ts
+++ b/packages/snap/src/interfaces.ts
@@ -73,4 +73,5 @@ export interface ApiParams {
account: string;
bip44CoinTypeNode?: BIP44CoinTypeNode;
origin: string;
+ ebsiBearer?: string;
}
diff --git a/packages/snap/src/rpc/did/getDID.ts b/packages/snap/src/rpc/did/getDID.ts
index 516269648..4ed031c6d 100644
--- a/packages/snap/src/rpc/did/getDID.ts
+++ b/packages/snap/src/rpc/did/getDID.ts
@@ -1,8 +1,15 @@
-import { ApiParams } from '../../interfaces';
+import { MetaMaskInpageProvider } from '@metamask/providers';
+import { SnapsGlobalObject } from '@metamask/snaps-types';
+
+import { SSISnapState } from '../../interfaces';
import { getCurrentDid } from '../../utils/didUtils';
-export async function getDid(params: ApiParams): Promise {
- const { state, ethereum, account } = params;
- const res = await getCurrentDid(ethereum, state, account);
+export async function getDid(params: {
+ state: SSISnapState;
+ snap: SnapsGlobalObject;
+ account: string;
+ ethereum: MetaMaskInpageProvider;
+}): Promise {
+ const res = await getCurrentDid(params);
return res;
}
diff --git a/packages/snap/src/rpc/did/resolveDID.ts b/packages/snap/src/rpc/did/resolveDID.ts
index a020f7f26..dc9a1fd89 100644
--- a/packages/snap/src/rpc/did/resolveDID.ts
+++ b/packages/snap/src/rpc/did/resolveDID.ts
@@ -1,7 +1,16 @@
+import { MetaMaskInpageProvider } from '@metamask/providers';
+import { SnapsGlobalObject } from '@metamask/snaps-types';
+
import { resolveDid } from '../../utils/didUtils';
-export async function resolveDID(did: string) {
+export async function resolveDID(
+ params: {
+ snap: SnapsGlobalObject;
+ ethereum: MetaMaskInpageProvider;
+ },
+ did: string
+) {
if (did === '') return { message: 'DID is empty' };
- const res = await resolveDid(did);
+ const res = await resolveDid({ ...params, did });
return res;
}
diff --git a/packages/snap/src/rpc/did/switchMethod.ts b/packages/snap/src/rpc/did/switchMethod.ts
index 60f4484bd..495b07113 100644
--- a/packages/snap/src/rpc/did/switchMethod.ts
+++ b/packages/snap/src/rpc/did/switchMethod.ts
@@ -9,7 +9,7 @@ export async function switchMethod(
params: ApiParams,
{ didMethod }: SwitchMethodRequestParams
): Promise {
- const { state, snap, ethereum, account } = params;
+ const { state, snap, account } = params;
const method = state.accountState[account].accountConfig.ssi.didMethod;
if (didMethod !== method) {
const content = panel([
@@ -20,13 +20,7 @@ export async function switchMethod(
]);
if (await snapConfirm(snap, content)) {
- const res = await changeCurrentMethod(
- snap,
- ethereum,
- state,
- account,
- didMethod
- );
+ const res = await changeCurrentMethod({ ...params, didMethod });
return res;
}
diff --git a/packages/snap/src/utils/didUtils.ts b/packages/snap/src/utils/didUtils.ts
index 12306a65d..5e9defdce 100644
--- a/packages/snap/src/utils/didUtils.ts
+++ b/packages/snap/src/utils/didUtils.ts
@@ -6,29 +6,37 @@ import { MetaMaskInpageProvider } from '@metamask/providers';
import { SnapsGlobalObject } from '@metamask/snaps-types';
import { DIDResolutionResult } from 'did-resolver';
-import { getDidKeyIdentifier } from '../did/key/keyDidUtils';
+import {
+ getDidEbsiKeyIdentifier,
+ getDidKeyIdentifier,
+} from '../did/key/keyDidUtils';
import { getDidPkhIdentifier } from '../did/pkh/pkhDidUtils';
import { SSISnapState } from '../interfaces';
+import { getAgent } from '../veramo/setup';
+import { getDidEbsiIdentifier } from './ebsiUtils';
import { getCurrentNetwork } from './snapUtils';
import { updateSnapState } from './stateUtils';
-export async function changeCurrentVCStore(
- snap: SnapsGlobalObject,
- state: SSISnapState,
- account: string,
- didStore: AvailableVCStores,
- value: boolean
-): Promise {
+export async function changeCurrentVCStore(params: {
+ snap: SnapsGlobalObject;
+ state: SSISnapState;
+ account: string;
+ didStore: AvailableVCStores;
+ value: boolean;
+}): Promise {
// eslint-disable-next-line no-param-reassign
+ const { snap, state, account, didStore, value } = params;
state.accountState[account].accountConfig.ssi.vcStore[didStore] = value;
await updateSnapState(snap, state);
}
-export async function getCurrentDid(
- ethereum: MetaMaskInpageProvider,
- state: SSISnapState,
- account: string
-): Promise {
+export async function getCurrentDid(params: {
+ state: SSISnapState;
+ snap: SnapsGlobalObject;
+ account: string;
+ ethereum: MetaMaskInpageProvider;
+}): Promise {
+ const { state, snap, account, ethereum } = params;
const method = state.accountState[account].accountConfig.ssi.didMethod;
if (method === 'did:ethr') {
const CHAIN_ID = await getCurrentNetwork(ethereum);
@@ -38,28 +46,58 @@ export async function getCurrentDid(
const didUrl = getDidKeyIdentifier(state, account);
return `did:key:${didUrl}`;
}
+ if (method === 'did:key:ebsi') {
+ const didUrl = getDidEbsiKeyIdentifier(state, account);
+ return `did:key:${didUrl}`;
+ }
+ if (method === 'did:ebsi') {
+ // TODO: handle ebsi bearer token workflow
+ const bearer = '';
+ const didUrl = await getDidEbsiIdentifier({
+ state,
+ snap,
+ account,
+ args: {
+ provider: method,
+ kms: 'web3',
+ options: { bearer },
+ },
+ });
+ return `did:ebsi:${didUrl}`;
+ }
if (method === 'did:pkh') {
const didUrl = await getDidPkhIdentifier(ethereum, account);
return `did:pkh:${didUrl}`;
}
+
return '';
}
-export async function changeCurrentMethod(
- snap: SnapsGlobalObject,
- ethereum: MetaMaskInpageProvider,
- state: SSISnapState,
- account: string,
- didMethod: AvailableMethods
-): Promise {
- // eslint-disable-next-line no-param-reassign
- state.accountState[account].accountConfig.ssi.didMethod = didMethod;
+export async function changeCurrentMethod(params: {
+ state: SSISnapState;
+ snap: SnapsGlobalObject;
+ account: string;
+ ethereum: MetaMaskInpageProvider;
+ didMethod: AvailableMethods;
+}): Promise {
+ const { state, snap, account, ethereum, didMethod } = params;
+ state.accountState[account].accountConfig.ssi.didMethod = params.didMethod;
await updateSnapState(snap, state);
- const did = await getCurrentDid(ethereum, state, account);
+ const did = await getCurrentDid({ state, snap, account, ethereum });
return did;
}
-export async function resolveDid(did: string): Promise {
+export async function resolveDid(params: {
+ did: string;
+ snap: SnapsGlobalObject;
+ ethereum: MetaMaskInpageProvider;
+}): Promise {
+ const { did, snap, ethereum } = params;
+ if (did.startsWith('did:key:zBhB') || did.startsWith('did:key:z2dm')) {
+ const agent = await getAgent(snap, ethereum);
+ const didResolution = await agent.resolveDid({ didUrl: did });
+ return didResolution;
+ }
const response = await fetch(
`https://dev.uniresolver.io/1.0/identifiers/${did}`
);
diff --git a/packages/snap/src/utils/ebsiUtils.ts b/packages/snap/src/utils/ebsiUtils.ts
new file mode 100644
index 000000000..42c69af4c
--- /dev/null
+++ b/packages/snap/src/utils/ebsiUtils.ts
@@ -0,0 +1,46 @@
+import { SnapsGlobalObject } from '@metamask/snaps-types';
+import { IDIDManagerCreateArgs } from '@veramo/core';
+import { keccak256 } from 'ethers/lib/utils';
+
+import { SSISnapState } from '../interfaces';
+import { getAgent } from '../veramo/setup';
+import { getAddressKeyDeriver, snapGetKeysFromAddress } from './keyPair';
+
+export async function getDidEbsiIdentifier(params: {
+ state: SSISnapState;
+ snap: SnapsGlobalObject;
+ account: string;
+ args: IDIDManagerCreateArgs;
+}): Promise {
+ const { state, snap, account, args } = params;
+ const bip44CoinTypeNode = await getAddressKeyDeriver({
+ state,
+ snap,
+ account,
+ });
+ const agent = await getAgent(snap, ethereum);
+ const provider = state.accountState[account].accountConfig.ssi.didMethod;
+
+ const res = await snapGetKeysFromAddress(
+ bip44CoinTypeNode,
+ state,
+ account,
+ snap
+ );
+ try {
+ const identifier = await agent.didManagerCreate({
+ provider,
+ kms: 'web3',
+ options: {
+ ...args.options,
+ privateKey: res?.privateKey,
+ id: keccak256(Buffer.from(res?.privateKey as string)).slice(2, 18), // usually random 16 bytes, in our case first 16 bytes of keccak hashed priv key
+ },
+ });
+ return identifier.did;
+ } catch (e) {
+ throw new Error(
+ `Failed to create new EBSI identifier: ${(e as Error).message}`
+ );
+ }
+}
diff --git a/packages/snap/src/utils/keyPair.ts b/packages/snap/src/utils/keyPair.ts
index 3286bbb02..6a648406d 100644
--- a/packages/snap/src/utils/keyPair.ts
+++ b/packages/snap/src/utils/keyPair.ts
@@ -5,7 +5,7 @@ import {
} from '@metamask/key-tree';
import { SnapsGlobalObject } from '@metamask/snaps-types';
import { ethers } from 'ethers';
-import { ApiParams, SSISnapState } from 'src/interfaces';
+import { SSISnapState } from 'src/interfaces';
import { updateSnapState } from './stateUtils';
@@ -30,11 +30,15 @@ export async function setAccountIndex(
}
export async function getAddressKeyDeriver(
- params: ApiParams,
+ params: {
+ state: SSISnapState;
+ snap: SnapsGlobalObject;
+ account: string;
+ },
coin_type?: number
) {
- const { state, snap, account } = params;
let ct = coin_type;
+ const { state, snap, account } = params;
if (ct === undefined) {
const method = state.accountState[account].accountConfig.ssi.didMethod;
ct = didCoinTypeMappping[method];
diff --git a/packages/snap/src/utils/params.ts b/packages/snap/src/utils/params.ts
index 1d0136721..cbbf8a89a 100644
--- a/packages/snap/src/utils/params.ts
+++ b/packages/snap/src/utils/params.ts
@@ -175,6 +175,7 @@ export function isValidSwitchMethodRequest(
) {
if (!isAvailableMethods(param.didMethod))
throw new Error('Did method is not supported!');
+
return;
}
throw new Error('Invalid switchDIDMethod request.');
diff --git a/packages/snap/src/utils/veramoUtils.ts b/packages/snap/src/utils/veramoUtils.ts
index a1e1374f7..b9a765457 100644
--- a/packages/snap/src/utils/veramoUtils.ts
+++ b/packages/snap/src/utils/veramoUtils.ts
@@ -67,9 +67,9 @@ export const veramoImportMetaMaskAccount = async (
params: ApiParams,
agent: Agent
): Promise => {
- const { state, snap, ethereum, account, bip44CoinTypeNode } = params;
+ const { state, snap, account, bip44CoinTypeNode } = params;
const method = state.accountState[account].accountConfig.ssi.didMethod;
- const did = await getCurrentDid(ethereum, state, account);
+ const did = await getCurrentDid(params);
const res = await snapGetKeysFromAddress(
bip44CoinTypeNode as BIP44CoinTypeNode,
diff --git a/packages/snap/src/veramo/setup.ts b/packages/snap/src/veramo/setup.ts
index f33c14b83..3fff5cdcc 100644
--- a/packages/snap/src/veramo/setup.ts
+++ b/packages/snap/src/veramo/setup.ts
@@ -41,6 +41,8 @@ import { Resolver } from 'did-resolver';
import { ethers } from 'ethers';
import { getResolver as ethrDidResolver } from 'ethr-did-resolver';
+// import { EbsiDIDProvider } from '../did/ebsi/ebsiDidProvider';
+// import { ebsiDidResolver } from '../did/ebsi/ebsiDidResolver';
import { KeyDIDProvider } from '../did/key/keyDidProvider';
import { getDidKeyResolver as keyDidResolver } from '../did/key/keyDidResolver';
import { getCurrentAccount, getEnabledVCStores } from '../utils/snapUtils';
@@ -97,6 +99,7 @@ export const getAgent = async (
didProviders['did:key'] = new KeyDIDProvider({ defaultKms: 'web3' });
didProviders['did:pkh'] = new PkhDIDProvider({ defaultKms: 'web3' });
+ // didProviders['did:ebsi'] = new EbsiDIDProvider({ defaultKms: 'web3' });
vcStorePlugins['snap'] = new SnapVCStore(snap, ethereum);
if (enabledVCStores.includes('ceramic')) {
@@ -129,6 +132,7 @@ export const getAgent = async (
...ethrDidResolver({ networks }),
...keyDidResolver(),
...pkhDidResolver(),
+ // ...ebsiDidResolver(),
}),
}),
new DIDManager({
diff --git a/packages/snap/tests/utils/didUtils.spec.ts b/packages/snap/tests/utils/didUtils.spec.ts
index 31362b649..42dd0df09 100644
--- a/packages/snap/tests/utils/didUtils.spec.ts
+++ b/packages/snap/tests/utils/didUtils.spec.ts
@@ -34,7 +34,13 @@ describe('Utils [did]', () => {
const initialState = getDefaultSnapState();
await expect(
- changeCurrentVCStore(snapMock, initialState, address, 'snap', true)
+ changeCurrentVCStore({
+ snap: snapMock,
+ state: initialState,
+ account: address,
+ didStore: 'snap',
+ value: true,
+ })
).resolves.not.toThrow();
const expectedState = getDefaultSnapState();
@@ -51,7 +57,13 @@ describe('Utils [did]', () => {
const initialState = getDefaultSnapState();
await expect(
- changeCurrentVCStore(snapMock, initialState, address, 'ceramic', true)
+ changeCurrentVCStore({
+ snap: snapMock,
+ state: initialState,
+ account: address,
+ didStore: 'ceramic',
+ value: true,
+ })
).resolves.not.toThrow();
const expectedState = getDefaultSnapState();
@@ -72,7 +84,12 @@ describe('Utils [did]', () => {
const initialState = getDefaultSnapState();
await expect(
- getCurrentDid(ethereumMock, initialState, address)
+ getCurrentDid({
+ state: initialState,
+ snap: snapMock,
+ account: address,
+ ethereum: ethereumMock,
+ })
).resolves.toBe(`did:ethr:0x5:${address}`);
expect.assertions(1);
@@ -84,7 +101,12 @@ describe('Utils [did]', () => {
'did:key';
await expect(
- getCurrentDid(ethereumMock, initialState, address)
+ getCurrentDid({
+ state: initialState,
+ snap: snapMock,
+ account: address,
+ ethereum: ethereumMock,
+ })
).resolves.toBe(exampleDIDKey);
expect.assertions(1);
@@ -96,13 +118,13 @@ describe('Utils [did]', () => {
const initialState = getDefaultSnapState();
await expect(
- changeCurrentMethod(
- snapMock,
- ethereumMock,
- initialState,
- address,
- 'did:key'
- )
+ changeCurrentMethod({
+ state: initialState,
+ snap: snapMock,
+ account: address,
+ ethereum: ethereumMock,
+ didMethod: 'did:key',
+ })
).resolves.not.toThrow();
const expectedState = getDefaultSnapState();
@@ -121,13 +143,13 @@ describe('Utils [did]', () => {
const initialState = getDefaultSnapState();
await expect(
- changeCurrentMethod(
- snapMock,
- ethereumMock,
- initialState,
- address,
- 'did:key'
- )
+ changeCurrentMethod({
+ state: initialState,
+ snap: snapMock,
+ account: address,
+ ethereum: ethereumMock,
+ didMethod: 'did:key',
+ })
).resolves.not.toThrow();
const expectedState = getDefaultSnapState();
@@ -144,27 +166,47 @@ describe('Utils [did]', () => {
describe('resolveDID', () => {
it('should succeed resolving did:ethr identifier', async () => {
- const didDoc = await resolveDid(exampleDID);
+ const didDoc = await resolveDid({
+ did: exampleDID,
+ snap: snapMock,
+ ethereum: ethereumMock,
+ });
expect(didDoc.didDocument).toEqual(exampleDIDDocument);
expect.assertions(1);
});
it('should succeed resolving did:key identifier', async () => {
- const didDoc = await resolveDid(exampleDIDKey);
+ const didDoc = await resolveDid({
+ did: exampleDIDKey,
+ snap: snapMock,
+ ethereum: ethereumMock,
+ });
expect(didDoc.didDocument).toEqual(exampleDIDKeyDocumentUniResovler);
expect.assertions(1);
});
it('should resolve invalid did', async () => {
- const didDoc = await resolveDid('did:ethr:0x5:0x123');
+ const didDoc = await resolveDid({
+ did: 'did:ethr:0x5:0x123',
+ snap: snapMock,
+ ethereum: ethereumMock,
+ });
expect(didDoc).toEqual(resolutionInvalidDID);
expect.assertions(1);
});
it('should resolve nonExisting did', async () => {
- const didDoc = await resolveDid('did:key:zQ3shW537');
+ const didDoc = await resolveDid({
+ did: 'did:key:zQ3shW537',
+ snap: snapMock,
+ ethereum: ethereumMock,
+ });
expect(didDoc).toEqual(resolutionNotFound);
expect.assertions(1);
});
it('should resolve methodNotSupported', async () => {
- const didDoc = await resolveDid('did:keyclopse:zQ3shW537');
+ const didDoc = await resolveDid({
+ did: 'did:keyclopse:zQ3shW537',
+ snap: snapMock,
+ ethereum: ethereumMock,
+ });
expect(didDoc).toEqual(resolutionMethodNotSupported);
expect.assertions(1);
});
diff --git a/packages/snap/tests/utils/stateUtils.spec.ts b/packages/snap/tests/utils/stateUtils.spec.ts
index eabbee01b..1f58db4aa 100644
--- a/packages/snap/tests/utils/stateUtils.spec.ts
+++ b/packages/snap/tests/utils/stateUtils.spec.ts
@@ -130,6 +130,7 @@ describe('Utils [state]', () => {
state: initialState,
account: address,
bip44CoinTypeNode: bip44Entropy as BIP44CoinTypeNode,
+ origin: 'test',
})
).resolves.not.toThrow();
@@ -156,6 +157,7 @@ describe('Utils [state]', () => {
state: initialState,
account: address,
bip44CoinTypeNode: bip44Entropy as BIP44CoinTypeNode,
+ origin: 'test',
})
).resolves.not.toThrow();
diff --git a/packages/types/src/constants.ts b/packages/types/src/constants.ts
index 6db56cb1c..9c937625a 100644
--- a/packages/types/src/constants.ts
+++ b/packages/types/src/constants.ts
@@ -10,7 +10,13 @@ export type AvailableVCStores = (typeof availableVCStores)[number];
export const isAvailableVCStores = (x: string) =>
isIn(availableVCStores, x);
-export const availableMethods = ['did:ethr', 'did:key', 'did:pkh'] as const;
+export const availableMethods = [
+ 'did:ethr',
+ 'did:key',
+ 'did:key:ebsi',
+ 'did:pkh',
+ 'did:ebsi',
+] as const;
export type AvailableMethods = (typeof availableMethods)[number];
export const isAvailableMethods = (x: string) =>
isIn(availableMethods, x);
@@ -19,6 +25,8 @@ export const didCoinTypeMappping: Record = {
'did:ethr': 60,
'did:key': 60,
'did:pkh': 60,
+ 'did:ebsi': 60,
+ 'did:key:ebsi': 60,
};
export const supportedProofFormats = [
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6fd023ba5..71b6daf94 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,4 +1,4 @@
-lockfileVersion: 5.4
+lockfileVersion: '6.0'
patchedDependencies:
'@metamask/snaps-types@0.28.0':
@@ -11,624 +11,907 @@ patchedDependencies:
importers:
.:
- specifiers:
- '@commitlint/cli': ^17.5.1
- '@commitlint/config-conventional': ^17.4.4
- '@ianvs/prettier-plugin-sort-imports': ^3.7.1
- '@nrwl/devkit': 15.8.9
- '@nrwl/jest': 15.8.9
- '@nrwl/nx-cloud': ^15.2.3
- '@types/eslint': ^8.21.2
- '@types/jest': ^29.5.0
- '@types/node': ^18.15.10
- '@typescript-eslint/eslint-plugin': ^5.55.0
- '@typescript-eslint/parser': ^5.55.0
- audit-ci: ^6.6.1
- eslint: ^8.36.0
- eslint-config-airbnb-base: ^15.0.0
- eslint-config-airbnb-typescript: ^17.0.0
- eslint-config-prettier: ^8.7.0
- eslint-plugin-import: ^2.27.5
- eslint-plugin-jest: ^27.2.1
- eslint-plugin-jest-extended: ^2.0.0
- eslint-plugin-prettier: ^4.2.1
- husky: ^8.0.3
- is-ci: ^3.0.1
- jest: ^29.5.0
- lint-staged: ^13.2.0
- nx: 15.8.9
- prettier: ^2.8.4
- prettier-plugin-packagejson: ^2.4.3
- prettier-plugin-tailwindcss: ^0.2.4
- ts-node: ^10.9.1
- typescript: ^4.9.5
devDependencies:
- '@commitlint/cli': 17.5.1
- '@commitlint/config-conventional': 17.4.4
- '@ianvs/prettier-plugin-sort-imports': 3.7.2_prettier@2.8.7
- '@nrwl/devkit': 15.8.9_nx@15.8.9+typescript@4.9.5
- '@nrwl/jest': 15.8.9_5gwwmacuen5ybkergoi52ligay
- '@nrwl/nx-cloud': 15.3.2
- '@types/eslint': 8.21.3
- '@types/jest': 29.5.0
- '@types/node': 18.15.10
- '@typescript-eslint/eslint-plugin': 5.57.0_5t5646cukn2kik5kiydglap3vi
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- audit-ci: 6.6.1
- eslint: 8.36.0
- eslint-config-airbnb-base: 15.0.0_eakrjjutlgqjxe5ydhtnd4qdmy
- eslint-config-airbnb-typescript: 17.0.0_ssr7cadyznywkvad3hfkny6rva
- eslint-config-prettier: 8.8.0_eslint@8.36.0
- eslint-plugin-import: 2.27.5_74llxljztmzze2ez7aakaiqyti
- eslint-plugin-jest: 27.2.1_cxtok4wlaywiu5g252ekt7hmay
- eslint-plugin-jest-extended: 2.0.0_vgl77cfdswitgr47lm5swmv43m
- eslint-plugin-prettier: 4.2.1_ywlv3zveqg2kxfq44lflihh5mm
- husky: 8.0.3
- is-ci: 3.0.1
- jest: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
- lint-staged: 13.2.0
- nx: 15.8.9
- prettier: 2.8.7
- prettier-plugin-packagejson: 2.4.3_prettier@2.8.7
- prettier-plugin-tailwindcss: 0.2.5_it6dmlw7gffs35k5m3t3bb3la4
- ts-node: 10.9.1_z3vu5dg2hu3jqyh3anri5tms2q
- typescript: 4.9.5
+ '@commitlint/cli':
+ specifier: ^17.5.1
+ version: 17.5.1(@swc/core@1.3.42)
+ '@commitlint/config-conventional':
+ specifier: ^17.4.4
+ version: 17.4.4
+ '@ianvs/prettier-plugin-sort-imports':
+ specifier: ^3.7.1
+ version: 3.7.2(prettier@2.8.7)
+ '@nrwl/devkit':
+ specifier: 15.8.9
+ version: 15.8.9(nx@15.8.9)(typescript@4.9.5)
+ '@nrwl/jest':
+ specifier: 15.8.9
+ version: 15.8.9(@types/node@18.15.10)(eslint@8.36.0)(nx@15.8.9)(prettier@2.8.7)(ts-node@10.9.1)(typescript@4.9.5)
+ '@nrwl/nx-cloud':
+ specifier: ^15.2.3
+ version: 15.3.2
+ '@types/eslint':
+ specifier: ^8.21.2
+ version: 8.21.3
+ '@types/jest':
+ specifier: ^29.5.0
+ version: 29.5.0
+ '@types/node':
+ specifier: ^18.15.10
+ version: 18.15.10
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^5.55.0
+ version: 5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5)
+ '@typescript-eslint/parser':
+ specifier: ^5.55.0
+ version: 5.57.0(eslint@8.36.0)(typescript@4.9.5)
+ audit-ci:
+ specifier: ^6.6.1
+ version: 6.6.1
+ eslint:
+ specifier: ^8.36.0
+ version: 8.36.0
+ eslint-config-airbnb-base:
+ specifier: ^15.0.0
+ version: 15.0.0(eslint-plugin-import@2.27.5)(eslint@8.36.0)
+ eslint-config-airbnb-typescript:
+ specifier: ^17.0.0
+ version: 17.0.0(@typescript-eslint/eslint-plugin@5.57.0)(@typescript-eslint/parser@5.57.0)(eslint-plugin-import@2.27.5)(eslint@8.36.0)
+ eslint-config-prettier:
+ specifier: ^8.7.0
+ version: 8.8.0(eslint@8.36.0)
+ eslint-plugin-import:
+ specifier: ^2.27.5
+ version: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-plugin-jest:
+ specifier: ^27.2.1
+ version: 27.2.1(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)(jest@29.5.0)(typescript@4.9.5)
+ eslint-plugin-jest-extended:
+ specifier: ^2.0.0
+ version: 2.0.0(eslint@8.36.0)(typescript@4.9.5)
+ eslint-plugin-prettier:
+ specifier: ^4.2.1
+ version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.36.0)(prettier@2.8.7)
+ husky:
+ specifier: ^8.0.3
+ version: 8.0.3
+ is-ci:
+ specifier: ^3.0.1
+ version: 3.0.1
+ jest:
+ specifier: ^29.5.0
+ version: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
+ lint-staged:
+ specifier: ^13.2.0
+ version: 13.2.0
+ nx:
+ specifier: 15.8.9
+ version: 15.8.9
+ prettier:
+ specifier: ^2.8.4
+ version: 2.8.7
+ prettier-plugin-packagejson:
+ specifier: ^2.4.3
+ version: 2.4.3(prettier@2.8.7)
+ prettier-plugin-tailwindcss:
+ specifier: ^0.2.4
+ version: 0.2.5(@ianvs/prettier-plugin-sort-imports@3.7.2)(prettier@2.8.7)
+ ts-node:
+ specifier: ^10.9.1
+ version: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5)
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
libs/utils:
- specifiers:
- rimraf: ^4.4.0
- tsup: ^6.6.3
- typescript: ^4.9.5
devDependencies:
- rimraf: 4.4.1
- tsup: 6.7.0_typescript@4.9.5
- typescript: 4.9.5
+ rimraf:
+ specifier: ^4.4.0
+ version: 4.4.1
+ tsup:
+ specifier: ^6.6.3
+ version: 6.7.0(ts-node@10.9.1)(typescript@4.9.5)
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
packages/connector:
- specifiers:
- '@blockchain-lab-um/ssi-snap-types': '*'
- '@blockchain-lab-um/utils': '*'
- '@ianvs/prettier-plugin-sort-imports': ^3.7.1
- '@metamask/detect-provider': ^2.0.0
- '@types/rimraf': ^4.0.5
- '@typescript-eslint/eslint-plugin': ^5.53.0
- '@typescript-eslint/parser': ^5.53.0
- '@veramo/core': 5.1.2
- eslint: ^8.34.0
- eslint-config-prettier: ^8.6.0
- eslint-plugin-import: ^2.27.5
- eslint-plugin-prettier: ^4.2.1
- eslint-plugin-unused-imports: ^2.0.0
- prettier: ^2.8.4
- prettier-plugin-packagejson: ^2.4.3
- rimraf: ^4.4.0
- tsup: ^6.6.3
- typescript: ^4.9.5
- dependencies:
- '@blockchain-lab-um/ssi-snap-types': link:../types
- '@blockchain-lab-um/utils': link:../../libs/utils
- '@metamask/detect-provider': 2.0.0
- '@veramo/core': 5.1.2
+ dependencies:
+ '@blockchain-lab-um/ssi-snap-types':
+ specifier: '*'
+ version: link:../types
+ '@blockchain-lab-um/utils':
+ specifier: '*'
+ version: link:../../libs/utils
+ '@metamask/detect-provider':
+ specifier: ^2.0.0
+ version: 2.0.0
+ '@veramo/core':
+ specifier: 5.1.2
+ version: 5.1.2
devDependencies:
- '@ianvs/prettier-plugin-sort-imports': 3.7.2_prettier@2.8.7
- '@types/rimraf': 4.0.5
- '@typescript-eslint/eslint-plugin': 5.57.0_5t5646cukn2kik5kiydglap3vi
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- eslint: 8.36.0
- eslint-config-prettier: 8.8.0_eslint@8.36.0
- eslint-plugin-import: 2.27.5_74llxljztmzze2ez7aakaiqyti
- eslint-plugin-prettier: 4.2.1_ywlv3zveqg2kxfq44lflihh5mm
- eslint-plugin-unused-imports: 2.0.0_bh3gacn4tk2wj6fu7gisfablcy
- prettier: 2.8.7
- prettier-plugin-packagejson: 2.4.3_prettier@2.8.7
- rimraf: 4.4.1
- tsup: 6.7.0_typescript@4.9.5
- typescript: 4.9.5
+ '@ianvs/prettier-plugin-sort-imports':
+ specifier: ^3.7.1
+ version: 3.7.2(prettier@2.8.7)
+ '@types/rimraf':
+ specifier: ^4.0.5
+ version: 4.0.5
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^5.53.0
+ version: 5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5)
+ '@typescript-eslint/parser':
+ specifier: ^5.53.0
+ version: 5.57.0(eslint@8.36.0)(typescript@4.9.5)
+ eslint:
+ specifier: ^8.34.0
+ version: 8.36.0
+ eslint-config-prettier:
+ specifier: ^8.6.0
+ version: 8.8.0(eslint@8.36.0)
+ eslint-plugin-import:
+ specifier: ^2.27.5
+ version: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-plugin-prettier:
+ specifier: ^4.2.1
+ version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.36.0)(prettier@2.8.7)
+ eslint-plugin-unused-imports:
+ specifier: ^2.0.0
+ version: 2.0.0(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)
+ prettier:
+ specifier: ^2.8.4
+ version: 2.8.7
+ prettier-plugin-packagejson:
+ specifier: ^2.4.3
+ version: 2.4.3(prettier@2.8.7)
+ rimraf:
+ specifier: ^4.4.0
+ version: 4.4.1
+ tsup:
+ specifier: ^6.6.3
+ version: 6.7.0(ts-node@10.9.1)(typescript@4.9.5)
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
packages/dapp:
- specifiers:
- '@blockchain-lab-um/ssi-snap-connector': '*'
- '@blockchain-lab-um/ssi-snap-types': '*'
- '@blockchain-lab-um/utils': '*'
- '@headlessui/react': ^1.7.7
- '@heroicons/react': ^2.0.13
- '@ianvs/prettier-plugin-sort-imports': ^3.7.1
- '@metamask/detect-provider': ^2.0.0
- '@radix-ui/react-toast': ^1.1.2
- '@svgr/webpack': ^7.0.0
- '@tanstack/react-table': ^8.7.8
- '@types/eslint': ^8
- '@types/node': 18.15.10
- '@types/prettier': ^2
- '@types/react': 18.0.30
- '@types/react-dom': 18.0.11
- '@veramo/core': 5.1.2
- autoprefixer: ^10.4.13
- clsx: ^1.2.1
- eslint: ^8.32.0
- eslint-config-next: ^13.1.3
- eslint-config-prettier: ^8.6.0
- eslint-plugin-prettier: ^4.2.1
- eslint-plugin-unused-imports: ^2.0.0
- ethers: ^6.0.8
- next: 13.2.4
- next-intl: ^2.12.0
- next-themes: ^0.2.1
- postcss: ^8.4.21
- prettier: ^2.8.4
- prettier-plugin-packagejson: ^2.4.3
- prettier-plugin-tailwindcss: ^0.2.4
- prop-types: ^15.8.1
- react: 18.2.0
- react-dom: 18.2.0
- sass: ^1.57.1
- stylelint: ^15.3.0
- stylelint-config-css-modules: ^4.1.0
- stylelint-config-prettier-scss: ^0.0.1
- stylelint-config-standard-scss: ^7.0.1
- stylelint-prettier: ^3.0.0
- stylelint-webpack-plugin: ^4.1.0
- tailwind-scrollbar: ^3.0.0
- tailwindcss: ^3.2.7
- typescript: ^4.9.5
- zustand: ^4.3.2
- dependencies:
- '@blockchain-lab-um/ssi-snap-connector': link:../connector
- '@blockchain-lab-um/ssi-snap-types': link:../types
- '@blockchain-lab-um/utils': link:../../libs/utils
- '@headlessui/react': 1.7.13_biqbaboplfbrettd7655fr4n2y
- '@heroicons/react': 2.0.16_react@18.2.0
- '@metamask/detect-provider': 2.0.0
- '@radix-ui/react-toast': 1.1.3_biqbaboplfbrettd7655fr4n2y
- '@tanstack/react-table': 8.8.4_biqbaboplfbrettd7655fr4n2y
- '@veramo/core': 5.1.2
- clsx: 1.2.1
- ethers: 6.2.3
- next: 13.2.4_5y7qh6ykubtj2qr2evk3di7hpa
- next-intl: 2.12.0_next@13.2.4+react@18.2.0
- next-themes: 0.2.1_ld2jel3hspngo3u5lti2kgl2sq
- prettier-plugin-tailwindcss: 0.2.5_it6dmlw7gffs35k5m3t3bb3la4
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- tailwind-scrollbar: 3.0.0_tailwindcss@3.2.7
- zustand: 4.3.6_react@18.2.0
+ dependencies:
+ '@blockchain-lab-um/ssi-snap-connector':
+ specifier: '*'
+ version: link:../connector
+ '@blockchain-lab-um/ssi-snap-types':
+ specifier: '*'
+ version: link:../types
+ '@blockchain-lab-um/utils':
+ specifier: '*'
+ version: link:../../libs/utils
+ '@headlessui/react':
+ specifier: ^1.7.7
+ version: 1.7.13(react-dom@18.2.0)(react@18.2.0)
+ '@heroicons/react':
+ specifier: ^2.0.13
+ version: 2.0.16(react@18.2.0)
+ '@metamask/detect-provider':
+ specifier: ^2.0.0
+ version: 2.0.0
+ '@radix-ui/react-toast':
+ specifier: ^1.1.2
+ version: 1.1.3(react-dom@18.2.0)(react@18.2.0)
+ '@tanstack/react-table':
+ specifier: ^8.7.8
+ version: 8.8.4(react-dom@18.2.0)(react@18.2.0)
+ '@veramo/core':
+ specifier: 5.1.2
+ version: 5.1.2
+ clsx:
+ specifier: ^1.2.1
+ version: 1.2.1
+ ethers:
+ specifier: ^6.0.8
+ version: 6.2.3
+ next:
+ specifier: 13.2.4
+ version: 13.2.4(@babel/core@7.21.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.60.0)
+ next-intl:
+ specifier: ^2.12.0
+ version: 2.12.0(next@13.2.4)(react@18.2.0)
+ next-themes:
+ specifier: ^0.2.1
+ version: 0.2.1(next@13.2.4)(react-dom@18.2.0)(react@18.2.0)
+ prettier-plugin-tailwindcss:
+ specifier: ^0.2.4
+ version: 0.2.5(@ianvs/prettier-plugin-sort-imports@3.7.2)(prettier@2.8.7)
+ prop-types:
+ specifier: ^15.8.1
+ version: 15.8.1
+ react:
+ specifier: 18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
+ tailwind-scrollbar:
+ specifier: ^3.0.0
+ version: 3.0.0(tailwindcss@3.2.7)
+ zustand:
+ specifier: ^4.3.2
+ version: 4.3.6(react@18.2.0)
devDependencies:
- '@ianvs/prettier-plugin-sort-imports': 3.7.2_prettier@2.8.7
- '@svgr/webpack': 7.0.0
- '@types/eslint': 8.21.3
- '@types/node': 18.15.10
- '@types/prettier': 2.7.2
- '@types/react': 18.0.30
- '@types/react-dom': 18.0.11
- autoprefixer: 10.4.14_postcss@8.4.21
- eslint: 8.36.0
- eslint-config-next: 13.2.4_vgl77cfdswitgr47lm5swmv43m
- eslint-config-prettier: 8.8.0_eslint@8.36.0
- eslint-plugin-prettier: 4.2.1_ywlv3zveqg2kxfq44lflihh5mm
- eslint-plugin-unused-imports: 2.0.0_eslint@8.36.0
- postcss: 8.4.21
- prettier: 2.8.7
- prettier-plugin-packagejson: 2.4.3_prettier@2.8.7
- sass: 1.60.0
- stylelint: 15.3.0
- stylelint-config-css-modules: 4.2.0_stylelint@15.3.0
- stylelint-config-prettier-scss: 0.0.1_stylelint@15.3.0
- stylelint-config-standard-scss: 7.0.1_xd434hbhlikjpobg3rgppuzh3e
- stylelint-prettier: 3.0.0_6i4typnqotoqmooak3ignv77xy
- stylelint-webpack-plugin: 4.1.0_stylelint@15.3.0
- tailwindcss: 3.2.7_postcss@8.4.21
- typescript: 4.9.5
+ '@ianvs/prettier-plugin-sort-imports':
+ specifier: ^3.7.1
+ version: 3.7.2(prettier@2.8.7)
+ '@svgr/webpack':
+ specifier: ^7.0.0
+ version: 7.0.0
+ '@types/eslint':
+ specifier: ^8
+ version: 8.21.3
+ '@types/node':
+ specifier: 18.15.10
+ version: 18.15.10
+ '@types/prettier':
+ specifier: ^2
+ version: 2.7.2
+ '@types/react':
+ specifier: 18.0.30
+ version: 18.0.30
+ '@types/react-dom':
+ specifier: 18.0.11
+ version: 18.0.11
+ autoprefixer:
+ specifier: ^10.4.13
+ version: 10.4.14(postcss@8.4.21)
+ eslint:
+ specifier: ^8.32.0
+ version: 8.36.0
+ eslint-config-next:
+ specifier: ^13.1.3
+ version: 13.2.4(eslint@8.36.0)(typescript@4.9.5)
+ eslint-config-prettier:
+ specifier: ^8.6.0
+ version: 8.8.0(eslint@8.36.0)
+ eslint-plugin-prettier:
+ specifier: ^4.2.1
+ version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.36.0)(prettier@2.8.7)
+ eslint-plugin-unused-imports:
+ specifier: ^2.0.0
+ version: 2.0.0(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)
+ postcss:
+ specifier: ^8.4.21
+ version: 8.4.21
+ prettier:
+ specifier: ^2.8.4
+ version: 2.8.7
+ prettier-plugin-packagejson:
+ specifier: ^2.4.3
+ version: 2.4.3(prettier@2.8.7)
+ sass:
+ specifier: ^1.57.1
+ version: 1.60.0
+ stylelint:
+ specifier: ^15.3.0
+ version: 15.3.0
+ stylelint-config-css-modules:
+ specifier: ^4.1.0
+ version: 4.2.0(stylelint@15.3.0)
+ stylelint-config-prettier-scss:
+ specifier: ^0.0.1
+ version: 0.0.1(stylelint@15.3.0)
+ stylelint-config-standard-scss:
+ specifier: ^7.0.1
+ version: 7.0.1(postcss@8.4.21)(stylelint@15.3.0)
+ stylelint-prettier:
+ specifier: ^3.0.0
+ version: 3.0.0(prettier@2.8.7)(stylelint@15.3.0)
+ stylelint-webpack-plugin:
+ specifier: ^4.1.0
+ version: 4.1.0(stylelint@15.3.0)(webpack@5.76.3)
+ tailwindcss:
+ specifier: ^3.2.7
+ version: 3.2.7(postcss@8.4.21)(ts-node@10.9.1)
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
packages/docs:
- specifiers:
- '@blockchain-lab-um/ssi-snap-connector': '*'
- '@blockchain-lab-um/ssi-snap-types': '*'
- '@docusaurus/core': 2.3.1
- '@docusaurus/module-type-aliases': ^2.3.1
- '@docusaurus/plugin-content-docs': ^2.3.1
- '@docusaurus/preset-classic': 2.3.1
- '@emotion/react': ^11.10.6
- '@emotion/styled': ^11.10.6
- '@ethersproject/providers': ^5.7.2
- '@ianvs/prettier-plugin-sort-imports': ^3.7.1
- '@mdx-js/react': 1.6.22
- '@metamask/providers': ^10.2.1
- '@mui/icons-material': ^5.11.9
- '@mui/material': ^5.11.10
- '@tsconfig/docusaurus': ^1.0.6
- '@types/react': 18.0.30
- '@typescript-eslint/eslint-plugin': ^5.53.0
- '@typescript-eslint/parser': ^5.53.0
- '@web3-react/core': ^6.1.9
- '@web3-react/injected-connector': ^6.0.7
- clsx: ^1.2.1
- eslint: ^8.34.0
- eslint-config-airbnb: ^19.0.4
- eslint-config-airbnb-typescript: ^17.0.0
- eslint-config-prettier: ^8.6.0
- eslint-plugin-import: ^2.27.5
- eslint-plugin-jsx-a11y: ^6.7.1
- eslint-plugin-prettier: ^4.2.1
- eslint-plugin-react: ^7.32.2
- eslint-plugin-react-hooks: ^4.6.0
- eslint-plugin-unused-imports: ^2.0.0
- ethers: ^5.7.2
- lint-staged: ^13.1.2
- precompress: ^10.0.2
- prettier: ^2.8.4
- prettier-plugin-packagejson: ^2.4.3
- prism-react-renderer: ^1.3.5
- react: ^18.2.0
- react-dom: ^18.2.0
- rimraf: ^4.4.0
- stylelint: ^15.3.0
- stylelint-config-css-modules: ^4.1.0
- stylelint-config-prettier: ^9.0.5
- stylelint-config-standard: ^31.0.0
- typescript: ^4.9.5
- web3: ^1.8.2
- dependencies:
- '@blockchain-lab-um/ssi-snap-connector': link:../connector
- '@blockchain-lab-um/ssi-snap-types': link:../types
- '@docusaurus/core': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/preset-classic': 2.3.1_pmy5ifktlm6diu77n76jexept4
- '@emotion/react': 11.10.6_2thlp7g7odiqm7dwhn3rlhxaa4
- '@emotion/styled': 11.10.6_cfcdhdr57xmqdzhb6aq4iia5f4
- '@ethersproject/providers': 5.7.2
- '@mdx-js/react': 1.6.22_react@18.2.0
- '@metamask/providers': 10.2.1
- '@mui/icons-material': 5.11.11_r2azkhsbcjpgr7h4skmoqqeh54
- '@mui/material': 5.11.14_quat5witkhq3gbgscvy3yo7r7a
- '@web3-react/core': 6.1.9_react@18.2.0
- '@web3-react/injected-connector': 6.0.7
- clsx: 1.2.1
- ethers: 5.7.2
- prism-react-renderer: 1.3.5_react@18.2.0
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- web3: 1.9.0
+ dependencies:
+ '@blockchain-lab-um/ssi-snap-connector':
+ specifier: '*'
+ version: link:../connector
+ '@blockchain-lab-um/ssi-snap-types':
+ specifier: '*'
+ version: link:../types
+ '@docusaurus/core':
+ specifier: 2.3.1
+ version: 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/preset-classic':
+ specifier: 2.3.1
+ version: 2.3.1(@algolia/client-search@4.16.0)(@types/react@18.0.30)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@emotion/react':
+ specifier: ^11.10.6
+ version: 11.10.6(@types/react@18.0.30)(react@18.2.0)
+ '@emotion/styled':
+ specifier: ^11.10.6
+ version: 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.30)(react@18.2.0)
+ '@ethersproject/providers':
+ specifier: ^5.7.2
+ version: 5.7.2
+ '@mdx-js/react':
+ specifier: 1.6.22
+ version: 1.6.22(react@18.2.0)
+ '@metamask/providers':
+ specifier: ^10.2.1
+ version: 10.2.1
+ '@mui/icons-material':
+ specifier: ^5.11.9
+ version: 5.11.11(@mui/material@5.11.14)(@types/react@18.0.30)(react@18.2.0)
+ '@mui/material':
+ specifier: ^5.11.10
+ version: 5.11.14(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0)
+ '@web3-react/core':
+ specifier: ^6.1.9
+ version: 6.1.9(react@18.2.0)
+ '@web3-react/injected-connector':
+ specifier: ^6.0.7
+ version: 6.0.7
+ clsx:
+ specifier: ^1.2.1
+ version: 1.2.1
+ ethers:
+ specifier: ^5.7.2
+ version: 5.7.2
+ prism-react-renderer:
+ specifier: ^1.3.5
+ version: 1.3.5(react@18.2.0)
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ web3:
+ specifier: ^1.8.2
+ version: 1.9.0
devDependencies:
- '@docusaurus/module-type-aliases': 2.4.0_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/plugin-content-docs': 2.4.0_gpdukexrhjgu66opmh7iixboiu
- '@ianvs/prettier-plugin-sort-imports': 3.7.2_prettier@2.8.7
- '@tsconfig/docusaurus': 1.0.7
- '@types/react': 18.0.30
- '@typescript-eslint/eslint-plugin': 5.57.0_5t5646cukn2kik5kiydglap3vi
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- eslint: 8.36.0
- eslint-config-airbnb: 19.0.4_guhfqc3yvckhutqwrddiy54d5i
- eslint-config-airbnb-typescript: 17.0.0_ssr7cadyznywkvad3hfkny6rva
- eslint-config-prettier: 8.8.0_eslint@8.36.0
- eslint-plugin-import: 2.27.5_74llxljztmzze2ez7aakaiqyti
- eslint-plugin-jsx-a11y: 6.7.1_eslint@8.36.0
- eslint-plugin-prettier: 4.2.1_ywlv3zveqg2kxfq44lflihh5mm
- eslint-plugin-react: 7.32.2_eslint@8.36.0
- eslint-plugin-react-hooks: 4.6.0_eslint@8.36.0
- eslint-plugin-unused-imports: 2.0.0_bh3gacn4tk2wj6fu7gisfablcy
- lint-staged: 13.2.0
- precompress: 10.0.2
- prettier: 2.8.7
- prettier-plugin-packagejson: 2.4.3_prettier@2.8.7
- rimraf: 4.4.1
- stylelint: 15.3.0
- stylelint-config-css-modules: 4.2.0_stylelint@15.3.0
- stylelint-config-prettier: 9.0.5_stylelint@15.3.0
- stylelint-config-standard: 31.0.0_stylelint@15.3.0
- typescript: 4.9.5
+ '@docusaurus/module-type-aliases':
+ specifier: ^2.3.1
+ version: 2.4.0(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/plugin-content-docs':
+ specifier: ^2.3.1
+ version: 2.4.0(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@ianvs/prettier-plugin-sort-imports':
+ specifier: ^3.7.1
+ version: 3.7.2(prettier@2.8.7)
+ '@tsconfig/docusaurus':
+ specifier: ^1.0.6
+ version: 1.0.7
+ '@types/react':
+ specifier: 18.0.30
+ version: 18.0.30
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^5.53.0
+ version: 5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5)
+ '@typescript-eslint/parser':
+ specifier: ^5.53.0
+ version: 5.57.0(eslint@8.36.0)(typescript@4.9.5)
+ eslint:
+ specifier: ^8.34.0
+ version: 8.36.0
+ eslint-config-airbnb:
+ specifier: ^19.0.4
+ version: 19.0.4(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.36.0)
+ eslint-config-airbnb-typescript:
+ specifier: ^17.0.0
+ version: 17.0.0(@typescript-eslint/eslint-plugin@5.57.0)(@typescript-eslint/parser@5.57.0)(eslint-plugin-import@2.27.5)(eslint@8.36.0)
+ eslint-config-prettier:
+ specifier: ^8.6.0
+ version: 8.8.0(eslint@8.36.0)
+ eslint-plugin-import:
+ specifier: ^2.27.5
+ version: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-plugin-jsx-a11y:
+ specifier: ^6.7.1
+ version: 6.7.1(eslint@8.36.0)
+ eslint-plugin-prettier:
+ specifier: ^4.2.1
+ version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.36.0)(prettier@2.8.7)
+ eslint-plugin-react:
+ specifier: ^7.32.2
+ version: 7.32.2(eslint@8.36.0)
+ eslint-plugin-react-hooks:
+ specifier: ^4.6.0
+ version: 4.6.0(eslint@8.36.0)
+ eslint-plugin-unused-imports:
+ specifier: ^2.0.0
+ version: 2.0.0(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)
+ lint-staged:
+ specifier: ^13.1.2
+ version: 13.2.0
+ precompress:
+ specifier: ^10.0.2
+ version: 10.0.2
+ prettier:
+ specifier: ^2.8.4
+ version: 2.8.7
+ prettier-plugin-packagejson:
+ specifier: ^2.4.3
+ version: 2.4.3(prettier@2.8.7)
+ rimraf:
+ specifier: ^4.4.0
+ version: 4.4.1
+ stylelint:
+ specifier: ^15.3.0
+ version: 15.3.0
+ stylelint-config-css-modules:
+ specifier: ^4.1.0
+ version: 4.2.0(stylelint@15.3.0)
+ stylelint-config-prettier:
+ specifier: ^9.0.5
+ version: 9.0.5(stylelint@15.3.0)
+ stylelint-config-standard:
+ specifier: ^31.0.0
+ version: 31.0.0(stylelint@15.3.0)
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
packages/snap:
- specifiers:
- '@babel/core': ^7.21.3
- '@babel/plugin-syntax-import-assertions': ^7.20.0
- '@babel/preset-typescript': ^7.21.0
- '@babel/runtime': 7.21.0
- '@blockchain-lab-um/ssi-snap-types': '*'
- '@blockchain-lab-um/utils': '*'
- '@blockchain-lab-um/veramo-vc-manager': '*'
- '@ceramicnetwork/http-client': 2.20.0
- '@ceramicnetwork/streamid': 2.14.0
- '@commitlint/cli': ^17.5.1
- '@commitlint/config-conventional': ^17.4.4
- '@didtools/pkh-ethereum': ^0.0.2
- '@glazed/did-datastore': 0.3.2
- '@glazed/did-session': 0.1.1
- '@ianvs/prettier-plugin-sort-imports': ^3.7.1
- '@metamask/key-tree': ^6.0.0
- '@metamask/providers': 10.2.1
- '@metamask/snaps-cli': 0.28.0
- '@metamask/snaps-types': 0.28.0
- '@metamask/snaps-ui': 0.28.0
- '@metamask/snaps-webpack-plugin': 0.28.0
- '@swc/core': ^1.3.41
- '@swc/jest': ^0.2.24
- '@types/jest': ^29.5.0
- '@types/jsonpath': ^0.2.0
- '@types/lodash.clonedeep': ^4.5.7
- '@types/node': 18.15.10
- '@types/secp256k1': ^4.0.3
- '@types/uuid': ^9.0.1
- '@types/webpack': ^5.28.0
- '@typescript-eslint/eslint-plugin': ^5.55.0
- '@typescript-eslint/parser': ^5.55.0
- '@veramo/core': 5.1.2
- '@veramo/credential-eip712': 5.1.2
- '@veramo/credential-ld': 5.1.2
- '@veramo/credential-w3c': 5.1.2
- '@veramo/did-manager': 5.1.2
- '@veramo/did-provider-ethr': 5.1.2
- '@veramo/did-provider-pkh': 5.1.2
- '@veramo/did-resolver': 5.1.2
- '@veramo/key-manager': 5.1.2
- '@veramo/kms-local': 5.1.2
- '@veramo/utils': 5.1.2
- audit-ci: ^6.6.0
- babel-loader: ^9.1.2
- buffer: ^6.0.3
- caip: 1.1.0
- ceramic-cacao: ^1.4.0
- class-transformer: ^0.5.1
- class-validator: ^0.13.2
- cross-env: ^7.0.3
- crypto-browserify: ^3.12.0
- did-jwt-vc: 3.1.2
- did-resolver: 4.0.1
- did-session: 1.0.0
- dids: ^3.4.0
- eslint: ^8.36.0
- eslint-config-prettier: ^8.7.0
- eslint-plugin-import: ^2.27.5
- eslint-plugin-jest: ^27.2.1
- eslint-plugin-jest-extended: ^2.0.0
- eslint-plugin-prettier: ^4.2.1
- eslint-plugin-unused-imports: ^2.0.0
- eslint-webpack-plugin: ^4.0.0
- eth-sig-util: 3.0.1
- ethers: 5.7.2
- ethr-did: 2.3.6
- ethr-did-resolver: 8.0.0
- fork-ts-checker-webpack-plugin: ^8.0.0
- hook-shell-script-webpack-plugin: ^0.2.0
- is-ci: ^3.0.1
- jest: ^29.5.0
- jest-extended: ^3.2.4
- js-sha256: ^0.9.0
- json-loader: ^0.5.7
- jsonpath: ^1.1.1
- key-did-provider-ed25519: ^2.0.1
- key-did-resolver: 2.3.0
- lint-staged: ^13.2.0
- lodash.clonedeep: ^4.5.0
- multiformats: ^11.0.2
- postinstall-postinstall: ^2.1.0
- precompress: ^10.0.2
- prettier: ^2.8.4
- prettier-plugin-packagejson: ^2.4.3
- rimraf: ^4.4.0
- secp256k1: 4.0.3
- ts-jest: ^29.0.5
- ts-node: ^10.9.1
- typescript: ^4.9.5
- uuid: ^9.0.0
- web-did-resolver: 2.0.22
- webpack: 5.76.3
- webpack-cli: 5.0.1
- webpack-merge: 5.8.0
- webpackbar: 5.0.2
dependencies:
- '@babel/runtime': 7.21.0
- '@blockchain-lab-um/ssi-snap-types': link:../types
- '@blockchain-lab-um/utils': link:../../libs/utils
- '@blockchain-lab-um/veramo-vc-manager': link:../vcmanager
- '@ceramicnetwork/http-client': 2.20.0
- '@ceramicnetwork/streamid': 2.14.0
- '@didtools/pkh-ethereum': 0.0.2
- '@glazed/did-datastore': 0.3.2
- '@glazed/did-session': 0.1.1
- '@metamask/key-tree': 6.2.1
- '@metamask/providers': 10.2.1
- '@metamask/snaps-types': 0.28.0_rvr7xsi54kylxpxjwsjvbo3fce
- '@metamask/snaps-ui': 0.28.0
- '@types/uuid': 9.0.1
- '@veramo/core': 5.1.2
- '@veramo/credential-eip712': 5.1.2
- '@veramo/credential-ld': 5.1.2
- '@veramo/credential-w3c': 5.1.2
- '@veramo/did-manager': 5.1.2
- '@veramo/did-provider-ethr': 5.1.2
- '@veramo/did-provider-pkh': 5.1.2
- '@veramo/did-resolver': 5.1.2
- '@veramo/key-manager': 5.1.2
- '@veramo/kms-local': 5.1.2
- '@veramo/utils': 5.1.2
- buffer: 6.0.3
- caip: 1.1.0
- ceramic-cacao: 1.4.0
- class-transformer: 0.5.1
- class-validator: 0.13.2
- crypto-browserify: 3.12.0
- did-jwt-vc: 3.1.2
- did-resolver: 4.0.1
- did-session: 1.0.0
- dids: 3.4.0
- eth-sig-util: 3.0.1
- ethers: 5.7.2
- ethr-did: 2.3.6
- ethr-did-resolver: 8.0.0
- js-sha256: 0.9.0
- json-loader: 0.5.7
- jsonpath: 1.1.1
- key-did-provider-ed25519: 2.0.1
- key-did-resolver: 2.3.0
- lodash.clonedeep: 4.5.0
- multiformats: 11.0.2
- secp256k1: 4.0.3
- ts-jest: 29.0.5_q744lk64cx4tbpg7zn4yr5nesi
- uuid: 9.0.0
- web-did-resolver: 2.0.22
+ '@babel/runtime':
+ specifier: 7.21.0
+ version: 7.21.0
+ '@blockchain-lab-um/ssi-snap-types':
+ specifier: '*'
+ version: link:../types
+ '@blockchain-lab-um/utils':
+ specifier: '*'
+ version: link:../../libs/utils
+ '@blockchain-lab-um/veramo-vc-manager':
+ specifier: '*'
+ version: link:../vcmanager
+ '@cef-ebsi/ebsi-did-resolver':
+ specifier: ^3.0.0
+ version: 3.0.0
+ '@cef-ebsi/key-did-resolver':
+ specifier: ^1.0.0
+ version: 1.0.0
+ '@cef-ebsi/siop-auth':
+ specifier: ^3.0.0
+ version: 3.0.0
+ '@cef-ebsi/verifiable-presentation':
+ specifier: ^5.0.5
+ version: 5.0.5
+ '@ceramicnetwork/http-client':
+ specifier: 2.20.0
+ version: 2.20.0
+ '@ceramicnetwork/streamid':
+ specifier: 2.14.0
+ version: 2.14.0
+ '@didtools/pkh-ethereum':
+ specifier: ^0.0.2
+ version: 0.0.2
+ '@glazed/did-datastore':
+ specifier: 0.3.2
+ version: 0.3.2
+ '@glazed/did-session':
+ specifier: 0.1.1
+ version: 0.1.1
+ '@metamask/key-tree':
+ specifier: ^6.0.0
+ version: 6.2.1
+ '@metamask/providers':
+ specifier: 10.2.1
+ version: 10.2.1
+ '@metamask/snaps-types':
+ specifier: 0.28.0
+ version: 0.28.0(patch_hash=rvr7xsi54kylxpxjwsjvbo3fce)
+ '@metamask/snaps-ui':
+ specifier: 0.28.0
+ version: 0.28.0
+ '@types/uuid':
+ specifier: ^9.0.1
+ version: 9.0.1
+ '@veramo/core':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/credential-eip712':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/credential-ld':
+ specifier: 5.1.2
+ version: 5.1.2(expo@48.0.10)(react-native@0.71.6)
+ '@veramo/credential-w3c':
+ specifier: 5.1.2
+ version: 5.1.2(expo@48.0.10)(react-native@0.71.6)
+ '@veramo/did-manager':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/did-provider-ethr':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/did-provider-pkh':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/did-resolver':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/key-manager':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/kms-local':
+ specifier: 5.1.2
+ version: 5.1.2
+ '@veramo/utils':
+ specifier: 5.1.2
+ version: 5.1.2
+ buffer:
+ specifier: ^6.0.3
+ version: 6.0.3
+ caip:
+ specifier: 1.1.0
+ version: 1.1.0
+ ceramic-cacao:
+ specifier: ^1.4.0
+ version: 1.4.0
+ class-transformer:
+ specifier: ^0.5.1
+ version: 0.5.1
+ class-validator:
+ specifier: ^0.13.2
+ version: 0.13.2
+ crypto-browserify:
+ specifier: ^3.12.0
+ version: 3.12.0
+ did-jwt-vc:
+ specifier: 3.1.2
+ version: 3.1.2
+ did-resolver:
+ specifier: 4.0.1
+ version: 4.0.1
+ did-session:
+ specifier: 1.0.0
+ version: 1.0.0
+ dids:
+ specifier: ^3.4.0
+ version: 3.4.0
+ elliptic:
+ specifier: ^6.5.4
+ version: 6.5.4
+ eth-sig-util:
+ specifier: 3.0.1
+ version: 3.0.1
+ ethers:
+ specifier: 5.7.2
+ version: 5.7.2
+ ethr-did:
+ specifier: 2.3.6
+ version: 2.3.6
+ ethr-did-resolver:
+ specifier: 8.0.0
+ version: 8.0.0
+ jose:
+ specifier: ^4.13.1
+ version: 4.13.1
+ js-sha256:
+ specifier: ^0.9.0
+ version: 0.9.0
+ json-loader:
+ specifier: ^0.5.7
+ version: 0.5.7
+ jsonpath:
+ specifier: ^1.1.1
+ version: 1.1.1
+ key-did-provider-ed25519:
+ specifier: ^2.0.1
+ version: 2.0.1
+ key-did-resolver:
+ specifier: 2.3.0
+ version: 2.3.0
+ lodash.clonedeep:
+ specifier: ^4.5.0
+ version: 4.5.0
+ multiformats:
+ specifier: ^11.0.2
+ version: 11.0.2
+ secp256k1:
+ specifier: 4.0.3
+ version: 4.0.3
+ ts-jest:
+ specifier: ^29.0.5
+ version: 29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5)
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.0
+ web-did-resolver:
+ specifier: 2.0.22
+ version: 2.0.22
devDependencies:
- '@babel/core': 7.21.3
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
- '@commitlint/cli': 17.5.1_@swc+core@1.3.42
- '@commitlint/config-conventional': 17.4.4
- '@ianvs/prettier-plugin-sort-imports': 3.7.2_prettier@2.8.7
- '@metamask/snaps-cli': 0.28.0
- '@metamask/snaps-webpack-plugin': 0.28.0
- '@swc/core': 1.3.42
- '@swc/jest': 0.2.24_@swc+core@1.3.42
- '@types/jest': 29.5.0
- '@types/jsonpath': 0.2.0
- '@types/lodash.clonedeep': 4.5.7
- '@types/node': 18.15.10
- '@types/secp256k1': 4.0.3
- '@types/webpack': 5.28.1_wfd5rlvlmpbpyqtrbwbe2u7vpa
- '@typescript-eslint/eslint-plugin': 5.57.0_5t5646cukn2kik5kiydglap3vi
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- audit-ci: 6.6.1
- babel-loader: 9.1.2_qtovpurzjlo3biun26ymnwui7i
- cross-env: 7.0.3
- eslint: 8.36.0
- eslint-config-prettier: 8.8.0_eslint@8.36.0
- eslint-plugin-import: 2.27.5_74llxljztmzze2ez7aakaiqyti
- eslint-plugin-jest: 27.2.1_cxtok4wlaywiu5g252ekt7hmay
- eslint-plugin-jest-extended: 2.0.0_vgl77cfdswitgr47lm5swmv43m
- eslint-plugin-prettier: 4.2.1_ywlv3zveqg2kxfq44lflihh5mm
- eslint-plugin-unused-imports: 2.0.0_bh3gacn4tk2wj6fu7gisfablcy
- eslint-webpack-plugin: 4.0.0_gq25nzrc5ulbrewficr3tpmdki
- fork-ts-checker-webpack-plugin: 8.0.0_t37drsge5fnqkss6ynqsf64hyi
- hook-shell-script-webpack-plugin: 0.2.0
- is-ci: 3.0.1
- jest: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
- jest-extended: 3.2.4_jest@29.5.0
- lint-staged: 13.2.0
- postinstall-postinstall: 2.1.0
- precompress: 10.0.2
- prettier: 2.8.7
- prettier-plugin-packagejson: 2.4.3_prettier@2.8.7
- rimraf: 4.4.1
- ts-node: 10.9.1_tg62r7x7ueatmrzf2qggdlzv6i
- typescript: 4.9.5
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
- webpack-cli: 5.0.1_webpack@5.76.3
- webpack-merge: 5.8.0
- webpackbar: 5.0.2_webpack@5.76.3
+ '@babel/core':
+ specifier: ^7.21.3
+ version: 7.21.3
+ '@babel/plugin-syntax-import-assertions':
+ specifier: ^7.20.0
+ version: 7.20.0(@babel/core@7.21.3)
+ '@babel/preset-typescript':
+ specifier: ^7.21.0
+ version: 7.21.0(@babel/core@7.21.3)
+ '@commitlint/cli':
+ specifier: ^17.5.1
+ version: 17.5.1(@swc/core@1.3.42)
+ '@commitlint/config-conventional':
+ specifier: ^17.4.4
+ version: 17.4.4
+ '@ianvs/prettier-plugin-sort-imports':
+ specifier: ^3.7.1
+ version: 3.7.2(prettier@2.8.7)
+ '@metamask/snaps-cli':
+ specifier: 0.28.0
+ version: 0.28.0
+ '@metamask/snaps-webpack-plugin':
+ specifier: 0.28.0
+ version: 0.28.0
+ '@swc/core':
+ specifier: ^1.3.41
+ version: 1.3.42
+ '@swc/jest':
+ specifier: ^0.2.24
+ version: 0.2.24(@swc/core@1.3.42)
+ '@types/elliptic':
+ specifier: ^6.4.14
+ version: 6.4.14
+ '@types/jest':
+ specifier: ^29.5.0
+ version: 29.5.0
+ '@types/jsonpath':
+ specifier: ^0.2.0
+ version: 0.2.0
+ '@types/lodash.clonedeep':
+ specifier: ^4.5.7
+ version: 4.5.7
+ '@types/node':
+ specifier: 18.15.10
+ version: 18.15.10
+ '@types/secp256k1':
+ specifier: ^4.0.3
+ version: 4.0.3
+ '@types/webpack':
+ specifier: ^5.28.0
+ version: 5.28.1(@swc/core@1.3.42)(webpack-cli@5.0.1)
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^5.55.0
+ version: 5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5)
+ '@typescript-eslint/parser':
+ specifier: ^5.55.0
+ version: 5.57.0(eslint@8.36.0)(typescript@4.9.5)
+ audit-ci:
+ specifier: ^6.6.0
+ version: 6.6.1
+ babel-loader:
+ specifier: ^9.1.2
+ version: 9.1.2(@babel/core@7.21.3)(webpack@5.76.3)
+ cross-env:
+ specifier: ^7.0.3
+ version: 7.0.3
+ eslint:
+ specifier: ^8.36.0
+ version: 8.36.0
+ eslint-config-prettier:
+ specifier: ^8.7.0
+ version: 8.8.0(eslint@8.36.0)
+ eslint-plugin-import:
+ specifier: ^2.27.5
+ version: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-plugin-jest:
+ specifier: ^27.2.1
+ version: 27.2.1(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)(jest@29.5.0)(typescript@4.9.5)
+ eslint-plugin-jest-extended:
+ specifier: ^2.0.0
+ version: 2.0.0(eslint@8.36.0)(typescript@4.9.5)
+ eslint-plugin-prettier:
+ specifier: ^4.2.1
+ version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.36.0)(prettier@2.8.7)
+ eslint-plugin-unused-imports:
+ specifier: ^2.0.0
+ version: 2.0.0(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)
+ eslint-webpack-plugin:
+ specifier: ^4.0.0
+ version: 4.0.0(eslint@8.36.0)(webpack@5.76.3)
+ fork-ts-checker-webpack-plugin:
+ specifier: ^8.0.0
+ version: 8.0.0(typescript@4.9.5)(webpack@5.76.3)
+ hook-shell-script-webpack-plugin:
+ specifier: ^0.2.0
+ version: 0.2.0
+ is-ci:
+ specifier: ^3.0.1
+ version: 3.0.1
+ jest:
+ specifier: ^29.5.0
+ version: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
+ jest-extended:
+ specifier: ^3.2.4
+ version: 3.2.4(jest@29.5.0)
+ lint-staged:
+ specifier: ^13.2.0
+ version: 13.2.0
+ postinstall-postinstall:
+ specifier: ^2.1.0
+ version: 2.1.0
+ precompress:
+ specifier: ^10.0.2
+ version: 10.0.2
+ prettier:
+ specifier: ^2.8.4
+ version: 2.8.7
+ prettier-plugin-packagejson:
+ specifier: ^2.4.3
+ version: 2.4.3(prettier@2.8.7)
+ rimraf:
+ specifier: ^4.4.0
+ version: 4.4.1
+ ts-node:
+ specifier: ^10.9.1
+ version: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5)
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
+ webpack:
+ specifier: 5.76.3
+ version: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
+ webpack-cli:
+ specifier: 5.0.1
+ version: 5.0.1(webpack@5.76.3)
+ webpack-merge:
+ specifier: 5.8.0
+ version: 5.8.0
+ webpackbar:
+ specifier: 5.0.2
+ version: 5.0.2(webpack@5.76.3)
packages/types:
- specifiers:
- '@blockchain-lab-um/utils': '*'
- '@ianvs/prettier-plugin-sort-imports': ^3.7.1
- '@types/rimraf': ^4.0.5
- '@veramo/core': 5.1.2
- eslint-plugin-unused-imports: ^2.0.0
- prettier-plugin-packagejson: ^2.4.3
- rimraf: ^4.4.0
- tsup: ^6.6.3
- typescript: ^4.9.5
- dependencies:
- '@blockchain-lab-um/utils': link:../../libs/utils
- '@veramo/core': 5.1.2
+ dependencies:
+ '@blockchain-lab-um/utils':
+ specifier: '*'
+ version: link:../../libs/utils
+ '@veramo/core':
+ specifier: 5.1.2
+ version: 5.1.2
devDependencies:
- '@ianvs/prettier-plugin-sort-imports': 3.7.2
- '@types/rimraf': 4.0.5
- eslint-plugin-unused-imports: 2.0.0
- prettier-plugin-packagejson: 2.4.3
- rimraf: 4.4.1
- tsup: 6.7.0_typescript@4.9.5
- typescript: 4.9.5
+ '@ianvs/prettier-plugin-sort-imports':
+ specifier: ^3.7.1
+ version: 3.7.2(prettier@2.8.7)
+ '@types/rimraf':
+ specifier: ^4.0.5
+ version: 4.0.5
+ eslint-plugin-unused-imports:
+ specifier: ^2.0.0
+ version: 2.0.0(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)
+ prettier-plugin-packagejson:
+ specifier: ^2.4.3
+ version: 2.4.3(prettier@2.8.7)
+ rimraf:
+ specifier: ^4.4.0
+ version: 4.4.1
+ tsup:
+ specifier: ^6.6.3
+ version: 6.7.0(ts-node@10.9.1)(typescript@4.9.5)
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
packages/vcmanager:
- specifiers:
- '@blockchain-lab-um/ssi-snap-types': '*'
- '@ianvs/prettier-plugin-sort-imports': ^3.7.1
- '@swc/core': ^1.3.41
- '@swc/jest': ^0.2.24
- '@types/jest': ^29.4.0
- '@types/jsonpath': ^0.2.0
- '@types/prettier': ^2.7.2
- '@types/rimraf': ^4.0.5
- '@types/uuid': ^9.0.1
- '@veramo/core': 5.1.2
- eslint: ^8.34.0
- eslint-config-prettier: ^8.6.0
- eslint-plugin-import: ^2.27.5
- eslint-plugin-prettier: ^4.2.1
- eslint-plugin-unused-imports: ^2.0.0
- jest: 29.5.0
- jsonpath: ^1.1.1
- prettier: ^2.8.4
- prettier-plugin-packagejson: ^2.4.3
- rimraf: ^4.4.0
- typescript: ^4.9.5
- uuid: ^9.0.0
- dependencies:
- '@blockchain-lab-um/ssi-snap-types': link:../types
- '@types/jsonpath': 0.2.0
- '@veramo/core': 5.1.2
- jsonpath: 1.1.1
- uuid: 9.0.0
+ dependencies:
+ '@blockchain-lab-um/ssi-snap-types':
+ specifier: '*'
+ version: link:../types
+ '@types/jsonpath':
+ specifier: ^0.2.0
+ version: 0.2.0
+ '@veramo/core':
+ specifier: 5.1.2
+ version: 5.1.2
+ jsonpath:
+ specifier: ^1.1.1
+ version: 1.1.1
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.0
devDependencies:
- '@ianvs/prettier-plugin-sort-imports': 3.7.2_prettier@2.8.7
- '@swc/core': 1.3.42
- '@swc/jest': 0.2.24_@swc+core@1.3.42
- '@types/jest': 29.5.0
- '@types/prettier': 2.7.2
- '@types/rimraf': 4.0.5
- '@types/uuid': 9.0.1
- eslint: 8.36.0
- eslint-config-prettier: 8.8.0_eslint@8.36.0
- eslint-plugin-import: 2.27.5_eslint@8.36.0
- eslint-plugin-prettier: 4.2.1_ywlv3zveqg2kxfq44lflihh5mm
- eslint-plugin-unused-imports: 2.0.0_eslint@8.36.0
- jest: 29.5.0
- prettier: 2.8.7
- prettier-plugin-packagejson: 2.4.3_prettier@2.8.7
- rimraf: 4.4.1
- typescript: 4.9.5
+ '@ianvs/prettier-plugin-sort-imports':
+ specifier: ^3.7.1
+ version: 3.7.2(prettier@2.8.7)
+ '@swc/core':
+ specifier: ^1.3.41
+ version: 1.3.42
+ '@swc/jest':
+ specifier: ^0.2.24
+ version: 0.2.24(@swc/core@1.3.42)
+ '@types/jest':
+ specifier: ^29.4.0
+ version: 29.5.0
+ '@types/prettier':
+ specifier: ^2.7.2
+ version: 2.7.2
+ '@types/rimraf':
+ specifier: ^4.0.5
+ version: 4.0.5
+ '@types/uuid':
+ specifier: ^9.0.1
+ version: 9.0.1
+ eslint:
+ specifier: ^8.34.0
+ version: 8.36.0
+ eslint-config-prettier:
+ specifier: ^8.6.0
+ version: 8.8.0(eslint@8.36.0)
+ eslint-plugin-import:
+ specifier: ^2.27.5
+ version: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-plugin-prettier:
+ specifier: ^4.2.1
+ version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.36.0)(prettier@2.8.7)
+ eslint-plugin-unused-imports:
+ specifier: ^2.0.0
+ version: 2.0.0(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)
+ jest:
+ specifier: 29.5.0
+ version: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
+ prettier:
+ specifier: ^2.8.4
+ version: 2.8.7
+ prettier-plugin-packagejson:
+ specifier: ^2.4.3
+ version: 2.4.3(prettier@2.8.7)
+ rimraf:
+ specifier: ^4.4.0
+ version: 4.4.1
+ typescript:
+ specifier: ^4.9.5
+ version: 4.9.5
packages:
- /@adraffy/ens-normalize/1.9.0:
+ /@adraffy/ens-normalize@1.9.0:
resolution: {integrity: sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ==}
dev: false
- /@algolia/autocomplete-core/1.7.4:
+ /@algolia/autocomplete-core@1.7.4:
resolution: {integrity: sha512-daoLpQ3ps/VTMRZDEBfU8ixXd+amZcNJ4QSP3IERGyzqnL5Ch8uSRFt/4G8pUvW9c3o6GA4vtVv4I4lmnkdXyg==}
dependencies:
'@algolia/autocomplete-shared': 1.7.4
dev: false
- /@algolia/autocomplete-preset-algolia/1.7.4_algoliasearch@4.16.0:
+ /@algolia/autocomplete-preset-algolia@1.7.4(@algolia/client-search@4.16.0)(algoliasearch@4.16.0):
resolution: {integrity: sha512-s37hrvLEIfcmKY8VU9LsAXgm2yfmkdHT3DnA3SgHaY93yjZ2qL57wzb5QweVkYuEBZkT2PIREvRoLXC2sxTbpQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
'@algolia/autocomplete-shared': 1.7.4
+ '@algolia/client-search': 4.16.0
algoliasearch: 4.16.0
dev: false
- /@algolia/autocomplete-shared/1.7.4:
+ /@algolia/autocomplete-shared@1.7.4:
resolution: {integrity: sha512-2VGCk7I9tA9Ge73Km99+Qg87w0wzW4tgUruvWAn/gfey1ZXgmxZtyIRBebk35R1O8TbK77wujVtCnpsGpRy1kg==}
dev: false
- /@algolia/cache-browser-local-storage/4.16.0:
+ /@algolia/cache-browser-local-storage@4.16.0:
resolution: {integrity: sha512-jVrk0YB3tjOhD5/lhBtYCVCeLjZmVpf2kdi4puApofytf/R0scjWz0GdozlW4HhU+Prxmt/c9ge4QFjtv5OAzQ==}
dependencies:
'@algolia/cache-common': 4.16.0
dev: false
- /@algolia/cache-common/4.16.0:
+ /@algolia/cache-common@4.16.0:
resolution: {integrity: sha512-4iHjkSYQYw46pITrNQgXXhvUmcekI8INz1m+SzmqLX8jexSSy4Ky4zfGhZzhhhLHXUP3+x/PK/c0qPjxEvRwKQ==}
dev: false
- /@algolia/cache-in-memory/4.16.0:
+ /@algolia/cache-in-memory@4.16.0:
resolution: {integrity: sha512-p7RYykvA6Ip6QENxrh99nOD77otVh1sJRivcgcVpnjoZb5sIN3t33eUY1DpB9QSBizcrW+qk19rNkdnZ43a+PQ==}
dependencies:
'@algolia/cache-common': 4.16.0
dev: false
- /@algolia/client-account/4.16.0:
+ /@algolia/client-account@4.16.0:
resolution: {integrity: sha512-eydcfpdIyuWoKgUSz5iZ/L0wE/Wl7958kACkvTHLDNXvK/b8Z1zypoJavh6/km1ZNQmFpeYS2jrmq0kUSFn02w==}
dependencies:
'@algolia/client-common': 4.16.0
@@ -636,7 +919,7 @@ packages:
'@algolia/transporter': 4.16.0
dev: false
- /@algolia/client-analytics/4.16.0:
+ /@algolia/client-analytics@4.16.0:
resolution: {integrity: sha512-cONWXH3BfilgdlCofUm492bJRWtpBLVW/hsUlfoFtiX1u05xoBP7qeiDwh9RR+4pSLHLodYkHAf5U4honQ55Qg==}
dependencies:
'@algolia/client-common': 4.16.0
@@ -645,14 +928,14 @@ packages:
'@algolia/transporter': 4.16.0
dev: false
- /@algolia/client-common/4.16.0:
+ /@algolia/client-common@4.16.0:
resolution: {integrity: sha512-QVdR4019ukBH6f5lFr27W60trRxQF1SfS1qo0IP6gjsKhXhUVJuHxOCA6ArF87jrNkeuHEoRoDU+GlvaecNo8g==}
dependencies:
'@algolia/requester-common': 4.16.0
'@algolia/transporter': 4.16.0
dev: false
- /@algolia/client-personalization/4.16.0:
+ /@algolia/client-personalization@4.16.0:
resolution: {integrity: sha512-irtLafssDGPuhYqIwxqOxiWlVYvrsBD+EMA1P9VJtkKi3vSNBxiWeQ0f0Tn53cUNdSRNEssfoEH84JL97SV2SQ==}
dependencies:
'@algolia/client-common': 4.16.0
@@ -660,7 +943,7 @@ packages:
'@algolia/transporter': 4.16.0
dev: false
- /@algolia/client-search/4.16.0:
+ /@algolia/client-search@4.16.0:
resolution: {integrity: sha512-xsfrAE1jO/JDh1wFrRz+alVyW+aA6qnkzmbWWWZWEgVF3EaFqzIf9r1l/aDtDdBtNTNhX9H3Lg31+BRtd5izQA==}
dependencies:
'@algolia/client-common': 4.16.0
@@ -668,37 +951,37 @@ packages:
'@algolia/transporter': 4.16.0
dev: false
- /@algolia/events/4.0.1:
+ /@algolia/events@4.0.1:
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
dev: false
- /@algolia/logger-common/4.16.0:
+ /@algolia/logger-common@4.16.0:
resolution: {integrity: sha512-U9H8uCzSDuePJmbnjjTX21aPDRU6x74Tdq3dJmdYu2+pISx02UeBJm4kSgc9RW5jcR5j35G9gnjHY9Q3ngWbyQ==}
dev: false
- /@algolia/logger-console/4.16.0:
+ /@algolia/logger-console@4.16.0:
resolution: {integrity: sha512-+qymusiM+lPZKrkf0tDjCQA158eEJO2IU+Nr/sJ9TFyI/xkFPjNPzw/Qbc8Iy/xcOXGlc6eMgmyjtVQqAWq6UA==}
dependencies:
'@algolia/logger-common': 4.16.0
dev: false
- /@algolia/requester-browser-xhr/4.16.0:
+ /@algolia/requester-browser-xhr@4.16.0:
resolution: {integrity: sha512-gK+kvs6LHl/PaOJfDuwjkopNbG1djzFLsVBklGBsSU6h6VjFkxIpo6Qq80IK14p9cplYZfhfaL12va6Q9p3KVQ==}
dependencies:
'@algolia/requester-common': 4.16.0
dev: false
- /@algolia/requester-common/4.16.0:
+ /@algolia/requester-common@4.16.0:
resolution: {integrity: sha512-3Zmcs/iMubcm4zqZ3vZG6Zum8t+hMWxGMzo0/uY2BD8o9q5vMxIYI0c4ocdgQjkXcix189WtZNkgjSOBzSbkdw==}
dev: false
- /@algolia/requester-node-http/4.16.0:
+ /@algolia/requester-node-http@4.16.0:
resolution: {integrity: sha512-L8JxM2VwZzh8LJ1Zb8TFS6G3icYsCKZsdWW+ahcEs1rGWmyk9SybsOe1MLnjonGBaqPWJkn9NjS7mRdjEmBtKA==}
dependencies:
'@algolia/requester-common': 4.16.0
dev: false
- /@algolia/transporter/4.16.0:
+ /@algolia/transporter@4.16.0:
resolution: {integrity: sha512-H9BVB2EAjT65w7XGBNf5drpsW39x2aSZ942j4boSAAJPPlLmjtj5IpAP7UAtsV8g9Beslonh0bLa1XGmE/P0BA==}
dependencies:
'@algolia/cache-common': 4.16.0
@@ -706,24 +989,31 @@ packages:
'@algolia/requester-common': 4.16.0
dev: false
- /@ampproject/remapping/2.2.0:
+ /@ampproject/remapping@2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.17
- /@babel/code-frame/7.18.6:
+ /@babel/code-frame@7.10.4:
+ resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
+ dependencies:
+ '@babel/highlight': 7.18.6
+ dev: false
+ optional: true
+
+ /@babel/code-frame@7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.21.0:
+ /@babel/compat-data@7.21.0:
resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.12.9:
+ /@babel/core@7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -746,14 +1036,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/core/7.21.3:
+ /@babel/core@7.21.3:
resolution: {integrity: sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
'@babel/generator': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-module-transforms': 7.21.2
'@babel/helpers': 7.21.0
'@babel/parser': 7.21.3
@@ -768,7 +1058,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator/7.21.3:
+ /@babel/generator@7.21.3:
resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -777,20 +1067,20 @@ packages:
'@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
'@babel/types': 7.21.3
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.3:
+ /@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -803,7 +1093,7 @@ packages:
lru-cache: 5.1.1
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.3:
+ /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -821,7 +1111,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.21.3:
+ /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -831,13 +1121,13 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.3.2
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.3:
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -846,42 +1136,42 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-environment-visitor/7.18.9:
+ /@babel/helper-environment-visitor@7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-explode-assignable-expression/7.18.6:
+ /@babel/helper-explode-assignable-expression@7.18.6:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-function-name/7.21.0:
+ /@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
'@babel/types': 7.21.3
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-member-expression-to-functions/7.21.0:
+ /@babel/helper-member-expression-to-functions@7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-module-imports/7.18.6:
+ /@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-module-transforms/7.21.2:
+ /@babel/helper-module-transforms@7.21.2:
resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -896,20 +1186,20 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-optimise-call-expression/7.18.6:
+ /@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-plugin-utils/7.10.4:
+ /@babel/helper-plugin-utils@7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
- /@babel/helper-plugin-utils/7.20.2:
+ /@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.3:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -923,7 +1213,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-replace-supers/7.20.7:
+ /@babel/helper-replace-supers@7.20.7:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -936,37 +1226,37 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-simple-access/7.20.2:
+ /@babel/helper-simple-access@7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-split-export-declaration/7.18.6:
+ /@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-string-parser/7.19.4:
+ /@babel/helper-string-parser@7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.21.0:
+ /@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-wrap-function/7.20.5:
+ /@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -977,7 +1267,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helpers/7.21.0:
+ /@babel/helpers@7.21.0:
resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -987,7 +1277,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -995,14 +1285,14 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.21.3:
+ /@babel/parser@7.21.3:
resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.21.3
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1011,7 +1301,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1020,9 +1310,9 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1031,53 +1321,52 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1085,9 +1374,21 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+
+ /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.21.3):
+ resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.21.3)
+ dev: false
+ optional: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1095,9 +1396,9 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3)
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1105,9 +1406,9 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1115,9 +1416,9 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1125,9 +1426,9 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1135,19 +1436,19 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
- /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
+ /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9):
resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.12.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1155,12 +1456,12 @@ packages:
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1168,9 +1469,9 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
- /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1179,21 +1480,21 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1201,23 +1502,23 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.3:
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1225,7 +1526,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1233,7 +1534,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.3:
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.3):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1241,7 +1542,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.3:
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.3):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1250,7 +1551,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1258,9 +1559,8 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1268,7 +1568,18 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.21.3):
+ resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+ optional: true
+
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1276,7 +1587,18 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.3:
+ /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.21.3):
+ resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+ optional: true
+
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.3):
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1285,7 +1607,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.21.3:
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.3):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1293,7 +1615,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1301,7 +1623,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9:
+ /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9):
resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1309,7 +1631,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1318,7 +1640,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.3:
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.3):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1326,7 +1648,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1334,7 +1656,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.3:
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.3):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1342,7 +1664,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1350,7 +1672,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1358,7 +1680,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1366,7 +1688,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1374,7 +1696,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.3:
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.3):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1383,7 +1705,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.3:
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.3):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1392,7 +1714,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.3:
+ /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.21.3):
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1401,7 +1723,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1410,7 +1732,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1419,11 +1741,11 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1432,7 +1754,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1441,7 +1763,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1449,7 +1771,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -1460,7 +1782,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1470,7 +1792,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
- /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1479,17 +1801,17 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1498,7 +1820,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1508,7 +1830,19 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-for-of/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.3)
+ dev: false
+ optional: true
+
+ /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1517,18 +1851,18 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1537,7 +1871,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1546,7 +1880,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.3):
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1558,7 +1892,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.3):
resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1571,7 +1905,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.3):
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1585,7 +1919,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1597,17 +1931,17 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.3:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.3):
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1616,7 +1950,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1628,7 +1962,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.12.9:
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.12.9):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1637,7 +1971,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1646,7 +1980,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1655,7 +1989,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-react-constant-elements/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1664,7 +1998,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1673,16 +2007,38 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+
+ /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+ optional: true
+
+ /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.21.3):
+ resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: false
+ optional: true
- /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1692,10 +2048,10 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.3)
'@babel/types': 7.21.3
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1705,7 +2061,7 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.3:
+ /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.3):
resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1715,7 +2071,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
regenerator-transform: 0.15.1
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1724,7 +2080,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-runtime/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1733,14 +2089,14 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.3
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.3
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1749,7 +2105,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1759,7 +2115,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1768,7 +2124,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1777,7 +2133,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1786,7 +2142,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1794,13 +2150,13 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.3:
+ /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.3):
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1809,17 +2165,17 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/preset-env/7.20.2_@babel+core@7.21.3:
+ /@babel/preset-env@7.20.2(@babel/core@7.21.3):
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1827,96 +2183,109 @@ packages:
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.3
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.3
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.3
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.3
- '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.3
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.3
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.3
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.3
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.3
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.3
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.3
- '@babel/preset-modules': 0.1.5_@babel+core@7.21.3
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.3)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.21.3)
'@babel/types': 7.21.3
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.3
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.3
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3)
core-js-compat: 3.29.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/preset-modules/0.1.5_@babel+core@7.21.3:
+ /@babel/preset-flow@7.21.4(@babel/core@7.21.3):
+ resolution: {integrity: sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.3)
+ dev: false
+ optional: true
+
+ /@babel/preset-modules@0.1.5(@babel/core@7.21.3):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
'@babel/types': 7.21.3
esutils: 2.0.3
- /@babel/preset-react/7.18.6_@babel+core@7.21.3:
+ /@babel/preset-react@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1925,12 +2294,12 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.3)
- /@babel/preset-typescript/7.21.0_@babel+core@7.21.3:
+ /@babel/preset-typescript@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1939,27 +2308,49 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.21.3
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /@babel/regjsgen/0.8.0:
+ /@babel/register@7.21.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ clone-deep: 4.0.1
+ find-cache-dir: 2.1.0
+ make-dir: 2.1.0
+ pirates: 4.0.5
+ source-map-support: 0.5.21
+ dev: false
+ optional: true
+
+ /@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- /@babel/runtime-corejs3/7.21.0:
+ /@babel/runtime-corejs3@7.21.0:
resolution: {integrity: sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw==}
engines: {node: '>=6.9.0'}
dependencies:
core-js-pure: 3.29.1
regenerator-runtime: 0.13.11
- /@babel/runtime/7.21.0:
- resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
+ /@babel/runtime@7.20.13:
+ resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.13.11
+ dev: false
+
+ /@babel/runtime@7.21.0:
+ resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
- /@babel/template/7.20.7:
+ /@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1967,7 +2358,7 @@ packages:
'@babel/parser': 7.21.3
'@babel/types': 7.21.3
- /@babel/traverse/7.21.3:
+ /@babel/traverse@7.21.3:
resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1984,7 +2375,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/types/7.21.3:
+ /@babel/types@7.21.3:
resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1992,15 +2383,111 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- /@bcoe/v8-coverage/0.2.3:
+ /@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- /@bitauth/libauth/1.19.1:
+ /@bitauth/libauth@1.19.1:
resolution: {integrity: sha512-R524tD5VwOt3QRHr7N518nqTVR/HKgfWL4LypekcGuNQN8R4PWScvuRcRzrY39A28kLztMv+TJdiKuMNbkU1ug==}
engines: {node: '>=8.9'}
dev: false
- /@ceramicnetwork/blockchain-utils-linking/2.13.0:
+ /@cef-ebsi/ebsi-did-resolver@3.0.0:
+ resolution: {integrity: sha512-XzX5aWnhao1ecWFZz2PjjBATormtnaWP4HSFQ+iRn7+lf0NA0irIh4X4D0IBRS36xTRQFOj9wnid5uR7a8AVhg==}
+ engines: {node: '>=16.10.0'}
+ dependencies:
+ axios: 1.3.4
+ did-resolver: 4.1.0
+ jose: 4.13.1
+ multiformats: 9.9.0
+ transitivePeerDependencies:
+ - debug
+ dev: false
+
+ /@cef-ebsi/key-did-resolver@1.0.0:
+ resolution: {integrity: sha512-2tnoKeh0iFPVxvgMPU5AdsA3Ck2TfgzqjJGhMyqBoiy8plNYXkWy2V7l3BdOQReH0AxR2awo81kX2USrYFeqxg==}
+ engines: {node: '>=16.10.0'}
+ dependencies:
+ did-resolver: 4.1.0
+ jose: 4.13.1
+ lodash.isplainobject: 4.0.6
+ multiformats: 9.9.0
+ web-encoding: 1.1.5
+ dev: false
+
+ /@cef-ebsi/siop-auth@3.0.0:
+ resolution: {integrity: sha512-VUt1J8q2HqUOsSkyyNcz/5VJ23QGHDg+RbIDALqVp5zRnYXdBzGFupO3MsBfItPmBqohmxRSlswjJKMFxE0twA==}
+ engines: {node: '>=16.10.0'}
+ dependencies:
+ '@cef-ebsi/ebsi-did-resolver': 3.0.0
+ '@cef-ebsi/key-did-resolver': 1.0.0
+ axios: 1.3.4
+ did-jwt: 6.11.5
+ did-resolver: 4.1.0
+ elliptic: 6.5.4
+ eth-crypto: 2.6.0
+ jose: 4.13.1
+ key-encoder: 2.0.3
+ multiformats: 9.9.0
+ uuid: 9.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+ dev: false
+
+ /@cef-ebsi/verifiable-credential@4.1.2:
+ resolution: {integrity: sha512-xNYWRiRVgeKlbN1w4nAODMdFOswQ7rlF/t0KacK8aH9x7SFGn96IdA3CBZ0ColAzw5zDnj3huQLN762Fv2cYeQ==}
+ engines: {node: '>=16.10.0'}
+ dependencies:
+ '@cef-ebsi/ebsi-did-resolver': 3.0.0
+ '@cef-ebsi/key-did-resolver': 1.0.0
+ '@transmute/json-web-signature': 0.7.0-unstable.80
+ '@transmute/vc.js': 0.7.0-unstable.80
+ ajv: 8.12.0
+ ajv-formats: 2.1.1(ajv@8.12.0)
+ axios: 1.3.4
+ did-resolver: 4.1.0
+ elliptic: 6.5.4
+ ethers: 5.7.2
+ jose: 4.13.1
+ lodash.clonedeep: 4.5.0
+ mem: 8.1.1
+ multiformats: 9.9.0
+ pako: 2.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - domexception
+ - encoding
+ - utf-8-validate
+ - web-streams-polyfill
+ dev: false
+
+ /@cef-ebsi/verifiable-presentation@5.0.5:
+ resolution: {integrity: sha512-NuKSTIMp3XzhY2KxczgLfj/QqLegOWMJCy5F27XZE5MyS9gUALIrrYnKCutVX58ytHgZaZ2gMHCGk/lw0bVsHA==}
+ engines: {node: '>=16.10.0'}
+ dependencies:
+ '@cef-ebsi/ebsi-did-resolver': 3.0.0
+ '@cef-ebsi/key-did-resolver': 1.0.0
+ '@cef-ebsi/verifiable-credential': 4.1.2
+ '@transmute/json-web-signature': 0.7.0-unstable.80
+ '@transmute/vc.js': 0.7.0-unstable.80
+ ajv: 8.12.0
+ axios: 1.3.4
+ did-resolver: 4.1.0
+ jose: 4.13.1
+ mem: 8.1.1
+ multiformats: 9.9.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - domexception
+ - encoding
+ - utf-8-validate
+ - web-streams-polyfill
+ dev: false
+
+ /@ceramicnetwork/blockchain-utils-linking@2.13.0:
resolution: {integrity: sha512-W2f0t5IqR6JpBBUQ96UmmAaHWefmN1hal2pcYl8Zk/5UsnBk9nhLDmdtiBU3uJlIXLV+wya/NWwO9+AwjXptbw==}
dependencies:
'@ceramicnetwork/streamid': 2.14.0
@@ -2014,7 +2501,7 @@ packages:
- encoding
dev: false
- /@ceramicnetwork/common/2.24.0:
+ /@ceramicnetwork/common@2.24.0:
resolution: {integrity: sha512-Q3GBlJd5XrSDCP/6KJy2sz+5MfAVhMrEDoW9SIaxG19xPC+QGeMRouNbZf+qfe3tGQintaRn3FhoqSAtjFxE1g==}
dependencies:
'@ceramicnetwork/streamid': 2.14.0
@@ -2025,7 +2512,7 @@ packages:
'@didtools/pkh-tezos': 0.2.1
'@stablelib/random': 1.0.2
caip: 1.1.0
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
flat: 5.0.2
it-first: 1.0.7
jet-logger: 1.2.2
@@ -2038,7 +2525,7 @@ packages:
- encoding
dev: false
- /@ceramicnetwork/http-client/2.20.0:
+ /@ceramicnetwork/http-client@2.20.0:
resolution: {integrity: sha512-nwxxcm1Wt2A+QRByxC0PFGCGNfkzWMobduxeaixgkGhJN5SX7Edu7hi4EmhV0PZmXJRitCaNJDXZiRRZ903D1Q==}
dependencies:
'@ceramicnetwork/common': 2.24.0
@@ -2053,7 +2540,7 @@ packages:
- encoding
dev: false
- /@ceramicnetwork/stream-caip10-link/2.19.0:
+ /@ceramicnetwork/stream-caip10-link@2.19.0:
resolution: {integrity: sha512-h9kXbAsngj7e3amHE2vIPAyCKa537rLdc41xfYX1NSI8vDN7WwWht5xzT3DkRO91AmqGKPvCh801IcjqVHRC/w==}
dependencies:
'@ceramicnetwork/common': 2.24.0
@@ -2065,7 +2552,7 @@ packages:
- encoding
dev: false
- /@ceramicnetwork/stream-model-instance/1.6.0:
+ /@ceramicnetwork/stream-model-instance@1.6.0:
resolution: {integrity: sha512-qa7EUFV+/eZTiCyT0AvpNyvFMNbzH4sbXAJUsSKJ2YxXy3fo3X5QEVx51pKnVnc6JomNBz6S/pQj0kOR8o+hqA==}
dependencies:
'@ceramicnetwork/common': 2.24.0
@@ -2079,7 +2566,7 @@ packages:
- encoding
dev: false
- /@ceramicnetwork/stream-model/1.6.0:
+ /@ceramicnetwork/stream-model@1.6.0:
resolution: {integrity: sha512-rdX2bZmYLbpjQexLWBOGe37jg+5FV+1/GlwAleZjgBS6zc0mzWpwn901FmuXB+P6Lan2fQ1py5EOICoVYklqnA==}
dependencies:
'@ceramicnetwork/common': 2.24.0
@@ -2095,7 +2582,7 @@ packages:
- encoding
dev: false
- /@ceramicnetwork/stream-tile/2.20.0:
+ /@ceramicnetwork/stream-tile@2.20.0:
resolution: {integrity: sha512-aBHegw35+p+QZbZGKKuaCy3bNrpztNTDlNaedReNlUVvVTSl2VecTBCY7CpbqVjIj6+wE3yBrpUfTOBlTbjyuw==}
dependencies:
'@ceramicnetwork/common': 2.24.0
@@ -2110,7 +2597,7 @@ packages:
- encoding
dev: false
- /@ceramicnetwork/streamid/2.14.0:
+ /@ceramicnetwork/streamid@2.14.0:
resolution: {integrity: sha512-Pv28GZA77Zth+aC65NJeimrH4pIl91SKMCBAkOHORk/UCH++HTTItAjhu/RqMCsGpfnsIvZAXwsGqNH7dfJz1A==}
dependencies:
'@ipld/dag-cbor': 7.0.3
@@ -2120,55 +2607,35 @@ packages:
varint: 6.0.0
dev: false
- /@chainsafe/as-sha256/0.3.1:
+ /@chainsafe/as-sha256@0.3.1:
resolution: {integrity: sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==}
- /@chainsafe/persistent-merkle-tree/0.4.2:
+ /@chainsafe/persistent-merkle-tree@0.4.2:
resolution: {integrity: sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==}
dependencies:
'@chainsafe/as-sha256': 0.3.1
- /@chainsafe/ssz/0.9.4:
+ /@chainsafe/ssz@0.9.4:
resolution: {integrity: sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==}
dependencies:
'@chainsafe/as-sha256': 0.3.1
'@chainsafe/persistent-merkle-tree': 0.4.2
case: 1.6.3
- /@colors/colors/1.5.0:
+ /@colors/colors@1.5.0:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
requiresBuild: true
optional: true
- /@commitlint/cli/17.5.1:
- resolution: {integrity: sha512-pRRgGSzdHQHehxZbGA3qF6wVPyl+EEQgTe/t321rtMLFbuJ7nRj2waS17s/v5oEbyZtiY5S8PGB6XtEIm0I+Sg==}
- engines: {node: '>=v14'}
- hasBin: true
- dependencies:
- '@commitlint/format': 17.4.4
- '@commitlint/lint': 17.4.4
- '@commitlint/load': 17.5.0
- '@commitlint/read': 17.5.1
- '@commitlint/types': 17.4.4
- execa: 5.1.1
- lodash.isfunction: 3.0.9
- resolve-from: 5.0.0
- resolve-global: 1.0.0
- yargs: 17.7.1
- transitivePeerDependencies:
- - '@swc/core'
- - '@swc/wasm'
- dev: true
-
- /@commitlint/cli/17.5.1_@swc+core@1.3.42:
+ /@commitlint/cli@17.5.1(@swc/core@1.3.42):
resolution: {integrity: sha512-pRRgGSzdHQHehxZbGA3qF6wVPyl+EEQgTe/t321rtMLFbuJ7nRj2waS17s/v5oEbyZtiY5S8PGB6XtEIm0I+Sg==}
engines: {node: '>=v14'}
hasBin: true
dependencies:
'@commitlint/format': 17.4.4
'@commitlint/lint': 17.4.4
- '@commitlint/load': 17.5.0_@swc+core@1.3.42
+ '@commitlint/load': 17.5.0(@swc/core@1.3.42)
'@commitlint/read': 17.5.1
'@commitlint/types': 17.4.4
execa: 5.1.1
@@ -2181,14 +2648,14 @@ packages:
- '@swc/wasm'
dev: true
- /@commitlint/config-conventional/17.4.4:
+ /@commitlint/config-conventional@17.4.4:
resolution: {integrity: sha512-u6ztvxqzi6NuhrcEDR7a+z0yrh11elY66nRrQIpqsqW6sZmpxYkDLtpRH8jRML+mmxYQ8s4qqF06Q/IQx5aJeQ==}
engines: {node: '>=v14'}
dependencies:
conventional-changelog-conventionalcommits: 5.0.0
dev: true
- /@commitlint/config-validator/17.4.4:
+ /@commitlint/config-validator@17.4.4:
resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==}
engines: {node: '>=v14'}
dependencies:
@@ -2196,7 +2663,7 @@ packages:
ajv: 8.12.0
dev: true
- /@commitlint/ensure/17.4.4:
+ /@commitlint/ensure@17.4.4:
resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==}
engines: {node: '>=v14'}
dependencies:
@@ -2208,12 +2675,12 @@ packages:
lodash.upperfirst: 4.3.1
dev: true
- /@commitlint/execute-rule/17.4.0:
+ /@commitlint/execute-rule@17.4.0:
resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/format/17.4.4:
+ /@commitlint/format@17.4.4:
resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==}
engines: {node: '>=v14'}
dependencies:
@@ -2221,7 +2688,7 @@ packages:
chalk: 4.1.2
dev: true
- /@commitlint/is-ignored/17.4.4:
+ /@commitlint/is-ignored@17.4.4:
resolution: {integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==}
engines: {node: '>=v14'}
dependencies:
@@ -2229,7 +2696,7 @@ packages:
semver: 7.3.8
dev: true
- /@commitlint/lint/17.4.4:
+ /@commitlint/lint@17.4.4:
resolution: {integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==}
engines: {node: '>=v14'}
dependencies:
@@ -2239,30 +2706,7 @@ packages:
'@commitlint/types': 17.4.4
dev: true
- /@commitlint/load/17.5.0:
- resolution: {integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==}
- engines: {node: '>=v14'}
- dependencies:
- '@commitlint/config-validator': 17.4.4
- '@commitlint/execute-rule': 17.4.0
- '@commitlint/resolve-extends': 17.4.4
- '@commitlint/types': 17.4.4
- '@types/node': 18.15.10
- chalk: 4.1.2
- cosmiconfig: 8.1.3
- cosmiconfig-typescript-loader: 4.3.0_cwejo6a3jrsuzg27ji24tbs5ya
- lodash.isplainobject: 4.0.6
- lodash.merge: 4.6.2
- lodash.uniq: 4.5.0
- resolve-from: 5.0.0
- ts-node: 10.9.1_z3vu5dg2hu3jqyh3anri5tms2q
- typescript: 4.9.5
- transitivePeerDependencies:
- - '@swc/core'
- - '@swc/wasm'
- dev: true
-
- /@commitlint/load/17.5.0_@swc+core@1.3.42:
+ /@commitlint/load@17.5.0(@swc/core@1.3.42):
resolution: {integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==}
engines: {node: '>=v14'}
dependencies:
@@ -2273,24 +2717,24 @@ packages:
'@types/node': 18.15.10
chalk: 4.1.2
cosmiconfig: 8.1.3
- cosmiconfig-typescript-loader: 4.3.0_cwejo6a3jrsuzg27ji24tbs5ya
+ cosmiconfig-typescript-loader: 4.3.0(@types/node@18.15.10)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@4.9.5)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.1_tg62r7x7ueatmrzf2qggdlzv6i
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
dev: true
- /@commitlint/message/17.4.2:
+ /@commitlint/message@17.4.2:
resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/parse/17.4.4:
+ /@commitlint/parse@17.4.4:
resolution: {integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==}
engines: {node: '>=v14'}
dependencies:
@@ -2299,7 +2743,7 @@ packages:
conventional-commits-parser: 3.2.4
dev: true
- /@commitlint/read/17.5.1:
+ /@commitlint/read@17.5.1:
resolution: {integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==}
engines: {node: '>=v14'}
dependencies:
@@ -2310,7 +2754,7 @@ packages:
minimist: 1.2.8
dev: true
- /@commitlint/resolve-extends/17.4.4:
+ /@commitlint/resolve-extends@17.4.4:
resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==}
engines: {node: '>=v14'}
dependencies:
@@ -2322,7 +2766,7 @@ packages:
resolve-global: 1.0.0
dev: true
- /@commitlint/rules/17.4.4:
+ /@commitlint/rules@17.4.4:
resolution: {integrity: sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==}
engines: {node: '>=v14'}
dependencies:
@@ -2333,32 +2777,32 @@ packages:
execa: 5.1.1
dev: true
- /@commitlint/to-lines/17.4.0:
+ /@commitlint/to-lines@17.4.0:
resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/top-level/17.4.0:
+ /@commitlint/top-level@17.4.0:
resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==}
engines: {node: '>=v14'}
dependencies:
find-up: 5.0.0
dev: true
- /@commitlint/types/17.4.4:
+ /@commitlint/types@17.4.4:
resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==}
engines: {node: '>=v14'}
dependencies:
chalk: 4.1.2
dev: true
- /@cspotcode/source-map-support/0.8.1:
+ /@cspotcode/source-map-support@0.8.1:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/trace-mapping': 0.3.9
- /@csstools/css-parser-algorithms/2.1.0_5vzy4lghjvuzkedkkk4tqwjftm:
+ /@csstools/css-parser-algorithms@2.1.0(@csstools/css-tokenizer@2.1.0):
resolution: {integrity: sha512-KP8TicdXpUyeB1NMlbHud/1l39xvLGvqNFWMpG4qC6H1zs9SadGUHe5SO92n/659sDW9aGDvm9AMru0DZkN1Bw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2367,23 +2811,23 @@ packages:
'@csstools/css-tokenizer': 2.1.0
dev: true
- /@csstools/css-tokenizer/2.1.0:
+ /@csstools/css-tokenizer@2.1.0:
resolution: {integrity: sha512-dtqFyoJBHUxGi9zPZdpCKP1xk8tq6KPHJ/NY4qWXiYo6IcSGwzk3L8x2XzZbbyOyBs9xQARoGveU2AsgLj6D2A==}
engines: {node: ^14 || ^16 || >=18}
dev: true
- /@csstools/media-query-list-parser/2.0.2_eu5cdbcexitnvbdq5yia3g22um:
+ /@csstools/media-query-list-parser@2.0.2(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0):
resolution: {integrity: sha512-8V6JD8Av1HttuClYr1ZBu0LRVe5Nnz4qrv8RppO8mobsX/USBHZy5JQOXYIlpOVhl46nzkx3X5cfH6CqUghjrQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
'@csstools/css-parser-algorithms': ^2.0.0
'@csstools/css-tokenizer': ^2.0.0
dependencies:
- '@csstools/css-parser-algorithms': 2.1.0_5vzy4lghjvuzkedkkk4tqwjftm
+ '@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
dev: true
- /@csstools/selector-specificity/2.2.0_laljekdltgzr3kfi7r4exvsr5a:
+ /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.11):
resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2392,7 +2836,26 @@ packages:
postcss-selector-parser: 6.0.11
dev: true
- /@didtools/cacao/1.2.0:
+ /@did-core/data-model@0.1.1-unstable.15:
+ resolution: {integrity: sha512-l7gxLxegcXW7389G+j6o+S24lS8uasmJx5txWpW3QadNvOawKwvWn8bV59SdHSK806xNzIZaCLKmXKxebs8yAQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ factory.ts: 0.5.2
+ dev: false
+
+ /@did-core/did-ld-json@0.1.1-unstable.15:
+ resolution: {integrity: sha512-p2jKRxSU+eJJqd+ewCklYp/XZ6ysISk8VU2/kANCoB/WwUy/kVgw2rUNScRDXw2utr9Qj36P8EZTYi4aj7vRCQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@transmute/did-context': 0.6.1-unstable.37
+ jsonld-checker: 0.1.8
+ transitivePeerDependencies:
+ - domexception
+ - encoding
+ - web-streams-polyfill
+ dev: false
+
+ /@didtools/cacao@1.2.0:
resolution: {integrity: sha512-y0nMgV8DL0jgHUq0uhjMqrW9p79PopQnugLWx02tss+iR0ahON2cfal20+eFx2p3kXtvaL8U+iByrjmyuokj+A==}
engines: {node: '>=14.14'}
dependencies:
@@ -2403,7 +2866,7 @@ packages:
uint8arrays: 4.0.3
dev: false
- /@didtools/cacao/2.0.0:
+ /@didtools/cacao@2.0.0:
resolution: {integrity: sha512-FpJA/oLA/kahxIUBTLO1MLLiv6BHdUVoyXg80l6umCQytUytnnGvwmmQZa6GucQZkW0jN0FA953H8ELbNrBD0A==}
engines: {node: '>=14.14'}
dependencies:
@@ -2414,7 +2877,7 @@ packages:
uint8arrays: 4.0.3
dev: false
- /@didtools/pkh-ethereum/0.0.1:
+ /@didtools/pkh-ethereum@0.0.1:
resolution: {integrity: sha512-2hDt1f60WXUNWMVS9S9b0pmXl78ivkVxZJHeyBUkbz7O7To1rHvlgvJ0gFJ3sKVemI1llpClzwd3PEjZfGwiUw==}
engines: {node: '>=14.14'}
dependencies:
@@ -2424,7 +2887,7 @@ packages:
caip: 1.1.0
dev: false
- /@didtools/pkh-ethereum/0.0.2:
+ /@didtools/pkh-ethereum@0.0.2:
resolution: {integrity: sha512-ka+iwlvBCVQqO3btZ1wssAm0VmG25nqZkD1rSV5IRT8LNAvne2cjKzt/hMutK9PULMD/yJRifwFupgfu7JI9Cg==}
engines: {node: '>=14.14'}
dependencies:
@@ -2434,7 +2897,7 @@ packages:
caip: 1.1.0
dev: false
- /@didtools/pkh-ethereum/0.1.0:
+ /@didtools/pkh-ethereum@0.1.0:
resolution: {integrity: sha512-Abmc6uvWU8zkOrQbPUAsRtTW293vhx+rzd+/bbduTLrRGEqZ3niakQkxMqvQKZ6/9w+n0IjQVXSHE5vzc5cAeg==}
engines: {node: '>=14.14'}
dependencies:
@@ -2444,7 +2907,7 @@ packages:
caip: 1.1.0
dev: false
- /@didtools/pkh-solana/0.1.0:
+ /@didtools/pkh-solana@0.1.0:
resolution: {integrity: sha512-/0pWsM/TCdHjYZMy4yNcQav2SNj+3W/6RmMebUxdFDKVZFss3ULXIJD0+qsrMFpVNZw3sW/xjFs3He+/fl4HvA==}
engines: {node: '>=14.14'}
dependencies:
@@ -2455,7 +2918,7 @@ packages:
uint8arrays: 4.0.3
dev: false
- /@didtools/pkh-stacks/0.1.0:
+ /@didtools/pkh-stacks@0.1.0:
resolution: {integrity: sha512-dEgyHleiIa2afibchNqs07tSqddFS6pX9D5BNxbWH0NAr+FisVCA4nUXajcbd9TUbSuplClfQ4EXjjJAGqlgeg==}
engines: {node: '>=14.14'}
dependencies:
@@ -2470,7 +2933,7 @@ packages:
- encoding
dev: false
- /@didtools/pkh-tezos/0.2.1:
+ /@didtools/pkh-tezos@0.2.1:
resolution: {integrity: sha512-QKf73frCwcxpY8qZkLqt7EP2eGieltRW5GU/xmMPfgrNLYQrfFRYjF8Rmp9wf16cBuRjCRD0WuxQ8rV/++dseg==}
engines: {node: '>=14.14'}
dependencies:
@@ -2483,34 +2946,34 @@ packages:
uint8arrays: 4.0.3
dev: false
- /@digitalbazaar/http-client/1.2.0:
+ /@digitalbazaar/http-client@1.2.0:
resolution: {integrity: sha512-W9KQQ5pUJcaR0I4c2HPJC0a7kRbZApIorZgPnEDwMBgj16iQzutGLrCXYaZOmxqVLVNqqlQ4aUJh+HBQZy4W6Q==}
engines: {node: '>=10.0.0'}
dependencies:
esm: 3.2.25
ky: 0.25.1
- ky-universal: 0.8.2_ky@0.25.1
+ ky-universal: 0.8.2(ky@0.25.1)
transitivePeerDependencies:
- domexception
- web-streams-polyfill
dev: false
- /@digitalbazaar/security-context/1.0.0:
+ /@digitalbazaar/security-context@1.0.0:
resolution: {integrity: sha512-mlj+UmodxTAdMCHGxnGVTRLHcSLyiEOVRiz3J6yiRliJWyrgeXs34wlWjBorDIEMDIjK2JwZrDuFEKO9bS5nKQ==}
dev: false
- /@digitalcredentials/base58-universal/1.0.1:
+ /@digitalcredentials/base58-universal@1.0.1:
resolution: {integrity: sha512-1xKdJnfITMvrF/sCgwBx2C4p7qcNAARyIvrAOZGqIHmBaT/hAenpC8bf44qVY+UIMuCYP23kqpIfJQebQDThDQ==}
engines: {node: '>=12'}
dev: false
- /@digitalcredentials/ed25519-signature-2020/3.0.2:
+ /@digitalcredentials/ed25519-signature-2020@3.0.2(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-R8IrR21Dh+75CYriQov3nVHKaOVusbxfk9gyi6eCAwLHKn6fllUt+2LQfuUrL7Ts/sGIJqQcev7YvkX9GvyYRA==}
engines: {node: '>=14'}
dependencies:
'@digitalcredentials/base58-universal': 1.0.1
'@digitalcredentials/ed25519-verification-key-2020': 3.2.2
- '@digitalcredentials/jsonld-signatures': 9.3.1
+ '@digitalcredentials/jsonld-signatures': 9.3.1(expo@48.0.10)(react-native@0.71.6)
ed25519-signature-2018-context: 1.1.0
ed25519-signature-2020-context: 1.1.0
transitivePeerDependencies:
@@ -2520,7 +2983,7 @@ packages:
- web-streams-polyfill
dev: false
- /@digitalcredentials/ed25519-verification-key-2020/3.2.2:
+ /@digitalcredentials/ed25519-verification-key-2020@3.2.2:
resolution: {integrity: sha512-ZfxNFZlA379MZpf+gV2tUYyiZ15eGVgjtCQLWlyu3frWxsumUgv++o0OJlMnrDsWGwzFMRrsXcosd5+752rLOA==}
engines: {node: '>=14'}
dependencies:
@@ -2530,7 +2993,7 @@ packages:
crypto-ld: 6.0.0
dev: false
- /@digitalcredentials/ed25519-verification-key-2020/4.0.0:
+ /@digitalcredentials/ed25519-verification-key-2020@4.0.0:
resolution: {integrity: sha512-GrfITgp1guFbExZckj2q6LOxxm08PFSScr0lBYtDRezJa6CTpA9XQ8yXSSXE3LvpEi5/2uOMFxxIfKAtL1J2ww==}
engines: {node: '>=18'}
dependencies:
@@ -2539,25 +3002,25 @@ packages:
base-x: 4.0.0
dev: false
- /@digitalcredentials/http-client/1.2.2:
+ /@digitalcredentials/http-client@1.2.2:
resolution: {integrity: sha512-YOwaE+vUDSwiDhZT0BbXSWVg+bvp1HA1eg/gEc8OCwCOj9Bn9FRQdu8P9Y/fnYqyFCioDwwTRzGxgJLl50baEg==}
engines: {node: '>=12.0.0'}
dependencies:
ky: 0.25.1
- ky-universal: 0.8.2_ky@0.25.1
+ ky-universal: 0.8.2(ky@0.25.1)
transitivePeerDependencies:
- domexception
- web-streams-polyfill
dev: false
- /@digitalcredentials/jsonld-signatures/9.3.1:
+ /@digitalcredentials/jsonld-signatures@9.3.1(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-YMh1e1GpTeHDqq2a2Kd+pLcHsMiPeKyE2Zs17NSwqckij7UMRVDQ54S5VQhHvoXZ1mlkpVaI2xtj5M5N6rzylw==}
engines: {node: '>=12'}
dependencies:
'@digitalbazaar/security-context': 1.0.0
- '@digitalcredentials/jsonld': 5.2.1
+ '@digitalcredentials/jsonld': 5.2.1(expo@48.0.10)(react-native@0.71.6)
fast-text-encoding: 1.0.6
- isomorphic-webcrypto: 2.3.8
+ isomorphic-webcrypto: 2.3.8(expo@48.0.10)(react-native@0.71.6)
serialize-error: 8.1.0
transitivePeerDependencies:
- domexception
@@ -2566,12 +3029,12 @@ packages:
- web-streams-polyfill
dev: false
- /@digitalcredentials/jsonld/5.2.1:
+ /@digitalcredentials/jsonld@5.2.1(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-pDiO1liw8xs+J/43qnMZsxyz0VOWOb7Q2yUlBt/tyjq6SlT9xPo+3716tJPbjGPnou2lQRw3H5/I++z+6oQ07w==}
engines: {node: '>=12'}
dependencies:
'@digitalcredentials/http-client': 1.2.2
- '@digitalcredentials/rdf-canonize': 1.0.0
+ '@digitalcredentials/rdf-canonize': 1.0.0(expo@48.0.10)(react-native@0.71.6)
canonicalize: 1.0.8
lru-cache: 6.0.0
transitivePeerDependencies:
@@ -2581,28 +3044,28 @@ packages:
- web-streams-polyfill
dev: false
- /@digitalcredentials/keypair/1.0.5:
+ /@digitalcredentials/keypair@1.0.5:
resolution: {integrity: sha512-g0QvhJMTSFCoUkEvSeggwVTJa2jFkQXjf/mpTn9sePkz+5OouMEDfXUWL61juTaxK5JWPEFc0PKlolXzHaHHHQ==}
engines: {node: '>=16.0'}
dev: false
- /@digitalcredentials/rdf-canonize/1.0.0:
+ /@digitalcredentials/rdf-canonize@1.0.0(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-z8St0Ex2doecsExCFK1uI4gJC+a5EqYYu1xpRH1pKmqSS9l/nxfuVxexNFyaeEum4dUdg1EetIC2rTwLIFhPRA==}
engines: {node: '>=12'}
dependencies:
fast-text-encoding: 1.0.6
- isomorphic-webcrypto: 2.3.8
+ isomorphic-webcrypto: 2.3.8(expo@48.0.10)(react-native@0.71.6)
transitivePeerDependencies:
- expo
- react-native
dev: false
- /@digitalcredentials/vc/5.0.0:
+ /@digitalcredentials/vc@5.0.0(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-87ARRxlAdIuUPArbMYJ8vUY7QqkIvJGFrBwfTH1PcB8Wz1E/M4q3oc/WLrDyJNg4o/irVVB5gkA9iIntTYSpoA==}
engines: {node: '>=12'}
dependencies:
- '@digitalcredentials/jsonld': 5.2.1
- '@digitalcredentials/jsonld-signatures': 9.3.1
+ '@digitalcredentials/jsonld': 5.2.1(expo@48.0.10)(react-native@0.71.6)
+ '@digitalcredentials/jsonld-signatures': 9.3.1(expo@48.0.10)(react-native@0.71.6)
credentials-context: 2.0.0
transitivePeerDependencies:
- domexception
@@ -2611,15 +3074,15 @@ packages:
- web-streams-polyfill
dev: false
- /@discoveryjs/json-ext/0.5.7:
+ /@discoveryjs/json-ext@0.5.7:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- /@docsearch/css/3.3.3:
+ /@docsearch/css@3.3.3:
resolution: {integrity: sha512-6SCwI7P8ao+se1TUsdZ7B4XzL+gqeQZnBc+2EONZlcVa0dVrk0NjETxozFKgMv0eEGH8QzP1fkN+A1rH61l4eg==}
dev: false
- /@docsearch/react/3.3.3_4qaawyptjkcgzqorucvhm3koke:
+ /@docsearch/react@3.3.3(@algolia/client-search@4.16.0)(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-pLa0cxnl+G0FuIDuYlW+EBK6Rw2jwLw9B1RHIeS4N4s2VhsfJ/wzeCi3CWcs5yVfxLd5ZK50t//TMA5e79YT7Q==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
@@ -2634,117 +3097,17 @@ packages:
optional: true
dependencies:
'@algolia/autocomplete-core': 1.7.4
- '@algolia/autocomplete-preset-algolia': 1.7.4_algoliasearch@4.16.0
+ '@algolia/autocomplete-preset-algolia': 1.7.4(@algolia/client-search@4.16.0)(algoliasearch@4.16.0)
'@docsearch/css': 3.3.3
'@types/react': 18.0.30
algoliasearch: 4.16.0
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@algolia/client-search'
dev: false
- /@docusaurus/core/2.3.1_3wwfkccewafcpmaink4pglvvei:
- resolution: {integrity: sha512-0Jd4jtizqnRAr7svWaBbbrCCN8mzBNd2xFLoT/IM7bGfFie5y58oz97KzXliwiLY3zWjqMXjQcuP1a5VgCv2JA==}
- engines: {node: '>=16.14'}
- hasBin: true
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/generator': 7.21.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
- '@babel/runtime': 7.21.0
- '@babel/runtime-corejs3': 7.21.0
- '@babel/traverse': 7.21.3
- '@docusaurus/cssnano-preset': 2.3.1
- '@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_pmmuy6rkkayfggimpcjiffhloy
- '@docusaurus/react-loadable': 5.5.2_react@18.2.0
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
- '@slorber/static-site-generator-webpack-plugin': 4.0.7
- '@svgr/webpack': 6.5.1
- autoprefixer: 10.4.14_postcss@8.4.21
- babel-loader: 8.3.0_qtovpurzjlo3biun26ymnwui7i
- babel-plugin-dynamic-import-node: 2.3.3
- boxen: 6.2.1
- chalk: 4.1.2
- chokidar: 3.5.3
- clean-css: 5.3.2
- cli-table3: 0.6.3
- combine-promises: 1.1.0
- commander: 5.1.0
- copy-webpack-plugin: 11.0.0_webpack@5.76.3
- core-js: 3.29.1
- css-loader: 6.7.3_webpack@5.76.3
- css-minimizer-webpack-plugin: 4.2.2_6xivdjm2sml3syouufpdefilzi
- cssnano: 5.1.15_postcss@8.4.21
- del: 6.1.1
- detect-port: 1.5.1
- escape-html: 1.0.3
- eta: 2.0.1
- file-loader: 6.2.0_webpack@5.76.3
- fs-extra: 10.1.0
- html-minifier-terser: 6.1.0
- html-tags: 3.2.0
- html-webpack-plugin: 5.5.0_webpack@5.76.3
- import-fresh: 3.3.0
- leven: 3.1.0
- lodash: 4.17.21
- mini-css-extract-plugin: 2.7.5_webpack@5.76.3
- postcss: 8.4.21
- postcss-loader: 7.1.0_twwyhqqim6liv4fz2ggv7g4m5a
- prompts: 2.4.2
- react: 18.2.0
- react-dev-utils: 12.0.1_wjtuovir4bgaqcifkekrkmozri
- react-dom: 18.2.0_react@18.2.0
- react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@18.2.0
- react-loadable-ssr-addon-v5-slorber: 1.0.1_r7pi7vlw6nkfjbr5epugnhqe3u
- react-router: 5.3.4_react@18.2.0
- react-router-config: 5.1.1_rlw3ibuvnpt5jvejeevjcf4ije
- react-router-dom: 5.3.4_react@18.2.0
- rtl-detect: 1.0.4
- semver: 7.3.8
- serve-handler: 6.1.5
- shelljs: 0.8.5
- terser-webpack-plugin: 5.3.7_webpack@5.76.3
- tslib: 2.5.0
- update-notifier: 5.1.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- wait-on: 6.0.1
- webpack: 5.76.3
- webpack-bundle-analyzer: 4.8.0
- webpack-dev-server: 4.13.1_webpack@5.76.3
- webpack-merge: 5.8.0
- webpackbar: 5.0.2_webpack@5.76.3
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@parcel/css'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- dev: false
-
- /@docusaurus/core/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/core@2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-0Jd4jtizqnRAr7svWaBbbrCCN8mzBNd2xFLoT/IM7bGfFie5y58oz97KzXliwiLY3zWjqMXjQcuP1a5VgCv2JA==}
engines: {node: '>=16.14'}
hasBin: true
@@ -2754,25 +3117,25 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/generator': 7.21.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@babel/runtime': 7.21.0
'@babel/runtime-corejs3': 7.21.0
'@babel/traverse': 7.21.3
'@docusaurus/cssnano-preset': 2.3.1
'@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/react-loadable': 5.5.2_react@18.2.0
- '@docusaurus/utils': 2.3.1
- '@docusaurus/utils-common': 2.3.1
- '@docusaurus/utils-validation': 2.3.1
+ '@docusaurus/mdx-loader': 2.3.1(@docusaurus/types@2.3.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-common': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.14_postcss@8.4.21
- babel-loader: 8.3.0_qtovpurzjlo3biun26ymnwui7i
+ autoprefixer: 10.4.14(postcss@8.4.21)
+ babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@5.76.3)
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
@@ -2781,50 +3144,50 @@ packages:
cli-table3: 0.6.3
combine-promises: 1.1.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0_webpack@5.76.3
+ copy-webpack-plugin: 11.0.0(webpack@5.76.3)
core-js: 3.29.1
- css-loader: 6.7.3_webpack@5.76.3
- css-minimizer-webpack-plugin: 4.2.2_6xivdjm2sml3syouufpdefilzi
- cssnano: 5.1.15_postcss@8.4.21
+ css-loader: 6.7.3(webpack@5.76.3)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.76.3)
+ cssnano: 5.1.15(postcss@8.4.21)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
eta: 2.0.1
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
html-minifier-terser: 6.1.0
html-tags: 3.2.0
- html-webpack-plugin: 5.5.0_webpack@5.76.3
+ html-webpack-plugin: 5.5.0(webpack@5.76.3)
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.5_webpack@5.76.3
+ mini-css-extract-plugin: 2.7.5(webpack@5.76.3)
postcss: 8.4.21
- postcss-loader: 7.1.0_twwyhqqim6liv4fz2ggv7g4m5a
+ postcss-loader: 7.1.0(postcss@8.4.21)(webpack@5.76.3)
prompts: 2.4.2
react: 18.2.0
- react-dev-utils: 12.0.1_wjtuovir4bgaqcifkekrkmozri
- react-dom: 18.2.0_react@18.2.0
- react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@18.2.0
- react-loadable-ssr-addon-v5-slorber: 1.0.1_r7pi7vlw6nkfjbr5epugnhqe3u
- react-router: 5.3.4_react@18.2.0
- react-router-config: 5.1.1_rlw3ibuvnpt5jvejeevjcf4ije
- react-router-dom: 5.3.4_react@18.2.0
+ react-dev-utils: 12.0.1(eslint@8.36.0)(typescript@4.9.5)(webpack@5.76.3)
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.76.3)
+ react-router: 5.3.4(react@18.2.0)
+ react-router-config: 5.1.1(react-router@5.3.4)(react@18.2.0)
+ react-router-dom: 5.3.4(react@18.2.0)
rtl-detect: 1.0.4
semver: 7.3.8
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.7_webpack@5.76.3
+ terser-webpack-plugin: 5.3.7(@swc/core@1.3.42)(webpack@5.76.3)
tslib: 2.5.0
update-notifier: 5.1.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
wait-on: 6.0.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
webpack-bundle-analyzer: 4.8.0
- webpack-dev-server: 4.13.1_webpack@5.76.3
+ webpack-dev-server: 4.13.1(webpack@5.76.3)
webpack-merge: 5.8.0
- webpackbar: 5.0.2_webpack@5.76.3
+ webpackbar: 5.0.2(webpack@5.76.3)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -2844,7 +3207,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/core/2.4.0_hz5g2e6k4knv2u3jp7py53gtby:
+ /@docusaurus/core@2.4.0(@docusaurus/types@2.4.0)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-J55/WEoIpRcLf3afO5POHPguVZosKmJEQWKBL+K7TAnfuE7i+Y0NPLlkKtnWCehagGsgTqClfQEexH/UT4kELA==}
engines: {node: '>=16.14'}
hasBin: true
@@ -2854,25 +3217,25 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/generator': 7.21.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@babel/runtime': 7.21.0
'@babel/runtime-corejs3': 7.21.0
'@babel/traverse': 7.21.3
'@docusaurus/cssnano-preset': 2.4.0
'@docusaurus/logger': 2.4.0
- '@docusaurus/mdx-loader': 2.4.0_wuolo4jlwz75wl2aegq7g4cyju
- '@docusaurus/react-loadable': 5.5.2_react@18.2.0
- '@docusaurus/utils': 2.4.0_@docusaurus+types@2.4.0
- '@docusaurus/utils-common': 2.4.0_@docusaurus+types@2.4.0
- '@docusaurus/utils-validation': 2.4.0_@docusaurus+types@2.4.0
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-common': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.14_postcss@8.4.21
- babel-loader: 8.3.0_qtovpurzjlo3biun26ymnwui7i
+ autoprefixer: 10.4.14(postcss@8.4.21)
+ babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@5.76.3)
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
@@ -2881,50 +3244,50 @@ packages:
cli-table3: 0.6.3
combine-promises: 1.1.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0_webpack@5.76.3
+ copy-webpack-plugin: 11.0.0(webpack@5.76.3)
core-js: 3.29.1
- css-loader: 6.7.3_webpack@5.76.3
- css-minimizer-webpack-plugin: 4.2.2_6xivdjm2sml3syouufpdefilzi
- cssnano: 5.1.15_postcss@8.4.21
+ css-loader: 6.7.3(webpack@5.76.3)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.76.3)
+ cssnano: 5.1.15(postcss@8.4.21)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
eta: 2.0.1
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
html-minifier-terser: 6.1.0
html-tags: 3.2.0
- html-webpack-plugin: 5.5.0_webpack@5.76.3
+ html-webpack-plugin: 5.5.0(webpack@5.76.3)
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.5_webpack@5.76.3
+ mini-css-extract-plugin: 2.7.5(webpack@5.76.3)
postcss: 8.4.21
- postcss-loader: 7.1.0_twwyhqqim6liv4fz2ggv7g4m5a
+ postcss-loader: 7.1.0(postcss@8.4.21)(webpack@5.76.3)
prompts: 2.4.2
react: 18.2.0
- react-dev-utils: 12.0.1_wjtuovir4bgaqcifkekrkmozri
- react-dom: 18.2.0_react@18.2.0
- react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@18.2.0
- react-loadable-ssr-addon-v5-slorber: 1.0.1_r7pi7vlw6nkfjbr5epugnhqe3u
- react-router: 5.3.4_react@18.2.0
- react-router-config: 5.1.1_rlw3ibuvnpt5jvejeevjcf4ije
- react-router-dom: 5.3.4_react@18.2.0
+ react-dev-utils: 12.0.1(eslint@8.36.0)(typescript@4.9.5)(webpack@5.76.3)
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.76.3)
+ react-router: 5.3.4(react@18.2.0)
+ react-router-config: 5.1.1(react-router@5.3.4)(react@18.2.0)
+ react-router-dom: 5.3.4(react@18.2.0)
rtl-detect: 1.0.4
semver: 7.3.8
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.7_webpack@5.76.3
+ terser-webpack-plugin: 5.3.7(@swc/core@1.3.42)(webpack@5.76.3)
tslib: 2.5.0
update-notifier: 5.1.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
wait-on: 6.0.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
webpack-bundle-analyzer: 4.8.0
- webpack-dev-server: 4.13.1_webpack@5.76.3
+ webpack-dev-server: 4.13.1(webpack@5.76.3)
webpack-merge: 5.8.0
- webpackbar: 5.0.2_webpack@5.76.3
+ webpackbar: 5.0.2(webpack@5.76.3)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -2944,27 +3307,27 @@ packages:
- webpack-cli
dev: true
- /@docusaurus/cssnano-preset/2.3.1:
+ /@docusaurus/cssnano-preset@2.3.1:
resolution: {integrity: sha512-7mIhAROES6CY1GmCjR4CZkUfjTL6B3u6rKHK0ChQl2d1IevYXq/k/vFgvOrJfcKxiObpMnE9+X6R2Wt1KqxC6w==}
engines: {node: '>=16.14'}
dependencies:
- cssnano-preset-advanced: 5.3.10_postcss@8.4.21
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.21)
postcss: 8.4.21
- postcss-sort-media-queries: 4.3.0_postcss@8.4.21
+ postcss-sort-media-queries: 4.3.0(postcss@8.4.21)
tslib: 2.5.0
dev: false
- /@docusaurus/cssnano-preset/2.4.0:
+ /@docusaurus/cssnano-preset@2.4.0:
resolution: {integrity: sha512-RmdiA3IpsLgZGXRzqnmTbGv43W4OD44PCo+6Q/aYjEM2V57vKCVqNzuafE94jv0z/PjHoXUrjr69SaRymBKYYw==}
engines: {node: '>=16.14'}
dependencies:
- cssnano-preset-advanced: 5.3.10_postcss@8.4.21
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.21)
postcss: 8.4.21
- postcss-sort-media-queries: 4.3.0_postcss@8.4.21
+ postcss-sort-media-queries: 4.3.0(postcss@8.4.21)
tslib: 2.5.0
dev: true
- /@docusaurus/logger/2.3.1:
+ /@docusaurus/logger@2.3.1:
resolution: {integrity: sha512-2lAV/olKKVr9qJhfHFCaqBIl8FgYjbUFwgUnX76+cULwQYss+42ZQ3grHGFvI0ocN2X55WcYe64ellQXz7suqg==}
engines: {node: '>=16.14'}
dependencies:
@@ -2972,7 +3335,7 @@ packages:
tslib: 2.5.0
dev: false
- /@docusaurus/logger/2.4.0:
+ /@docusaurus/logger@2.4.0:
resolution: {integrity: sha512-T8+qR4APN+MjcC9yL2Es+xPJ2923S9hpzDmMtdsOcUGLqpCGBbU1vp3AAqDwXtVgFkq+NsEk7sHdVsfLWR/AXw==}
engines: {node: '>=16.14'}
dependencies:
@@ -2980,42 +3343,7 @@ packages:
tslib: 2.5.0
dev: true
- /@docusaurus/mdx-loader/2.3.1_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-Gzga7OsxQRpt3392K9lv/bW4jGppdLFJh3luKRknCKSAaZrmVkOQv2gvCn8LAOSZ3uRg5No7AgYs/vpL8K94lA==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
- dependencies:
- '@babel/parser': 7.21.3
- '@babel/traverse': 7.21.3
- '@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1
- '@mdx-js/mdx': 1.6.22
- escape-html: 1.0.3
- file-loader: 6.2.0_webpack@5.76.3
- fs-extra: 10.1.0
- image-size: 1.0.2
- mdast-util-to-string: 2.0.0
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- remark-emoji: 2.2.0
- stringify-object: 3.3.0
- tslib: 2.5.0
- unified: 9.2.2
- unist-util-visit: 2.0.3
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
- dev: false
-
- /@docusaurus/mdx-loader/2.3.1_pmmuy6rkkayfggimpcjiffhloy:
+ /@docusaurus/mdx-loader@2.3.1(@docusaurus/types@2.3.1)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Gzga7OsxQRpt3392K9lv/bW4jGppdLFJh3luKRknCKSAaZrmVkOQv2gvCn8LAOSZ3uRg5No7AgYs/vpL8K94lA==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -3025,22 +3353,22 @@ packages:
'@babel/parser': 7.21.3
'@babel/traverse': 7.21.3
'@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
'@mdx-js/mdx': 1.6.22
escape-html: 1.0.3
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
image-size: 1.0.2
mdast-util-to-string: 2.0.0
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
remark-emoji: 2.2.0
stringify-object: 3.3.0
tslib: 2.5.0
unified: 9.2.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -3050,7 +3378,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/mdx-loader/2.4.0_wuolo4jlwz75wl2aegq7g4cyju:
+ /@docusaurus/mdx-loader@2.4.0(@docusaurus/types@2.4.0)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-GWoH4izZKOmFoC+gbI2/y8deH/xKLvzz/T5BsEexBye8EHQlwsA7FMrVa48N063bJBH4FUOiRRXxk5rq9cC36g==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -3060,22 +3388,22 @@ packages:
'@babel/parser': 7.21.3
'@babel/traverse': 7.21.3
'@docusaurus/logger': 2.4.0
- '@docusaurus/utils': 2.4.0_@docusaurus+types@2.4.0
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
'@mdx-js/mdx': 1.6.22
escape-html: 1.0.3
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
image-size: 1.0.2
mdast-util-to-string: 2.0.0
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
remark-emoji: 2.2.0
stringify-object: 3.3.0
tslib: 2.5.0
unified: 9.2.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -3085,22 +3413,22 @@ packages:
- webpack-cli
dev: true
- /@docusaurus/module-type-aliases/2.3.1_biqbaboplfbrettd7655fr4n2y:
+ /@docusaurus/module-type-aliases@2.3.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-6KkxfAVOJqIUynTRb/tphYCl+co3cP0PlHiMDbi+SzmYxMdgIrwYqH9yAnGSDoN6Jk2ZE/JY/Azs/8LPgKP48A==}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@docusaurus/react-loadable': 5.5.2_react@18.2.0
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
+ '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
'@types/history': 4.7.11
'@types/react': 18.0.30
'@types/react-router-config': 5.0.6
'@types/react-router-dom': 5.3.3
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -3108,22 +3436,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/module-type-aliases/2.4.0_biqbaboplfbrettd7655fr4n2y:
+ /@docusaurus/module-type-aliases@2.4.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-YEQO2D3UXs72qCn8Cr+RlycSQXVGN9iEUyuHwTuK4/uL/HFomB2FHSU0vSDM23oLd+X/KibQ3Ez6nGjQLqXcHg==}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@docusaurus/react-loadable': 5.5.2_react@18.2.0
- '@docusaurus/types': 2.4.0_biqbaboplfbrettd7655fr4n2y
+ '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
+ '@docusaurus/types': 2.4.0(react-dom@18.2.0)(react@18.2.0)
'@types/history': 4.7.11
'@types/react': 18.0.30
'@types/react-router-config': 5.0.6
'@types/react-router-dom': 5.3.3
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -3131,31 +3459,31 @@ packages:
- webpack-cli
dev: true
- /@docusaurus/plugin-content-blog/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-content-blog@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-f5LjqX+9WkiLyGiQ41x/KGSJ/9bOjSD8lsVhPvYeUYHCtYpuiDKfhZE07O4EqpHkBx4NQdtQDbp+aptgHSTuiw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_pmmuy6rkkayfggimpcjiffhloy
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/mdx-loader': 2.3.1(@docusaurus/types@2.3.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-common': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
cheerio: 1.0.0-rc.12
feed: 4.2.2
fs-extra: 10.1.0
lodash: 4.17.21
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
reading-time: 1.5.0
tslib: 2.5.0
unist-util-visit: 2.0.3
utility-types: 3.10.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -3174,20 +3502,20 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-content-docs@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-DxztTOBEruv7qFxqUtbsqXeNcHqcVEIEe+NQoI1oi2DBmKBhW/o0MIal8lt+9gvmpx3oYtlwmLOOGepxZgJGkw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_pmmuy6rkkayfggimpcjiffhloy
- '@docusaurus/module-type-aliases': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/mdx-loader': 2.3.1(@docusaurus/types@2.3.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
'@types/react-router-config': 5.0.6
combine-promises: 1.1.0
fs-extra: 10.1.0
@@ -3195,10 +3523,10 @@ packages:
js-yaml: 4.1.0
lodash: 4.17.21
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
utility-types: 3.10.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -3217,20 +3545,20 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs/2.4.0_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-content-docs@2.4.0(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-ic/Z/ZN5Rk/RQo+Io6rUGpToOtNbtPloMR2JcGwC1xT2riMu6zzfSwmBi9tHJgdXH6CB5jG+0dOZZO8QS5tmDg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.4.0_hz5g2e6k4knv2u3jp7py53gtby
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@docusaurus/logger': 2.4.0
- '@docusaurus/mdx-loader': 2.4.0_wuolo4jlwz75wl2aegq7g4cyju
- '@docusaurus/module-type-aliases': 2.4.0_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/types': 2.4.0_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils': 2.4.0_@docusaurus+types@2.4.0
- '@docusaurus/utils-validation': 2.4.0_@docusaurus+types@2.4.0
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 2.4.0(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 2.4.0(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
'@types/react-router-config': 5.0.6
combine-promises: 1.1.0
fs-extra: 10.1.0
@@ -3238,10 +3566,10 @@ packages:
js-yaml: 4.1.0
lodash: 4.17.21
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
utility-types: 3.10.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -3260,23 +3588,23 @@ packages:
- webpack-cli
dev: true
- /@docusaurus/plugin-content-pages/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-content-pages@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-E80UL6hvKm5VVw8Ka8YaVDtO6kWWDVUK4fffGvkpQ/AJQDOg99LwOXKujPoICC22nUFTsZ2Hp70XvpezCsFQaA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/mdx-loader': 2.3.1_pmmuy6rkkayfggimpcjiffhloy
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/mdx-loader': 2.3.1(@docusaurus/types@2.3.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
fs-extra: 10.1.0
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -3295,20 +3623,20 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug/2.3.1_pmy5ifktlm6diu77n76jexept4:
+ /@docusaurus/plugin-debug@2.3.1(@types/react@18.0.30)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-Ujpml1Ppg4geB/2hyu2diWnO49az9U2bxM9Shen7b6qVcyFisNJTkVG2ocvLC7wM1efTJcUhBO6zAku2vKJGMw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
fs-extra: 10.1.0
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-json-view: 1.21.3_4qaawyptjkcgzqorucvhm3koke
+ react-dom: 18.2.0(react@18.2.0)
+ react-json-view: 1.21.3(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -3330,18 +3658,18 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-google-analytics@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-OHip0GQxKOFU8n7gkt3TM4HOYTXPCFDjqKbMClDD3KaDnyTuMp/Zvd9HSr770lLEscgPWIvzhJByRAClqsUWiQ==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -3361,18 +3689,18 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-google-gtag@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-uXtDhfu4+Hm+oqWUySr3DNI5cWC/rmP6XJyAk83Heor3dFjZqDwCbkX8yWPywkRiWev3Dk/rVF8lEn0vIGVocA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -3392,18 +3720,18 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-tag-manager/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-google-tag-manager@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-Ww2BPEYSqg8q8tJdLYPFFM3FMDBCVhEM4UUqKzJaiRMx3NEoly3qqDRAoRDGdIhlC//Rf0iJV9cWAoq2m6k3sw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -3423,22 +3751,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/plugin-sitemap@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-8Yxile/v6QGYV9vgFiYL+8d2N4z4Er3pSHsrD08c5XI8bUXxTppMwjarDUTH/TRTfgAWotRbhJ6WZLyajLpozA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@docusaurus/logger': 2.3.1
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-common': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
fs-extra: 10.1.0
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
sitemap: 7.1.1
tslib: 2.5.0
transitivePeerDependencies:
@@ -3459,28 +3787,28 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic/2.3.1_pmy5ifktlm6diu77n76jexept4:
+ /@docusaurus/preset-classic@2.3.1(@algolia/client-search@4.16.0)(@types/react@18.0.30)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-OQ5W0AHyfdUk0IldwJ3BlnZ1EqoJuu2L2BMhqLbqwNWdkmzmSUvlFLH1Pe7CZSQgB2YUUC/DnmjbPKk/qQD0lQ==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/plugin-content-blog': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-content-docs': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-content-pages': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-debug': 2.3.1_pmy5ifktlm6diu77n76jexept4
- '@docusaurus/plugin-google-analytics': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-google-gtag': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-google-tag-manager': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-sitemap': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/theme-classic': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/theme-common': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/theme-search-algolia': 2.3.1_c3ygxbpfyepou2o557cts4iwoa
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-blog': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-docs': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-pages': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-debug': 2.3.1(@types/react@18.0.30)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-google-analytics': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-google-gtag': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-google-tag-manager': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-sitemap': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/theme-classic': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/theme-common': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/theme-search-algolia': 2.3.1(@algolia/client-search@4.16.0)(@docusaurus/types@2.3.1)(@types/react@18.0.30)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@algolia/client-search'
- '@parcel/css'
@@ -3502,7 +3830,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/react-loadable/5.5.2_react@18.2.0:
+ /@docusaurus/react-loadable@5.5.2(react@18.2.0):
resolution: {integrity: sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==}
peerDependencies:
react: '*'
@@ -3511,37 +3839,37 @@ packages:
prop-types: 15.8.1
react: 18.2.0
- /@docusaurus/theme-classic/2.3.1_gpdukexrhjgu66opmh7iixboiu:
+ /@docusaurus/theme-classic@2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-SelSIDvyttb7ZYHj8vEUhqykhAqfOPKk+uP0z85jH72IMC58e7O8DIlcAeBv+CWsLbNIl9/Hcg71X0jazuxJug==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
- '@docusaurus/mdx-loader': 2.3.1_pmmuy6rkkayfggimpcjiffhloy
- '@docusaurus/module-type-aliases': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/plugin-content-blog': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-content-docs': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-content-pages': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/theme-common': 2.3.1_3wwfkccewafcpmaink4pglvvei
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/mdx-loader': 2.3.1(@docusaurus/types@2.3.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/plugin-content-blog': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-docs': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-pages': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/theme-common': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@docusaurus/theme-translations': 2.3.1
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
- '@mdx-js/react': 1.6.22_react@18.2.0
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-common': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
+ '@mdx-js/react': 1.6.22(react@18.2.0)
clsx: 1.2.1
copy-text-to-clipboard: 3.1.0
infima: 0.2.0-alpha.42
lodash: 4.17.21
nprogress: 0.2.0
postcss: 8.4.21
- prism-react-renderer: 1.3.5_react@18.2.0
+ prism-react-renderer: 1.3.5(react@18.2.0)
prismjs: 1.29.0
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-router-dom: 5.3.4_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-router-dom: 5.3.4(react@18.2.0)
rtlcss: 3.5.0
tslib: 2.5.0
utility-types: 3.10.0
@@ -3563,29 +3891,29 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-common/2.3.1_3wwfkccewafcpmaink4pglvvei:
+ /@docusaurus/theme-common@2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-RYmYl2OR2biO+yhmW1aS5FyEvnrItPINa+0U2dMxcHpah8reSCjQ9eJGRmAgkZFchV1+aIQzXOI1K7LCW38O0g==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/mdx-loader': 2.3.1_pmmuy6rkkayfggimpcjiffhloy
- '@docusaurus/module-type-aliases': 2.3.1_biqbaboplfbrettd7655fr4n2y
- '@docusaurus/plugin-content-blog': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-content-docs': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/plugin-content-pages': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/mdx-loader': 2.3.1(@docusaurus/types@2.3.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 2.3.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/plugin-content-blog': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-docs': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-pages': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
'@types/history': 4.7.11
'@types/react': 18.0.30
'@types/react-router-config': 5.0.6
clsx: 1.2.1
parse-numeric-range: 1.3.0
- prism-react-renderer: 1.3.5_react@18.2.0
+ prism-react-renderer: 1.3.5(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
- use-sync-external-store: 1.2.0_react@18.2.0
+ use-sync-external-store: 1.2.0(react@18.2.0)
utility-types: 3.10.0
transitivePeerDependencies:
- '@docusaurus/types'
@@ -3606,29 +3934,29 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia/2.3.1_c3ygxbpfyepou2o557cts4iwoa:
+ /@docusaurus/theme-search-algolia@2.3.1(@algolia/client-search@4.16.0)(@docusaurus/types@2.3.1)(@types/react@18.0.30)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
resolution: {integrity: sha512-JdHaRqRuH1X++g5fEMLnq7OtULSGQdrs9AbhcWRQ428ZB8/HOiaN6mj3hzHvcD3DFgu7koIVtWPQnvnN7iwzHA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docsearch/react': 3.3.3_4qaawyptjkcgzqorucvhm3koke
- '@docusaurus/core': 2.3.1_3wwfkccewafcpmaink4pglvvei
+ '@docsearch/react': 3.3.3(@algolia/client-search@4.16.0)(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/core': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@docusaurus/logger': 2.3.1
- '@docusaurus/plugin-content-docs': 2.3.1_gpdukexrhjgu66opmh7iixboiu
- '@docusaurus/theme-common': 2.3.1_3wwfkccewafcpmaink4pglvvei
+ '@docusaurus/plugin-content-docs': 2.3.1(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/theme-common': 2.3.1(@docusaurus/types@2.3.1)(eslint@8.36.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
'@docusaurus/theme-translations': 2.3.1
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
+ '@docusaurus/utils-validation': 2.3.1(@docusaurus/types@2.3.1)
algoliasearch: 4.16.0
- algoliasearch-helper: 3.12.0_algoliasearch@4.16.0
+ algoliasearch-helper: 3.12.0(algoliasearch@4.16.0)
clsx: 1.2.1
eta: 2.0.1
fs-extra: 10.1.0
lodash: 4.17.21
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
tslib: 2.5.0
utility-types: 3.10.0
transitivePeerDependencies:
@@ -3652,7 +3980,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-translations/2.3.1:
+ /@docusaurus/theme-translations@2.3.1:
resolution: {integrity: sha512-BsBZzAewJabVhoGG1Ij2u4pMS3MPW6gZ6sS4pc+Y7czevRpzxoFNJXRtQDVGe7mOpv/MmRmqg4owDK+lcOTCVQ==}
engines: {node: '>=16.14'}
dependencies:
@@ -3660,7 +3988,7 @@ packages:
tslib: 2.5.0
dev: false
- /@docusaurus/types/2.3.1_biqbaboplfbrettd7655fr4n2y:
+ /@docusaurus/types@2.3.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-PREbIRhTaNNY042qmfSE372Jb7djZt+oVTZkoqHJ8eff8vOIc2zqqDqBVc5BhOfpZGPTrE078yy/torUEZy08A==}
peerDependencies:
react: ^16.8.4 || ^17.0.0
@@ -3671,10 +3999,10 @@ packages:
commander: 5.1.0
joi: 17.9.1
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
utility-types: 3.10.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@swc/core'
@@ -3683,7 +4011,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/types/2.4.0_biqbaboplfbrettd7655fr4n2y:
+ /@docusaurus/types@2.4.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-xaBXr+KIPDkIaef06c+i2HeTqVNixB7yFut5fBXPGI2f1rrmEV2vLMznNGsFwvZ5XmA3Quuefd4OGRkdo97Dhw==}
peerDependencies:
react: ^16.8.4 || ^17.0.0
@@ -3694,10 +4022,10 @@ packages:
commander: 5.1.0
joi: 17.9.1
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
utility-types: 3.10.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@swc/core'
@@ -3706,19 +4034,7 @@ packages:
- webpack-cli
dev: true
- /@docusaurus/utils-common/2.3.1:
- resolution: {integrity: sha512-pVlRpXkdNcxmKNxAaB1ya2hfCEvVsLDp2joeM6K6uv55Oc5nVIqgyYSgSNKZyMdw66NnvMfsu0RBylcwZQKo9A==}
- engines: {node: '>=16.14'}
- peerDependencies:
- '@docusaurus/types': '*'
- peerDependenciesMeta:
- '@docusaurus/types':
- optional: true
- dependencies:
- tslib: 2.5.0
- dev: false
-
- /@docusaurus/utils-common/2.3.1_@docusaurus+types@2.3.1:
+ /@docusaurus/utils-common@2.3.1(@docusaurus/types@2.3.1):
resolution: {integrity: sha512-pVlRpXkdNcxmKNxAaB1ya2hfCEvVsLDp2joeM6K6uv55Oc5nVIqgyYSgSNKZyMdw66NnvMfsu0RBylcwZQKo9A==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -3727,11 +4043,11 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
tslib: 2.5.0
dev: false
- /@docusaurus/utils-common/2.4.0_@docusaurus+types@2.4.0:
+ /@docusaurus/utils-common@2.4.0(@docusaurus/types@2.4.0):
resolution: {integrity: sha512-zIMf10xuKxddYfLg5cS19x44zud/E9I7lj3+0bv8UIs0aahpErfNrGhijEfJpAfikhQ8tL3m35nH3hJ3sOG82A==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -3740,34 +4056,16 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/types': 2.4.0_biqbaboplfbrettd7655fr4n2y
+ '@docusaurus/types': 2.4.0(react-dom@18.2.0)(react@18.2.0)
tslib: 2.5.0
dev: true
- /@docusaurus/utils-validation/2.3.1:
- resolution: {integrity: sha512-7n0208IG3k1HVTByMHlZoIDjjOFC8sbViHVXJx0r3Q+3Ezrx+VQ1RZ/zjNn6lT+QBCRCXlnlaoJ8ug4HIVgQ3w==}
- engines: {node: '>=16.14'}
- dependencies:
- '@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1
- joi: 17.9.1
- js-yaml: 4.1.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
- dev: false
-
- /@docusaurus/utils-validation/2.3.1_@docusaurus+types@2.3.1:
+ /@docusaurus/utils-validation@2.3.1(@docusaurus/types@2.3.1):
resolution: {integrity: sha512-7n0208IG3k1HVTByMHlZoIDjjOFC8sbViHVXJx0r3Q+3Ezrx+VQ1RZ/zjNn6lT+QBCRCXlnlaoJ8ug4HIVgQ3w==}
engines: {node: '>=16.14'}
dependencies:
'@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/utils': 2.3.1(@docusaurus/types@2.3.1)
joi: 17.9.1
js-yaml: 4.1.0
tslib: 2.5.0
@@ -3780,12 +4078,12 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils-validation/2.4.0_@docusaurus+types@2.4.0:
+ /@docusaurus/utils-validation@2.4.0(@docusaurus/types@2.4.0):
resolution: {integrity: sha512-IrBsBbbAp6y7mZdJx4S4pIA7dUyWSA0GNosPk6ZJ0fX3uYIEQgcQSGIgTeSC+8xPEx3c16o03en1jSDpgQgz/w==}
engines: {node: '>=16.14'}
dependencies:
'@docusaurus/logger': 2.4.0
- '@docusaurus/utils': 2.4.0_@docusaurus+types@2.4.0
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
joi: 17.9.1
js-yaml: 4.1.0
tslib: 2.5.0
@@ -3798,7 +4096,7 @@ packages:
- webpack-cli
dev: true
- /@docusaurus/utils/2.3.1:
+ /@docusaurus/utils@2.3.1(@docusaurus/types@2.3.1):
resolution: {integrity: sha512-9WcQROCV0MmrpOQDXDGhtGMd52DHpSFbKLfkyaYumzbTstrbA5pPOtiGtxK1nqUHkiIv8UwexS54p0Vod2I1lg==}
engines: {node: '>=16.14'}
peerDependencies:
@@ -3808,9 +4106,10 @@ packages:
optional: true
dependencies:
'@docusaurus/logger': 2.3.1
+ '@docusaurus/types': 2.3.1(react-dom@18.2.0)(react@18.2.0)
'@svgr/webpack': 6.5.1
escape-string-regexp: 4.0.0
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
github-slugger: 1.5.0
globby: 11.1.0
@@ -3821,8 +4120,8 @@ packages:
resolve-pathname: 3.0.0
shelljs: 0.8.5
tslib: 2.5.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -3831,8 +4130,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils/2.3.1_@docusaurus+types@2.3.1:
- resolution: {integrity: sha512-9WcQROCV0MmrpOQDXDGhtGMd52DHpSFbKLfkyaYumzbTstrbA5pPOtiGtxK1nqUHkiIv8UwexS54p0Vod2I1lg==}
+ /@docusaurus/utils@2.4.0(@docusaurus/types@2.4.0):
+ resolution: {integrity: sha512-89hLYkvtRX92j+C+ERYTuSUK6nF9bGM32QThcHPg2EDDHVw6FzYQXmX6/p+pU5SDyyx5nBlE4qXR92RxCAOqfg==}
engines: {node: '>=16.14'}
peerDependencies:
'@docusaurus/types': '*'
@@ -3840,11 +4139,11 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/logger': 2.3.1
- '@docusaurus/types': 2.3.1_biqbaboplfbrettd7655fr4n2y
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/types': 2.4.0(react-dom@18.2.0)(react@18.2.0)
'@svgr/webpack': 6.5.1
escape-string-regexp: 4.0.0
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
github-slugger: 1.5.0
globby: 11.1.0
@@ -3855,52 +4154,18 @@ packages:
resolve-pathname: 3.0.0
shelljs: 0.8.5
tslib: 2.5.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
- supports-color
- uglify-js
- webpack-cli
- dev: false
+ dev: true
- /@docusaurus/utils/2.4.0_@docusaurus+types@2.4.0:
- resolution: {integrity: sha512-89hLYkvtRX92j+C+ERYTuSUK6nF9bGM32QThcHPg2EDDHVw6FzYQXmX6/p+pU5SDyyx5nBlE4qXR92RxCAOqfg==}
- engines: {node: '>=16.14'}
- peerDependencies:
- '@docusaurus/types': '*'
- peerDependenciesMeta:
- '@docusaurus/types':
- optional: true
- dependencies:
- '@docusaurus/logger': 2.4.0
- '@docusaurus/types': 2.4.0_biqbaboplfbrettd7655fr4n2y
- '@svgr/webpack': 6.5.1
- escape-string-regexp: 4.0.0
- file-loader: 6.2.0_webpack@5.76.3
- fs-extra: 10.1.0
- github-slugger: 1.5.0
- globby: 11.1.0
- gray-matter: 4.0.3
- js-yaml: 4.1.0
- lodash: 4.17.21
- micromatch: 4.0.5
- resolve-pathname: 3.0.0
- shelljs: 0.8.5
- tslib: 2.5.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
- dev: true
-
- /@emotion/babel-plugin/11.10.6:
- resolution: {integrity: sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==}
+ /@emotion/babel-plugin@11.10.6:
+ resolution: {integrity: sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==}
dependencies:
'@babel/helper-module-imports': 7.18.6
'@babel/runtime': 7.21.0
@@ -3915,7 +4180,7 @@ packages:
stylis: 4.1.3
dev: false
- /@emotion/cache/11.10.5:
+ /@emotion/cache@11.10.5:
resolution: {integrity: sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==}
dependencies:
'@emotion/memoize': 0.8.0
@@ -3925,21 +4190,21 @@ packages:
stylis: 4.1.3
dev: false
- /@emotion/hash/0.9.0:
+ /@emotion/hash@0.9.0:
resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
dev: false
- /@emotion/is-prop-valid/1.2.0:
+ /@emotion/is-prop-valid@1.2.0:
resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
dependencies:
'@emotion/memoize': 0.8.0
dev: false
- /@emotion/memoize/0.8.0:
+ /@emotion/memoize@0.8.0:
resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
dev: false
- /@emotion/react/11.10.6_2thlp7g7odiqm7dwhn3rlhxaa4:
+ /@emotion/react@11.10.6(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==}
peerDependencies:
'@types/react': '*'
@@ -3952,7 +4217,7 @@ packages:
'@emotion/babel-plugin': 11.10.6
'@emotion/cache': 11.10.5
'@emotion/serialize': 1.1.1
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
'@emotion/utils': 1.2.0
'@emotion/weak-memoize': 0.3.0
'@types/react': 18.0.30
@@ -3960,7 +4225,7 @@ packages:
react: 18.2.0
dev: false
- /@emotion/serialize/1.1.1:
+ /@emotion/serialize@1.1.1:
resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==}
dependencies:
'@emotion/hash': 0.9.0
@@ -3970,11 +4235,11 @@ packages:
csstype: 3.1.1
dev: false
- /@emotion/sheet/1.2.1:
+ /@emotion/sheet@1.2.1:
resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==}
dev: false
- /@emotion/styled/11.10.6_cfcdhdr57xmqdzhb6aq4iia5f4:
+ /@emotion/styled@11.10.6(@emotion/react@11.10.6)(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
@@ -3987,19 +4252,19 @@ packages:
'@babel/runtime': 7.21.0
'@emotion/babel-plugin': 11.10.6
'@emotion/is-prop-valid': 1.2.0
- '@emotion/react': 11.10.6_2thlp7g7odiqm7dwhn3rlhxaa4
+ '@emotion/react': 11.10.6(@types/react@18.0.30)(react@18.2.0)
'@emotion/serialize': 1.1.1
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
'@emotion/utils': 1.2.0
'@types/react': 18.0.30
react: 18.2.0
dev: false
- /@emotion/unitless/0.8.0:
+ /@emotion/unitless@0.8.0:
resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==}
dev: false
- /@emotion/use-insertion-effect-with-fallbacks/1.0.0_react@18.2.0:
+ /@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@18.2.0):
resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==}
peerDependencies:
react: '>=16.8.0'
@@ -4007,33 +4272,33 @@ packages:
react: 18.2.0
dev: false
- /@emotion/utils/1.2.0:
+ /@emotion/utils@1.2.0:
resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==}
dev: false
- /@emotion/weak-memoize/0.3.0:
+ /@emotion/weak-memoize@0.3.0:
resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==}
dev: false
- /@esbuild/android-arm/0.17.14:
- resolution: {integrity: sha512-0CnlwnjDU8cks0yJLXfkaU/uoLyRf9VZJs4p1PskBr2AlAHeEsFEwJEo0of/Z3g+ilw5mpyDwThlxzNEIxOE4g==}
+ /@esbuild/android-arm64@0.17.14:
+ resolution: {integrity: sha512-eLOpPO1RvtsP71afiFTvS7tVFShJBCT0txiv/xjFBo5a7R7Gjw7X0IgIaFoLKhqXYAXhahoXm7qAmRXhY4guJg==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
- /@esbuild/android-arm64/0.17.14:
- resolution: {integrity: sha512-eLOpPO1RvtsP71afiFTvS7tVFShJBCT0txiv/xjFBo5a7R7Gjw7X0IgIaFoLKhqXYAXhahoXm7qAmRXhY4guJg==}
+ /@esbuild/android-arm@0.17.14:
+ resolution: {integrity: sha512-0CnlwnjDU8cks0yJLXfkaU/uoLyRf9VZJs4p1PskBr2AlAHeEsFEwJEo0of/Z3g+ilw5mpyDwThlxzNEIxOE4g==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
- /@esbuild/android-x64/0.17.14:
+ /@esbuild/android-x64@0.17.14:
resolution: {integrity: sha512-nrfQYWBfLGfSGLvRVlt6xi63B5IbfHm3tZCdu/82zuFPQ7zez4XjmRtF/wIRYbJQ/DsZrxJdEvYFE67avYXyng==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4042,7 +4307,7 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64/0.17.14:
+ /@esbuild/darwin-arm64@0.17.14:
resolution: {integrity: sha512-eoSjEuDsU1ROwgBH/c+fZzuSyJUVXQTOIN9xuLs9dE/9HbV/A5IqdXHU1p2OfIMwBwOYJ9SFVGGldxeRCUJFyw==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -4051,7 +4316,7 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64/0.17.14:
+ /@esbuild/darwin-x64@0.17.14:
resolution: {integrity: sha512-zN0U8RWfrDttdFNkHqFYZtOH8hdi22z0pFm0aIJPsNC4QQZv7je8DWCX5iA4Zx6tRhS0CCc0XC2m7wKsbWEo5g==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4060,7 +4325,7 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64/0.17.14:
+ /@esbuild/freebsd-arm64@0.17.14:
resolution: {integrity: sha512-z0VcD4ibeZWVQCW1O7szaLxGsx54gcCnajEJMdYoYjLiq4g1jrP2lMq6pk71dbS5+7op/L2Aod+erw+EUr28/A==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -4069,7 +4334,7 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64/0.17.14:
+ /@esbuild/freebsd-x64@0.17.14:
resolution: {integrity: sha512-hd9mPcxfTgJlolrPlcXkQk9BMwNBvNBsVaUe5eNUqXut6weDQH8whcNaKNF2RO8NbpT6GY8rHOK2A9y++s+ehw==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4078,25 +4343,25 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm/0.17.14:
- resolution: {integrity: sha512-BNTl+wSJ1omsH8s3TkQmIIIQHwvwJrU9u1ggb9XU2KTVM4TmthRIVyxSp2qxROJHhZuW/r8fht46/QE8hU8Qvg==}
+ /@esbuild/linux-arm64@0.17.14:
+ resolution: {integrity: sha512-FhAMNYOq3Iblcj9i+K0l1Fp/MHt+zBeRu/Qkf0LtrcFu3T45jcwB6A1iMsemQ42vR3GBhjNZJZTaCe3VFPbn9g==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@esbuild/linux-arm64/0.17.14:
- resolution: {integrity: sha512-FhAMNYOq3Iblcj9i+K0l1Fp/MHt+zBeRu/Qkf0LtrcFu3T45jcwB6A1iMsemQ42vR3GBhjNZJZTaCe3VFPbn9g==}
+ /@esbuild/linux-arm@0.17.14:
+ resolution: {integrity: sha512-BNTl+wSJ1omsH8s3TkQmIIIQHwvwJrU9u1ggb9XU2KTVM4TmthRIVyxSp2qxROJHhZuW/r8fht46/QE8hU8Qvg==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@esbuild/linux-ia32/0.17.14:
+ /@esbuild/linux-ia32@0.17.14:
resolution: {integrity: sha512-91OK/lQ5y2v7AsmnFT+0EyxdPTNhov3y2CWMdizyMfxSxRqHazXdzgBKtlmkU2KYIc+9ZK3Vwp2KyXogEATYxQ==}
engines: {node: '>=12'}
cpu: [ia32]
@@ -4105,7 +4370,7 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64/0.17.14:
+ /@esbuild/linux-loong64@0.17.14:
resolution: {integrity: sha512-vp15H+5NR6hubNgMluqqKza85HcGJgq7t6rMH7O3Y6ApiOWPkvW2AJfNojUQimfTp6OUrACUXfR4hmpcENXoMQ==}
engines: {node: '>=12'}
cpu: [loong64]
@@ -4114,7 +4379,7 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el/0.17.14:
+ /@esbuild/linux-mips64el@0.17.14:
resolution: {integrity: sha512-90TOdFV7N+fgi6c2+GO9ochEkmm9kBAKnuD5e08GQMgMINOdOFHuYLPQ91RYVrnWwQ5683sJKuLi9l4SsbJ7Hg==}
engines: {node: '>=12'}
cpu: [mips64el]
@@ -4123,7 +4388,7 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64/0.17.14:
+ /@esbuild/linux-ppc64@0.17.14:
resolution: {integrity: sha512-NnBGeoqKkTugpBOBZZoktQQ1Yqb7aHKmHxsw43NddPB2YWLAlpb7THZIzsRsTr0Xw3nqiPxbA1H31ZMOG+VVPQ==}
engines: {node: '>=12'}
cpu: [ppc64]
@@ -4132,7 +4397,7 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64/0.17.14:
+ /@esbuild/linux-riscv64@0.17.14:
resolution: {integrity: sha512-0qdlKScLXA8MGVy21JUKvMzCYWovctuP8KKqhtE5A6IVPq4onxXhSuhwDd2g5sRCzNDlDjitc5sX31BzDoL5Fw==}
engines: {node: '>=12'}
cpu: [riscv64]
@@ -4141,7 +4406,7 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x/0.17.14:
+ /@esbuild/linux-s390x@0.17.14:
resolution: {integrity: sha512-Hdm2Jo1yaaOro4v3+6/zJk6ygCqIZuSDJHdHaf8nVH/tfOuoEX5Riv03Ka15LmQBYJObUTNS1UdyoMk0WUn9Ww==}
engines: {node: '>=12'}
cpu: [s390x]
@@ -4150,7 +4415,7 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64/0.17.14:
+ /@esbuild/linux-x64@0.17.14:
resolution: {integrity: sha512-8KHF17OstlK4DuzeF/KmSgzrTWQrkWj5boluiiq7kvJCiQVzUrmSkaBvcLB2UgHpKENO2i6BthPkmUhNDaJsVw==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4159,7 +4424,7 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64/0.17.14:
+ /@esbuild/netbsd-x64@0.17.14:
resolution: {integrity: sha512-nVwpqvb3yyXztxIT2+VsxJhB5GCgzPdk1n0HHSnchRAcxqKO6ghXwHhJnr0j/B+5FSyEqSxF4q03rbA2fKXtUQ==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4168,7 +4433,7 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64/0.17.14:
+ /@esbuild/openbsd-x64@0.17.14:
resolution: {integrity: sha512-1RZ7uQQ9zcy/GSAJL1xPdN7NDdOOtNEGiJalg/MOzeakZeTrgH/DoCkbq7TaPDiPhWqnDF+4bnydxRqQD7il6g==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4177,7 +4442,7 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64/0.17.14:
+ /@esbuild/sunos-x64@0.17.14:
resolution: {integrity: sha512-nqMjDsFwv7vp7msrwWRysnM38Sd44PKmW8EzV01YzDBTcTWUpczQg6mGao9VLicXSgW/iookNK6AxeogNVNDZA==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4186,7 +4451,7 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64/0.17.14:
+ /@esbuild/win32-arm64@0.17.14:
resolution: {integrity: sha512-xrD0mccTKRBBIotrITV7WVQAwNJ5+1va6L0H9zN92v2yEdjfAN7864cUaZwJS7JPEs53bDTzKFbfqVlG2HhyKQ==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -4195,7 +4460,7 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32/0.17.14:
+ /@esbuild/win32-ia32@0.17.14:
resolution: {integrity: sha512-nXpkz9bbJrLLyUTYtRotSS3t5b+FOuljg8LgLdINWFs3FfqZMtbnBCZFUmBzQPyxqU87F8Av+3Nco/M3hEcu1w==}
engines: {node: '>=12'}
cpu: [ia32]
@@ -4204,7 +4469,7 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64/0.17.14:
+ /@esbuild/win32-x64@0.17.14:
resolution: {integrity: sha512-gPQmsi2DKTaEgG14hc3CHXHp62k8g6qr0Pas+I4lUxRMugGSATh/Bi8Dgusoz9IQ0IfdrvLpco6kujEIBoaogA==}
engines: {node: '>=12'}
cpu: [x64]
@@ -4213,7 +4478,7 @@ packages:
dev: true
optional: true
- /@eslint-community/eslint-utils/4.4.0_eslint@8.36.0:
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.36.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4222,11 +4487,11 @@ packages:
eslint: 8.36.0
eslint-visitor-keys: 3.4.0
- /@eslint-community/regexpp/4.4.1:
+ /@eslint-community/regexpp@4.4.1:
resolution: {integrity: sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- /@eslint/eslintrc/2.0.1:
+ /@eslint/eslintrc@2.0.1:
resolution: {integrity: sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -4242,36 +4507,50 @@ packages:
transitivePeerDependencies:
- supports-color
- /@eslint/js/8.36.0:
+ /@eslint/js@8.36.0:
resolution: {integrity: sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /@ethereumjs/common/2.5.0:
+ /@ethereumjs/common@2.5.0:
resolution: {integrity: sha512-DEHjW6e38o+JmB/NO3GZBpW4lpaiBpkFgXF6jLcJ6gETBYpEyaA5nTimsWBUJR3Vmtm/didUEbNjajskugZORg==}
dependencies:
crc-32: 1.2.2
ethereumjs-util: 7.1.5
dev: false
- /@ethereumjs/common/3.1.1:
+ /@ethereumjs/common@2.6.5:
+ resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==}
+ dependencies:
+ crc-32: 1.2.2
+ ethereumjs-util: 7.1.5
+ dev: false
+
+ /@ethereumjs/common@3.1.1:
resolution: {integrity: sha512-iEl4gQtcrj2udNhEizs04z7WA15ez1QoXL0XzaCyaNgwRyXezIg1DnfNeZUUpJnkrOF/0rYXyq2UFSLxt1NPQg==}
dependencies:
'@ethereumjs/util': 8.0.5
crc-32: 1.2.2
- /@ethereumjs/rlp/4.0.1:
+ /@ethereumjs/rlp@4.0.1:
resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==}
engines: {node: '>=14'}
hasBin: true
- /@ethereumjs/tx/3.3.2:
+ /@ethereumjs/tx@3.3.2:
resolution: {integrity: sha512-6AaJhwg4ucmwTvw/1qLaZUX5miWrwZ4nLOUsKyb/HtzS3BMw/CasKhdi1ims9mBKeK9sOJCH4qGKOBGyJCeeog==}
dependencies:
'@ethereumjs/common': 2.5.0
ethereumjs-util: 7.1.5
dev: false
- /@ethereumjs/tx/4.1.1:
+ /@ethereumjs/tx@3.5.2:
+ resolution: {integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==}
+ dependencies:
+ '@ethereumjs/common': 2.6.5
+ ethereumjs-util: 7.1.5
+ dev: false
+
+ /@ethereumjs/tx@4.1.1:
resolution: {integrity: sha512-QDj7nuROfoeyK83RObMA0XCZ+LUDdneNkSCIekO498uEKTY25FxI4Whduc/6j0wdd4IqpQvkq+/7vxSULjGIBQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -4290,7 +4569,7 @@ packages:
- bufferutil
- utf-8-validate
- /@ethereumjs/util/8.0.5:
+ /@ethereumjs/util@8.0.5:
resolution: {integrity: sha512-259rXKK3b3D8HRVdRmlOEi6QFvwxdt304hhrEAmpZhsj7ufXEOTIc9JRZPMnXatKjECokdLNBcDOFBeBSzAIaw==}
engines: {node: '>=14'}
dependencies:
@@ -4298,7 +4577,7 @@ packages:
'@ethereumjs/rlp': 4.0.1
ethereum-cryptography: 1.2.0
- /@ethersproject/abi/5.7.0:
+ /@ethersproject/abi@5.7.0:
resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==}
dependencies:
'@ethersproject/address': 5.7.0
@@ -4312,7 +4591,7 @@ packages:
'@ethersproject/strings': 5.7.0
dev: false
- /@ethersproject/abstract-provider/5.7.0:
+ /@ethersproject/abstract-provider@5.7.0:
resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==}
dependencies:
'@ethersproject/bignumber': 5.7.0
@@ -4323,7 +4602,7 @@ packages:
'@ethersproject/transactions': 5.7.0
'@ethersproject/web': 5.7.1
- /@ethersproject/abstract-signer/5.7.0:
+ /@ethersproject/abstract-signer@5.7.0:
resolution: {integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==}
dependencies:
'@ethersproject/abstract-provider': 5.7.0
@@ -4332,7 +4611,7 @@ packages:
'@ethersproject/logger': 5.7.0
'@ethersproject/properties': 5.7.0
- /@ethersproject/address/5.7.0:
+ /@ethersproject/address@5.7.0:
resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==}
dependencies:
'@ethersproject/bignumber': 5.7.0
@@ -4341,35 +4620,35 @@ packages:
'@ethersproject/logger': 5.7.0
'@ethersproject/rlp': 5.7.0
- /@ethersproject/base64/5.7.0:
+ /@ethersproject/base64@5.7.0:
resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==}
dependencies:
'@ethersproject/bytes': 5.7.0
- /@ethersproject/basex/5.7.0:
+ /@ethersproject/basex@5.7.0:
resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==}
dependencies:
'@ethersproject/bytes': 5.7.0
'@ethersproject/properties': 5.7.0
- /@ethersproject/bignumber/5.7.0:
+ /@ethersproject/bignumber@5.7.0:
resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==}
dependencies:
'@ethersproject/bytes': 5.7.0
'@ethersproject/logger': 5.7.0
bn.js: 5.2.1
- /@ethersproject/bytes/5.7.0:
+ /@ethersproject/bytes@5.7.0:
resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==}
dependencies:
'@ethersproject/logger': 5.7.0
- /@ethersproject/constants/5.7.0:
+ /@ethersproject/constants@5.7.0:
resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==}
dependencies:
'@ethersproject/bignumber': 5.7.0
- /@ethersproject/contracts/5.7.0:
+ /@ethersproject/contracts@5.7.0:
resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==}
dependencies:
'@ethersproject/abi': 5.7.0
@@ -4384,7 +4663,7 @@ packages:
'@ethersproject/transactions': 5.7.0
dev: false
- /@ethersproject/hash/5.7.0:
+ /@ethersproject/hash@5.7.0:
resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==}
dependencies:
'@ethersproject/abstract-signer': 5.7.0
@@ -4397,7 +4676,7 @@ packages:
'@ethersproject/properties': 5.7.0
'@ethersproject/strings': 5.7.0
- /@ethersproject/hdnode/5.7.0:
+ /@ethersproject/hdnode@5.7.0:
resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==}
dependencies:
'@ethersproject/abstract-signer': 5.7.0
@@ -4414,7 +4693,7 @@ packages:
'@ethersproject/wordlists': 5.7.0
dev: false
- /@ethersproject/json-wallets/5.7.0:
+ /@ethersproject/json-wallets@5.7.0:
resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==}
dependencies:
'@ethersproject/abstract-signer': 5.7.0
@@ -4432,33 +4711,33 @@ packages:
scrypt-js: 3.0.1
dev: false
- /@ethersproject/keccak256/5.7.0:
+ /@ethersproject/keccak256@5.7.0:
resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==}
dependencies:
'@ethersproject/bytes': 5.7.0
js-sha3: 0.8.0
- /@ethersproject/logger/5.7.0:
+ /@ethersproject/logger@5.7.0:
resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==}
- /@ethersproject/networks/5.7.1:
+ /@ethersproject/networks@5.7.1:
resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==}
dependencies:
'@ethersproject/logger': 5.7.0
- /@ethersproject/pbkdf2/5.7.0:
+ /@ethersproject/pbkdf2@5.7.0:
resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==}
dependencies:
'@ethersproject/bytes': 5.7.0
'@ethersproject/sha2': 5.7.0
dev: false
- /@ethersproject/properties/5.7.0:
+ /@ethersproject/properties@5.7.0:
resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==}
dependencies:
'@ethersproject/logger': 5.7.0
- /@ethersproject/providers/5.7.2:
+ /@ethersproject/providers@5.7.2:
resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==}
dependencies:
'@ethersproject/abstract-provider': 5.7.0
@@ -4485,26 +4764,26 @@ packages:
- bufferutil
- utf-8-validate
- /@ethersproject/random/5.7.0:
+ /@ethersproject/random@5.7.0:
resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==}
dependencies:
'@ethersproject/bytes': 5.7.0
'@ethersproject/logger': 5.7.0
- /@ethersproject/rlp/5.7.0:
+ /@ethersproject/rlp@5.7.0:
resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==}
dependencies:
'@ethersproject/bytes': 5.7.0
'@ethersproject/logger': 5.7.0
- /@ethersproject/sha2/5.7.0:
+ /@ethersproject/sha2@5.7.0:
resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==}
dependencies:
'@ethersproject/bytes': 5.7.0
'@ethersproject/logger': 5.7.0
hash.js: 1.1.7
- /@ethersproject/signing-key/5.7.0:
+ /@ethersproject/signing-key@5.7.0:
resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==}
dependencies:
'@ethersproject/bytes': 5.7.0
@@ -4514,7 +4793,7 @@ packages:
elliptic: 6.5.4
hash.js: 1.1.7
- /@ethersproject/solidity/5.7.0:
+ /@ethersproject/solidity@5.7.0:
resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==}
dependencies:
'@ethersproject/bignumber': 5.7.0
@@ -4525,14 +4804,14 @@ packages:
'@ethersproject/strings': 5.7.0
dev: false
- /@ethersproject/strings/5.7.0:
+ /@ethersproject/strings@5.7.0:
resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==}
dependencies:
'@ethersproject/bytes': 5.7.0
'@ethersproject/constants': 5.7.0
'@ethersproject/logger': 5.7.0
- /@ethersproject/transactions/5.7.0:
+ /@ethersproject/transactions@5.7.0:
resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==}
dependencies:
'@ethersproject/address': 5.7.0
@@ -4545,7 +4824,7 @@ packages:
'@ethersproject/rlp': 5.7.0
'@ethersproject/signing-key': 5.7.0
- /@ethersproject/units/5.7.0:
+ /@ethersproject/units@5.7.0:
resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==}
dependencies:
'@ethersproject/bignumber': 5.7.0
@@ -4553,7 +4832,7 @@ packages:
'@ethersproject/logger': 5.7.0
dev: false
- /@ethersproject/wallet/5.7.0:
+ /@ethersproject/wallet@5.7.0:
resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==}
dependencies:
'@ethersproject/abstract-provider': 5.7.0
@@ -4573,7 +4852,7 @@ packages:
'@ethersproject/wordlists': 5.7.0
dev: false
- /@ethersproject/web/5.7.1:
+ /@ethersproject/web@5.7.1:
resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==}
dependencies:
'@ethersproject/base64': 5.7.0
@@ -4582,7 +4861,7 @@ packages:
'@ethersproject/properties': 5.7.0
'@ethersproject/strings': 5.7.0
- /@ethersproject/wordlists/5.7.0:
+ /@ethersproject/wordlists@5.7.0:
resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==}
dependencies:
'@ethersproject/bytes': 5.7.0
@@ -4592,27 +4871,356 @@ packages:
'@ethersproject/strings': 5.7.0
dev: false
- /@formatjs/ecma402-abstract/1.11.4:
+ /@expo/bunyan@4.0.0:
+ resolution: {integrity: sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==}
+ engines: {'0': node >=0.10.0}
+ dependencies:
+ uuid: 8.3.2
+ optionalDependencies:
+ mv: 2.1.1
+ safe-json-stringify: 1.2.0
+ dev: false
+ optional: true
+
+ /@expo/cli@0.6.2(expo-modules-autolinking@1.1.2):
+ resolution: {integrity: sha512-uhmrXNemXTbCTKP/ycyJHOU/KLGdFwVCrWNBzz1VkwnmL8yJV5F3C18a83ybFFnUNfkGHeH5LtID7CSNbbTWKg==}
+ hasBin: true
+ dependencies:
+ '@babel/runtime': 7.21.0
+ '@expo/code-signing-certificates': 0.0.5
+ '@expo/config': 8.0.2
+ '@expo/config-plugins': 6.0.1
+ '@expo/dev-server': 0.2.3
+ '@expo/devcert': 1.1.0
+ '@expo/json-file': 8.2.37
+ '@expo/metro-config': 0.7.1
+ '@expo/osascript': 2.0.33
+ '@expo/package-manager': 1.0.1
+ '@expo/plist': 0.0.20
+ '@expo/prebuild-config': 6.0.0(expo-modules-autolinking@1.1.2)
+ '@expo/rudder-sdk-node': 1.1.1
+ '@expo/spawn-async': 1.5.0
+ '@expo/xcpretty': 4.2.2
+ '@urql/core': 2.3.6(graphql@15.8.0)
+ '@urql/exchange-retry': 0.3.0(graphql@15.8.0)
+ accepts: 1.3.8
+ arg: 4.1.0
+ better-opn: 3.0.2
+ bplist-parser: 0.3.2
+ cacache: 15.3.0
+ chalk: 4.1.2
+ ci-info: 3.8.0
+ debug: 4.3.4
+ env-editor: 0.4.2
+ form-data: 3.0.1
+ freeport-async: 2.0.0
+ fs-extra: 8.1.0
+ getenv: 1.0.0
+ graphql: 15.8.0
+ graphql-tag: 2.12.6(graphql@15.8.0)
+ https-proxy-agent: 5.0.1
+ internal-ip: 4.3.0
+ is-root: 2.1.0
+ js-yaml: 3.14.1
+ json-schema-deref-sync: 0.13.0
+ md5-file: 3.2.3
+ md5hex: 1.0.0
+ minipass: 3.1.6
+ node-fetch: 2.6.9
+ node-forge: 1.3.1
+ npm-package-arg: 7.0.0
+ ora: 3.4.0
+ pretty-bytes: 5.6.0
+ progress: 2.0.3
+ prompts: 2.4.2
+ qrcode-terminal: 0.11.0
+ requireg: 0.2.2
+ resolve-from: 5.0.0
+ semver: 6.3.0
+ send: 0.18.0
+ slugify: 1.6.6
+ structured-headers: 0.4.1
+ tar: 6.1.11
+ tempy: 0.7.1
+ terminal-link: 2.1.1
+ text-table: 0.2.0
+ url-join: 4.0.0
+ wrap-ansi: 7.0.0
+ transitivePeerDependencies:
+ - bluebird
+ - encoding
+ - expo-modules-autolinking
+ - supports-color
+ dev: false
+ optional: true
+
+ /@expo/code-signing-certificates@0.0.5:
+ resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==}
+ dependencies:
+ node-forge: 1.3.1
+ nullthrows: 1.1.1
+ dev: false
+ optional: true
+
+ /@expo/config-plugins@6.0.1:
+ resolution: {integrity: sha512-6mqZutxeibXFeqFfoZApFUEH2n1RxGXYMHCdJrDj4eXDBBFZ3aJ0XBoroZcHHHvfRieEsf54vNyJoWp7JZGj8g==}
+ dependencies:
+ '@expo/config-types': 48.0.0
+ '@expo/json-file': 8.2.37
+ '@expo/plist': 0.0.20
+ '@expo/sdk-runtime-versions': 1.0.0
+ '@react-native/normalize-color': 2.1.0
+ chalk: 4.1.2
+ debug: 4.3.4
+ find-up: 5.0.0
+ getenv: 1.0.0
+ glob: 7.1.6
+ resolve-from: 5.0.0
+ semver: 7.3.8
+ slash: 3.0.0
+ xcode: 3.0.1
+ xml2js: 0.4.23
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /@expo/config-types@48.0.0:
+ resolution: {integrity: sha512-DwyV4jTy/+cLzXGAo1xftS6mVlSiLIWZjl9DjTCLPFVgNYQxnh7htPilRv4rBhiNs7KaznWqKU70+4zQoKVT9A==}
+ dev: false
+ optional: true
+
+ /@expo/config@8.0.2:
+ resolution: {integrity: sha512-WubrzTNNdAXy1FU8TdyQ7D9YtDj2tN3fWXDq+C8In+nB7Qc08zwH9cVdaGZ+rBVmjFZBh5ACfObKq/m9cm4QQA==}
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ '@expo/config-plugins': 6.0.1
+ '@expo/config-types': 48.0.0
+ '@expo/json-file': 8.2.37
+ getenv: 1.0.0
+ glob: 7.1.6
+ require-from-string: 2.0.2
+ resolve-from: 5.0.0
+ semver: 7.3.2
+ slugify: 1.6.6
+ sucrase: 3.31.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /@expo/dev-server@0.2.3:
+ resolution: {integrity: sha512-9+6QGRdymj3dmTp1vUpROvWJ+Ezz6Qp9xHafAcaRHzw322pUCOiRKxTYqDqYYZ/72shrHPGQ2CiIXTnV1vM2tA==}
+ dependencies:
+ '@expo/bunyan': 4.0.0
+ '@expo/metro-config': 0.7.1
+ '@expo/osascript': 2.0.33
+ '@expo/spawn-async': 1.5.0
+ body-parser: 1.20.2
+ chalk: 4.1.2
+ connect: 3.7.0
+ fs-extra: 9.0.0
+ is-docker: 2.2.1
+ is-wsl: 2.2.0
+ node-fetch: 2.6.9
+ open: 8.4.2
+ resolve-from: 5.0.0
+ semver: 7.3.2
+ serialize-error: 6.0.0
+ temp-dir: 2.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: false
+ optional: true
+
+ /@expo/devcert@1.1.0:
+ resolution: {integrity: sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==}
+ dependencies:
+ application-config-path: 0.1.1
+ command-exists: 1.2.9
+ debug: 3.2.7
+ eol: 0.9.1
+ get-port: 3.2.0
+ glob: 7.2.3
+ lodash: 4.17.21
+ mkdirp: 0.5.6
+ password-prompt: 1.1.2
+ rimraf: 2.7.1
+ sudo-prompt: 8.2.5
+ tmp: 0.0.33
+ tslib: 2.5.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /@expo/image-utils@0.3.22:
+ resolution: {integrity: sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==}
+ dependencies:
+ '@expo/spawn-async': 1.5.0
+ chalk: 4.1.2
+ fs-extra: 9.0.0
+ getenv: 1.0.0
+ jimp-compact: 0.16.1
+ mime: 2.6.0
+ node-fetch: 2.6.9
+ parse-png: 2.1.0
+ resolve-from: 5.0.0
+ semver: 7.3.2
+ tempy: 0.3.0
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@expo/json-file@8.2.37:
+ resolution: {integrity: sha512-YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q==}
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ json5: 2.2.3
+ write-file-atomic: 2.4.3
+ dev: false
+ optional: true
+
+ /@expo/metro-config@0.7.1:
+ resolution: {integrity: sha512-vGWU62Zp5pRGw5IEHDNdqvsy62/hu/Na7bswePYVjoaItOjJY7+qilFeF0AAK+3V8qAM8fpltH3ByylKfWaA7A==}
+ dependencies:
+ '@expo/config': 8.0.2
+ chalk: 4.1.2
+ debug: 4.3.4
+ find-yarn-workspace-root: 2.0.0
+ getenv: 1.0.0
+ resolve-from: 5.0.0
+ sucrase: 3.31.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /@expo/osascript@2.0.33:
+ resolution: {integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@expo/spawn-async': 1.5.0
+ exec-async: 2.2.0
+ dev: false
+ optional: true
+
+ /@expo/package-manager@1.0.1:
+ resolution: {integrity: sha512-ue6NIIsNafa2bK7zUl7Y61YNtkPsg7sJcTOyQo/87Yqf6Q+2bOrvdw1xjviaFrMsTZcpOPVf+ZIEYtE0lw0k6A==}
+ dependencies:
+ '@expo/json-file': 8.2.37
+ '@expo/spawn-async': 1.5.0
+ ansi-regex: 5.0.1
+ chalk: 4.1.2
+ find-up: 5.0.0
+ find-yarn-workspace-root: 2.0.0
+ js-yaml: 3.14.1
+ micromatch: 4.0.5
+ npm-package-arg: 7.0.0
+ split: 1.0.1
+ sudo-prompt: 9.1.1
+ dev: false
+ optional: true
+
+ /@expo/plist@0.0.20:
+ resolution: {integrity: sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==}
+ dependencies:
+ '@xmldom/xmldom': 0.7.10
+ base64-js: 1.5.1
+ xmlbuilder: 14.0.0
+ dev: false
+ optional: true
+
+ /@expo/prebuild-config@6.0.0(expo-modules-autolinking@1.1.2):
+ resolution: {integrity: sha512-UW0QKAoRelsalVMhAG1tmegwS+2tbefvUi6/0QiKPlMLg8GFDQ5ZnzsSmuljD0SzT5yGg8oSpKYhnrXJ6pRmIQ==}
+ peerDependencies:
+ expo-modules-autolinking: '>=0.8.1'
+ dependencies:
+ '@expo/config': 8.0.2
+ '@expo/config-plugins': 6.0.1
+ '@expo/config-types': 48.0.0
+ '@expo/image-utils': 0.3.22
+ '@expo/json-file': 8.2.37
+ debug: 4.3.4
+ expo-modules-autolinking: 1.1.2
+ fs-extra: 9.1.0
+ resolve-from: 5.0.0
+ semver: 7.3.2
+ xml2js: 0.4.23
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: false
+ optional: true
+
+ /@expo/rudder-sdk-node@1.1.1:
+ resolution: {integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@expo/bunyan': 4.0.0
+ '@segment/loosely-validate-event': 2.0.0
+ fetch-retry: 4.1.1
+ md5: 2.3.0
+ node-fetch: 2.6.9
+ remove-trailing-slash: 0.1.1
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@expo/sdk-runtime-versions@1.0.0:
+ resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
+ dev: false
+ optional: true
+
+ /@expo/spawn-async@1.5.0:
+ resolution: {integrity: sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==}
+ engines: {node: '>=4'}
+ dependencies:
+ cross-spawn: 6.0.5
+ dev: false
+ optional: true
+
+ /@expo/vector-icons@13.0.0:
+ resolution: {integrity: sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA==}
+ dev: false
+ optional: true
+
+ /@expo/xcpretty@4.2.2:
+ resolution: {integrity: sha512-Lke/geldJqUV0Dfxg5/QIOugOzdqZ/rQ9yHKSgGbjZtG1uiSqWyFwWvXmrdd3/sIdX33eykGvIcf+OrvvcXVUw==}
+ hasBin: true
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ chalk: 4.1.2
+ find-up: 5.0.0
+ js-yaml: 4.1.0
+ dev: false
+ optional: true
+
+ /@formatjs/ecma402-abstract@1.11.4:
resolution: {integrity: sha512-EBikYFp2JCdIfGEb5G9dyCkTGDmC57KSHhRQOC3aYxoPWVZvfWCDjZwkGYHN7Lis/fmuWl906bnNTJifDQ3sXw==}
dependencies:
'@formatjs/intl-localematcher': 0.2.25
tslib: 2.5.0
dev: false
- /@formatjs/ecma402-abstract/1.14.3:
+ /@formatjs/ecma402-abstract@1.14.3:
resolution: {integrity: sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg==}
dependencies:
'@formatjs/intl-localematcher': 0.2.32
tslib: 2.5.0
dev: false
- /@formatjs/fast-memoize/1.2.1:
+ /@formatjs/fast-memoize@1.2.1:
resolution: {integrity: sha512-Rg0e76nomkz3vF9IPlKeV+Qynok0r7YZjL6syLz4/urSg0IbjPZCB/iYUMNsYA643gh4mgrX3T7KEIFIxJBQeg==}
dependencies:
tslib: 2.5.0
dev: false
- /@formatjs/icu-messageformat-parser/2.1.0:
+ /@formatjs/icu-messageformat-parser@2.1.0:
resolution: {integrity: sha512-Qxv/lmCN6hKpBSss2uQ8IROVnta2r9jd3ymUEIjm2UyIkUCHVcbUVRGL/KS/wv7876edvsPe+hjHVJ4z8YuVaw==}
dependencies:
'@formatjs/ecma402-abstract': 1.11.4
@@ -4620,31 +5228,36 @@ packages:
tslib: 2.5.0
dev: false
- /@formatjs/icu-skeleton-parser/1.3.6:
+ /@formatjs/icu-skeleton-parser@1.3.6:
resolution: {integrity: sha512-I96mOxvml/YLrwU2Txnd4klA7V8fRhb6JG/4hm3VMNmeJo1F03IpV2L3wWt7EweqNLES59SZ4d6hVOPCSf80Bg==}
dependencies:
'@formatjs/ecma402-abstract': 1.11.4
tslib: 2.5.0
dev: false
- /@formatjs/intl-localematcher/0.2.25:
+ /@formatjs/intl-localematcher@0.2.25:
resolution: {integrity: sha512-YmLcX70BxoSopLFdLr1Ds99NdlTI2oWoLbaUW2M406lxOIPzE1KQhRz2fPUkq34xVZQaihCoU29h0KK7An3bhA==}
dependencies:
tslib: 2.5.0
dev: false
- /@formatjs/intl-localematcher/0.2.32:
+ /@formatjs/intl-localematcher@0.2.32:
resolution: {integrity: sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==}
dependencies:
tslib: 2.5.0
dev: false
- /@glazed/constants/0.2.0:
+ /@gar/promisify@1.1.3:
+ resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
+ dev: false
+ optional: true
+
+ /@glazed/constants@0.2.0:
resolution: {integrity: sha512-+umVEKMhoH8o+M9sPBKhoo0vHJg9Tei5huM+vApB7IgffbVMD7O3luQsHbO/QIVtt8azQXUODnvg14a3IgYEWQ==}
engines: {node: '>=14.14'}
dev: false
- /@glazed/datamodel/0.3.1:
+ /@glazed/datamodel@0.3.1:
resolution: {integrity: sha512-UBd+z9yoHZkFDXKOE3VmnUPdkE0ERla+3jU8Q09jo4pCQPwzk/IvMlLNlRfIqUbGuoYkz8pZkdcuTB012yS/dw==}
engines: {node: '>=14.14'}
dependencies:
@@ -4653,7 +5266,7 @@ packages:
- encoding
dev: false
- /@glazed/did-datastore/0.3.2:
+ /@glazed/did-datastore@0.3.2:
resolution: {integrity: sha512-/sNasgFF1bvUFIc4KVIihPzD+Zo2kr/uJ8cZHU1U+rRVsCL1AeYcx/bF27OaaMvxfDlJ9nXMmiaPl5kwnyzviQ==}
engines: {node: '>=14.14'}
dependencies:
@@ -4665,7 +5278,7 @@ packages:
- encoding
dev: false
- /@glazed/did-session/0.1.1:
+ /@glazed/did-session@0.1.1:
resolution: {integrity: sha512-OyKt89Ek7aciehqtFR6GiGtheqpfwLaZq3R+mFJY9rc++qAmRPt+omKXnXd5I6O6a6XCwUfvEFrGqqzM13cO9g==}
engines: {node: '>=14.14'}
dependencies:
@@ -4676,7 +5289,7 @@ packages:
- encoding
dev: false
- /@glazed/tile-loader/0.2.1:
+ /@glazed/tile-loader@0.2.1:
resolution: {integrity: sha512-opICtDY1OIhIYJD8UVTO8BdNDMGD+Ui4MPA1JifpVeUWAO97PtgsXZ1irLLab5l5zDiakmajoiWZxv2PbVGTlA==}
engines: {node: '>=14.14'}
dependencies:
@@ -4686,15 +5299,24 @@ packages:
- encoding
dev: false
- /@hapi/hoek/9.3.0:
+ /@graphql-typed-document-node/core@3.2.0(graphql@15.8.0):
+ resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
+ peerDependencies:
+ graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ dependencies:
+ graphql: 15.8.0
+ dev: false
+ optional: true
+
+ /@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
- /@hapi/topo/5.1.0:
+ /@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
'@hapi/hoek': 9.3.0
- /@headlessui/react/1.7.13_biqbaboplfbrettd7655fr4n2y:
+ /@headlessui/react@1.7.13(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-9n+EQKRtD9266xIHXdY5MfiXPDfYwl7zBM7KOx2Ae3Gdgxy8QML1FkCMjq6AsOf0l6N9uvI4HcFtuFlenaldKg==}
engines: {node: '>=10'}
peerDependencies:
@@ -4703,10 +5325,10 @@ packages:
dependencies:
client-only: 0.0.1
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@heroicons/react/2.0.16_react@18.2.0:
+ /@heroicons/react@2.0.16(react@18.2.0):
resolution: {integrity: sha512-x89rFxH3SRdYaA+JCXwfe+RkE1SFTo9GcOkZettHer71Y3T7V+ogKmfw5CjTazgS3d0ClJ7p1NA+SP7VQLQcLw==}
peerDependencies:
react: '>= 16'
@@ -4714,7 +5336,7 @@ packages:
react: 18.2.0
dev: false
- /@humanwhocodes/config-array/0.11.8:
+ /@humanwhocodes/config-array@0.11.8:
resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
engines: {node: '>=10.10.0'}
dependencies:
@@ -4724,35 +5346,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /@humanwhocodes/module-importer/1.0.1:
+ /@humanwhocodes/module-importer@1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- /@humanwhocodes/object-schema/1.2.1:
+ /@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- /@ianvs/prettier-plugin-sort-imports/3.7.2:
- resolution: {integrity: sha512-bVckKToJM8XV2wTOG1VpeXrSmfAG49esVrikbxeFbY51RJdNke9AdMANJtGuACB59uo+pGlz0wBdWFrRzWyO1A==}
- peerDependencies:
- '@vue/compiler-sfc': '>=3.0.0'
- prettier: 2.x
- peerDependenciesMeta:
- '@vue/compiler-sfc':
- optional: true
- dependencies:
- '@babel/core': 7.21.3
- '@babel/generator': 7.21.3
- '@babel/parser': 7.21.3
- '@babel/traverse': 7.21.3
- '@babel/types': 7.21.3
- javascript-natural-sort: 0.7.1
- lodash.clone: 4.5.0
- lodash.isequal: 4.5.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@ianvs/prettier-plugin-sort-imports/3.7.2_prettier@2.8.7:
+ /@ianvs/prettier-plugin-sort-imports@3.7.2(prettier@2.8.7):
resolution: {integrity: sha512-bVckKToJM8XV2wTOG1VpeXrSmfAG49esVrikbxeFbY51RJdNke9AdMANJtGuACB59uo+pGlz0wBdWFrRzWyO1A==}
peerDependencies:
'@vue/compiler-sfc': '>=3.0.0'
@@ -4773,14 +5374,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /@ipld/dag-cbor/7.0.3:
+ /@ipld/dag-cbor@7.0.3:
resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==}
dependencies:
cborg: 1.10.1
multiformats: 9.9.0
dev: false
- /@ipld/dag-cbor/9.0.0:
+ /@ipld/dag-cbor@9.0.0:
resolution: {integrity: sha512-zdsiSiYDEOIDW7mmWOYWC9gukjXO+F8wqxz/LfN7iSwTfIyipC8+UQrCbPupFMRb/33XQTZk8yl3My8vUQBRoA==}
engines: {node: '>=16.0.0', npm: '>=7.0.0'}
dependencies:
@@ -4788,7 +5389,7 @@ packages:
multiformats: 11.0.2
dev: false
- /@istanbuljs/load-nyc-config/1.1.0:
+ /@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
dependencies:
@@ -4798,11 +5399,11 @@ packages:
js-yaml: 3.14.1
resolve-from: 5.0.0
- /@istanbuljs/schema/0.1.3:
+ /@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- /@jest/console/28.1.3:
+ /@jest/console@28.1.3:
resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4814,7 +5415,7 @@ packages:
slash: 3.0.0
dev: true
- /@jest/console/29.5.0:
+ /@jest/console@29.5.0:
resolution: {integrity: sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -4825,7 +5426,7 @@ packages:
jest-util: 29.5.0
slash: 3.0.0
- /@jest/core/29.5.0:
+ /@jest/core@29.5.0(ts-node@10.9.1):
resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -4846,7 +5447,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.5.0
- jest-config: 29.5.0_@types+node@18.15.10
+ jest-config: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
jest-haste-map: 29.5.0
jest-message-util: 29.5.0
jest-regex-util: 29.4.3
@@ -4865,57 +5466,23 @@ packages:
transitivePeerDependencies:
- supports-color
- ts-node
+
+ /@jest/create-cache-key-function@27.5.1:
+ resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@jest/types': 27.5.1
dev: true
- /@jest/core/29.5.0_ts-node@10.9.1:
- resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==}
+ /@jest/create-cache-key-function@29.5.0:
+ resolution: {integrity: sha512-LIDZyZgnZss7uikvBKBB/USWwG+GO8+GnwRWT+YkCGDGsqLQlhm9BC3z6+7+eMs1kUlvXQIWEzBR8Q2Pnvx6lg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
dependencies:
- '@jest/console': 29.5.0
- '@jest/reporters': 29.5.0
- '@jest/test-result': 29.5.0
- '@jest/transform': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.15.10
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- ci-info: 3.8.0
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-changed-files: 29.5.0
- jest-config: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
- jest-haste-map: 29.5.0
- jest-message-util: 29.5.0
- jest-regex-util: 29.4.3
- jest-resolve: 29.5.0
- jest-resolve-dependencies: 29.5.0
- jest-runner: 29.5.0
- jest-runtime: 29.5.0
- jest-snapshot: 29.5.0
- jest-util: 29.5.0
- jest-validate: 29.5.0
- jest-watcher: 29.5.0
- micromatch: 4.0.5
- pretty-format: 29.5.0
- slash: 3.0.0
- strip-ansi: 6.0.1
- transitivePeerDependencies:
- - supports-color
- - ts-node
-
- /@jest/create-cache-key-function/27.5.1:
- resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- dependencies:
- '@jest/types': 27.5.1
- dev: true
+ dev: false
+ optional: true
- /@jest/environment/28.1.3:
+ /@jest/environment@28.1.3:
resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4925,7 +5492,7 @@ packages:
jest-mock: 28.1.3
dev: true
- /@jest/environment/29.5.0:
+ /@jest/environment@29.5.0:
resolution: {integrity: sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -4934,20 +5501,20 @@ packages:
'@types/node': 18.15.10
jest-mock: 29.5.0
- /@jest/expect-utils/28.1.3:
+ /@jest/expect-utils@28.1.3:
resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
jest-get-type: 28.0.2
dev: true
- /@jest/expect-utils/29.5.0:
+ /@jest/expect-utils@29.5.0:
resolution: {integrity: sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
jest-get-type: 29.4.3
- /@jest/expect/28.1.3:
+ /@jest/expect@28.1.3:
resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4957,7 +5524,7 @@ packages:
- supports-color
dev: true
- /@jest/expect/29.5.0:
+ /@jest/expect@29.5.0:
resolution: {integrity: sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -4966,7 +5533,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/fake-timers/28.1.3:
+ /@jest/fake-timers@28.1.3:
resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4978,7 +5545,7 @@ packages:
jest-util: 28.1.3
dev: true
- /@jest/fake-timers/29.5.0:
+ /@jest/fake-timers@29.5.0:
resolution: {integrity: sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -4989,7 +5556,7 @@ packages:
jest-mock: 29.5.0
jest-util: 29.5.0
- /@jest/globals/28.1.3:
+ /@jest/globals@28.1.3:
resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5000,7 +5567,7 @@ packages:
- supports-color
dev: true
- /@jest/globals/29.5.0:
+ /@jest/globals@29.5.0:
resolution: {integrity: sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5011,7 +5578,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/reporters/28.1.1:
+ /@jest/reporters@28.1.1:
resolution: {integrity: sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -5049,7 +5616,7 @@ packages:
- supports-color
dev: true
- /@jest/reporters/29.5.0:
+ /@jest/reporters@29.5.0:
resolution: {integrity: sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -5085,20 +5652,20 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/schemas/28.1.3:
+ /@jest/schemas@28.1.3:
resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@sinclair/typebox': 0.24.51
dev: true
- /@jest/schemas/29.4.3:
+ /@jest/schemas@29.4.3:
resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@sinclair/typebox': 0.25.24
- /@jest/source-map/28.1.2:
+ /@jest/source-map@28.1.2:
resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5107,7 +5674,7 @@ packages:
graceful-fs: 4.2.11
dev: true
- /@jest/source-map/29.4.3:
+ /@jest/source-map@29.4.3:
resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5115,7 +5682,7 @@ packages:
callsites: 3.1.0
graceful-fs: 4.2.11
- /@jest/test-result/28.1.1:
+ /@jest/test-result@28.1.1:
resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5125,7 +5692,7 @@ packages:
collect-v8-coverage: 1.0.1
dev: true
- /@jest/test-result/28.1.3:
+ /@jest/test-result@28.1.3:
resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5135,7 +5702,7 @@ packages:
collect-v8-coverage: 1.0.1
dev: true
- /@jest/test-result/29.5.0:
+ /@jest/test-result@29.5.0:
resolution: {integrity: sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5144,7 +5711,7 @@ packages:
'@types/istanbul-lib-coverage': 2.0.4
collect-v8-coverage: 1.0.1
- /@jest/test-sequencer/28.1.3:
+ /@jest/test-sequencer@28.1.3:
resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5154,7 +5721,7 @@ packages:
slash: 3.0.0
dev: true
- /@jest/test-sequencer/29.5.0:
+ /@jest/test-sequencer@29.5.0:
resolution: {integrity: sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5163,7 +5730,7 @@ packages:
jest-haste-map: 29.5.0
slash: 3.0.0
- /@jest/transform/28.1.3:
+ /@jest/transform@28.1.3:
resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5186,7 +5753,7 @@ packages:
- supports-color
dev: true
- /@jest/transform/29.5.0:
+ /@jest/transform@29.5.0:
resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5208,7 +5775,19 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/types/27.5.1:
+ /@jest/types@26.6.2:
+ resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-reports': 3.0.1
+ '@types/node': 18.15.10
+ '@types/yargs': 15.0.15
+ chalk: 4.1.2
+ dev: false
+ optional: true
+
+ /@jest/types@27.5.1:
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -5217,9 +5796,8 @@ packages:
'@types/node': 18.15.10
'@types/yargs': 16.0.5
chalk: 4.1.2
- dev: true
- /@jest/types/28.1.3:
+ /@jest/types@28.1.3:
resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -5231,7 +5809,7 @@ packages:
chalk: 4.1.2
dev: true
- /@jest/types/29.5.0:
+ /@jest/types@29.5.0:
resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5242,14 +5820,14 @@ packages:
'@types/yargs': 17.0.24
chalk: 4.1.2
- /@jridgewell/gen-mapping/0.1.1:
+ /@jridgewell/gen-mapping@0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.14
- /@jridgewell/gen-mapping/0.3.2:
+ /@jridgewell/gen-mapping@0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -5257,46 +5835,46 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
'@jridgewell/trace-mapping': 0.3.17
- /@jridgewell/resolve-uri/3.1.0:
+ /@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map/0.3.2:
+ /@jridgewell/source-map@0.3.2:
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
dependencies:
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.17
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- /@jridgewell/trace-mapping/0.3.17:
+ /@jridgewell/trace-mapping@0.3.17:
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@jridgewell/trace-mapping/0.3.9:
+ /@jridgewell/trace-mapping@0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@leichtgewicht/ip-codec/2.0.4:
+ /@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
- /@mdx-js/mdx/1.6.22:
+ /@mdx-js/mdx@1.6.22:
resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
dependencies:
'@babel/core': 7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
+ '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
'@mdx-js/util': 1.6.22
- babel-plugin-apply-mdx-type-prop: 1.6.22_@babel+core@7.12.9
+ babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9)
babel-plugin-extract-import-names: 1.6.22
camelcase-css: 2.0.1
detab: 2.0.4
@@ -5314,7 +5892,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@mdx-js/react/1.6.22_react@18.2.0:
+ /@mdx-js/react@1.6.22(react@18.2.0):
resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
peerDependencies:
react: ^16.13.1 || ^17.0.0
@@ -5322,15 +5900,15 @@ packages:
react: 18.2.0
dev: false
- /@mdx-js/util/1.6.22:
+ /@mdx-js/util@1.6.22:
resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
- /@metamask/detect-provider/2.0.0:
+ /@metamask/detect-provider@2.0.0:
resolution: {integrity: sha512-sFpN+TX13E9fdBDh9lvQeZdJn4qYoRb/6QF2oZZK/Pn559IhCFacPMU1rMuqyXoFQF3JSJfii2l98B87QDPeCQ==}
engines: {node: '>=14.0.0'}
dev: false
- /@metamask/eth-sig-util/5.0.2:
+ /@metamask/eth-sig-util@5.0.2:
resolution: {integrity: sha512-RU6fG/H6/UlBol221uBkq5C7w3TwLK611nEZliO2u+kO0vHKGBXnIPlhI0tzKUigjhUeOd9mhCNbNvhh0LKt9Q==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -5342,7 +5920,7 @@ packages:
tweetnacl-util: 0.15.1
dev: false
- /@metamask/key-tree/6.2.1:
+ /@metamask/key-tree@6.2.1:
resolution: {integrity: sha512-5o8D9jsESNa8q3iqLwKXZ06vzRG08waK4kLMA8Tybyl3a1/n7B6WN0J5vaT2kAtxoOiD98pSJK0n+aeJAqvkuA==}
engines: {node: '>=16.0.0'}
dependencies:
@@ -5356,7 +5934,7 @@ packages:
- supports-color
dev: false
- /@metamask/object-multiplex/1.2.0:
+ /@metamask/object-multiplex@1.2.0:
resolution: {integrity: sha512-hksV602d3NWE2Q30Mf2Np1WfVKaGqfJRy9vpHAmelbaD0OkDt06/0KQkRR6UVYdMbTbkuEu8xN5JDUU80inGwQ==}
engines: {node: '>=12.0.0'}
dependencies:
@@ -5364,7 +5942,7 @@ packages:
once: 1.4.0
readable-stream: 2.3.8
- /@metamask/providers/10.2.1:
+ /@metamask/providers@10.2.1:
resolution: {integrity: sha512-p2TXw2a1Nb8czntDGfeIYQnk4LLVbd5vlcb3GY//lylYlKdSqp+uUTegCvxiFblRDOT68jsY8Ib1VEEzVUOolA==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -5381,17 +5959,17 @@ packages:
pump: 3.0.0
webextension-polyfill-ts: 0.25.0
- /@metamask/safe-event-emitter/2.0.0:
+ /@metamask/safe-event-emitter@2.0.0:
resolution: {integrity: sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==}
- /@metamask/scure-bip39/2.1.0:
+ /@metamask/scure-bip39@2.1.0:
resolution: {integrity: sha512-Ndwdnld0SI6YaftEUUVq20sdoWcWNXsJXxvQkbiY42FKmrA16U6WoSh9Eq+NpugpKKwK6f5uvaTDusjndiEDGQ==}
dependencies:
'@noble/hashes': 1.1.5
'@scure/base': 1.1.1
dev: false
- /@metamask/snaps-browserify-plugin/0.28.0:
+ /@metamask/snaps-browserify-plugin@0.28.0:
resolution: {integrity: sha512-iNkpLM/TYSimpgQvs6CoVKM6WJamWcIgHs2Y9pzJiwOJrvO18NJFNKm+X1dBWP2am58vQn2+GE1+/P5ZPJ24mA==}
engines: {node: '>=16.0.0'}
dependencies:
@@ -5404,23 +5982,23 @@ packages:
- utf-8-validate
dev: true
- /@metamask/snaps-cli/0.28.0:
+ /@metamask/snaps-cli@0.28.0:
resolution: {integrity: sha512-NFhRxa/o2cwpf4JdE91BqoIREMt+Aadb8aPkSddLjMYp4NS+GR+v8shElfqsXPTtns/GgBq3ao2fL2yWn2JrZw==}
engines: {node: '>=16.0.0'}
hasBin: true
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@metamask/snaps-browserify-plugin': 0.28.0
'@metamask/snaps-utils': 0.28.0
'@metamask/utils': 3.6.0
- babelify: 10.0.0_@babel+core@7.21.3
+ babelify: 10.0.0(@babel/core@7.21.3)
browserify: 17.0.0
chokidar: 3.5.3
is-url: 1.2.4
@@ -5436,7 +6014,7 @@ packages:
- utf-8-validate
dev: true
- /@metamask/snaps-registry/1.1.1:
+ /@metamask/snaps-registry@1.1.1:
resolution: {integrity: sha512-1x/AhCj0EdK0lvmyqmmxf9cHaXMWD+9R7h5GgBQ1rvTEC3PnmAzb/FjuF81yiZ5doOlzthSdnUP1rlWq79QgYA==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -5448,7 +6026,7 @@ packages:
- supports-color
- utf-8-validate
- /@metamask/snaps-types/0.28.0_rvr7xsi54kylxpxjwsjvbo3fce:
+ /@metamask/snaps-types@0.28.0(patch_hash=rvr7xsi54kylxpxjwsjvbo3fce):
resolution: {integrity: sha512-cWwkZCeRc4U4RyFqubVF4pjPlLSuPWV2Yr9tYHBftDSJdsOaOkp+h9dDnfrkLKU08S4ocrNdU2Si2T4Yfenw1g==}
engines: {node: '>=16.0.0'}
dependencies:
@@ -5463,7 +6041,7 @@ packages:
dev: false
patched: true
- /@metamask/snaps-ui/0.28.0:
+ /@metamask/snaps-ui@0.28.0:
resolution: {integrity: sha512-8xh+OJF2oX5DUJfvq7CU/aiG0Q9YoQ9AiwG/qK/gzuedToFqOClwuvjqF3+XOY2FGlJdVNVi+Td30iVUePTGbg==}
engines: {node: '>=16.0.0'}
dependencies:
@@ -5472,7 +6050,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@metamask/snaps-utils/0.28.0:
+ /@metamask/snaps-utils@0.28.0:
resolution: {integrity: sha512-/LDAKrujIY96gCQQ1AyVlnYey9f2XS/wZLGb98bbywqVECVcVLVxdJGlJGWG5kqoMO3spjzXlT1XEmTvP0Sq2Q==}
engines: {node: '>=16.0.0'}
dependencies:
@@ -5498,7 +6076,7 @@ packages:
- supports-color
- utf-8-validate
- /@metamask/snaps-webpack-plugin/0.28.0:
+ /@metamask/snaps-webpack-plugin@0.28.0:
resolution: {integrity: sha512-OoP2qnFBja046AVgKgBgA11qzhByZOayLSgJ3SALQq5sMzeWjJNB4F7OBtaFrt3P5aQkPmd0Qe0bXvkto5qVFg==}
engines: {node: '>=16.0.0'}
dependencies:
@@ -5512,7 +6090,7 @@ packages:
- utf-8-validate
dev: true
- /@metamask/utils/3.6.0:
+ /@metamask/utils@3.6.0:
resolution: {integrity: sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -5523,7 +6101,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@metamask/utils/5.0.0:
+ /@metamask/utils@5.0.0:
resolution: {integrity: sha512-bsy7YiGxMo3rvyYbZc33yfMIfX4vVENFcxKctvNjLwCMx9d0xbLPT1T8yiqobb4NkZbwlacYEGxnv3GkTePGig==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -5538,7 +6116,7 @@ packages:
- supports-color
- utf-8-validate
- /@mui/base/5.0.0-alpha.122_4qaawyptjkcgzqorucvhm3koke:
+ /@mui/base@5.0.0-alpha.122(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-IgZEFQyHa39J1+Q3tekVdhPuUm1fr3icddaNLmiAIeYTVXmR7KR5FhBAIL0P+4shlPq0liUPGlXryoTm0iCeFg==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5551,22 +6129,22 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
'@emotion/is-prop-valid': 1.2.0
- '@mui/types': 7.2.3_@types+react@18.0.30
- '@mui/utils': 5.11.13_react@18.2.0
+ '@mui/types': 7.2.3(@types/react@18.0.30)
+ '@mui/utils': 5.11.13(react@18.2.0)
'@popperjs/core': 2.11.7
'@types/react': 18.0.30
clsx: 1.2.1
prop-types: 15.8.1
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
react-is: 18.2.0
dev: false
- /@mui/core-downloads-tracker/5.11.14:
+ /@mui/core-downloads-tracker@5.11.14:
resolution: {integrity: sha512-rfc08z6+3Fif+Gopx2/qmk+MEQlwYeA+gOcSK048BHkTty/ol/boHuVeL2BNC/cf9OVRjJLYHtVb/DeW791LSQ==}
dev: false
- /@mui/icons-material/5.11.11_r2azkhsbcjpgr7h4skmoqqeh54:
+ /@mui/icons-material@5.11.11(@mui/material@5.11.14)(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-Eell3ADmQVE8HOpt/LZ3zIma8JSvPh3XgnhwZLT0k5HRqZcd6F/QDHc7xsWtgz09t+UEFvOYJXjtrwKmLdwwpw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5578,12 +6156,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.21.0
- '@mui/material': 5.11.14_quat5witkhq3gbgscvy3yo7r7a
+ '@mui/material': 5.11.14(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0)
'@types/react': 18.0.30
react: 18.2.0
dev: false
- /@mui/material/5.11.14_quat5witkhq3gbgscvy3yo7r7a:
+ /@mui/material@5.11.14(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-uoiUyybmo+M+nYARBygmbXgX6s/hH0NKD56LCAv9XvmdGVoXhEGjOvxI5/Bng6FS3NNybnA8V+rgZW1Z/9OJtA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5601,25 +6179,25 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.21.0
- '@emotion/react': 11.10.6_2thlp7g7odiqm7dwhn3rlhxaa4
- '@emotion/styled': 11.10.6_cfcdhdr57xmqdzhb6aq4iia5f4
- '@mui/base': 5.0.0-alpha.122_4qaawyptjkcgzqorucvhm3koke
+ '@emotion/react': 11.10.6(@types/react@18.0.30)(react@18.2.0)
+ '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.30)(react@18.2.0)
+ '@mui/base': 5.0.0-alpha.122(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0)
'@mui/core-downloads-tracker': 5.11.14
- '@mui/system': 5.11.14_42hzwjss4leimendqmlox2jjey
- '@mui/types': 7.2.3_@types+react@18.0.30
- '@mui/utils': 5.11.13_react@18.2.0
+ '@mui/system': 5.11.14(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.30)(react@18.2.0)
+ '@mui/types': 7.2.3(@types/react@18.0.30)
+ '@mui/utils': 5.11.13(react@18.2.0)
'@types/react': 18.0.30
'@types/react-transition-group': 4.4.5
clsx: 1.2.1
csstype: 3.1.1
prop-types: 15.8.1
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
react-is: 18.2.0
- react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y
+ react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
dev: false
- /@mui/private-theming/5.11.13_2thlp7g7odiqm7dwhn3rlhxaa4:
+ /@mui/private-theming@5.11.13(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-PJnYNKzW5LIx3R+Zsp6WZVPs6w5sEKJ7mgLNnUXuYB1zo5aX71FVLtV7geyPXRcaN2tsoRNK7h444ED0t7cIjA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5630,13 +6208,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.21.0
- '@mui/utils': 5.11.13_react@18.2.0
+ '@mui/utils': 5.11.13(react@18.2.0)
'@types/react': 18.0.30
prop-types: 15.8.1
react: 18.2.0
dev: false
- /@mui/styled-engine/5.11.11_xqp3pgpqjlfxxa3zxu4zoc4fba:
+ /@mui/styled-engine@5.11.11(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0):
resolution: {integrity: sha512-wV0UgW4lN5FkDBXefN8eTYeuE9sjyQdg5h94vtwZCUamGQEzmCOtir4AakgmbWMy0x8OLjdEUESn9wnf5J9MOg==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5651,14 +6229,14 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
'@emotion/cache': 11.10.5
- '@emotion/react': 11.10.6_2thlp7g7odiqm7dwhn3rlhxaa4
- '@emotion/styled': 11.10.6_cfcdhdr57xmqdzhb6aq4iia5f4
+ '@emotion/react': 11.10.6(@types/react@18.0.30)(react@18.2.0)
+ '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.30)(react@18.2.0)
csstype: 3.1.1
prop-types: 15.8.1
react: 18.2.0
dev: false
- /@mui/system/5.11.14_42hzwjss4leimendqmlox2jjey:
+ /@mui/system@5.11.14(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-/MBv5dUoijJNEKEGi5tppIszGN0o2uejmeISi5vl0CLcaQsI1cd+uBgK+JYUP1VWvI/MtkWRLVSWtF2FWhu5Nw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5675,12 +6253,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.21.0
- '@emotion/react': 11.10.6_2thlp7g7odiqm7dwhn3rlhxaa4
- '@emotion/styled': 11.10.6_cfcdhdr57xmqdzhb6aq4iia5f4
- '@mui/private-theming': 5.11.13_2thlp7g7odiqm7dwhn3rlhxaa4
- '@mui/styled-engine': 5.11.11_xqp3pgpqjlfxxa3zxu4zoc4fba
- '@mui/types': 7.2.3_@types+react@18.0.30
- '@mui/utils': 5.11.13_react@18.2.0
+ '@emotion/react': 11.10.6(@types/react@18.0.30)(react@18.2.0)
+ '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.30)(react@18.2.0)
+ '@mui/private-theming': 5.11.13(@types/react@18.0.30)(react@18.2.0)
+ '@mui/styled-engine': 5.11.11(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0)
+ '@mui/types': 7.2.3(@types/react@18.0.30)
+ '@mui/utils': 5.11.13(react@18.2.0)
'@types/react': 18.0.30
clsx: 1.2.1
csstype: 3.1.1
@@ -5688,7 +6266,7 @@ packages:
react: 18.2.0
dev: false
- /@mui/types/7.2.3_@types+react@18.0.30:
+ /@mui/types@7.2.3(@types/react@18.0.30):
resolution: {integrity: sha512-tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw==}
peerDependencies:
'@types/react': '*'
@@ -5699,7 +6277,7 @@ packages:
'@types/react': 18.0.30
dev: false
- /@mui/utils/5.11.13_react@18.2.0:
+ /@mui/utils@5.11.13(react@18.2.0):
resolution: {integrity: sha512-5ltA58MM9euOuUcnvwFJqpLdEugc9XFsRR8Gt4zZNb31XzMfSKJPR4eumulyhsOTK1rWf7K4D63NKFPfX0AxqA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5713,21 +6291,21 @@ packages:
react-is: 18.2.0
dev: false
- /@multiformats/base-x/4.0.1:
+ /@multiformats/base-x@4.0.1:
resolution: {integrity: sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw==}
dev: false
- /@next/env/13.2.4:
+ /@next/env@13.2.4:
resolution: {integrity: sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==}
dev: false
- /@next/eslint-plugin-next/13.2.4:
+ /@next/eslint-plugin-next@13.2.4:
resolution: {integrity: sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==}
dependencies:
glob: 7.1.7
dev: true
- /@next/swc-android-arm-eabi/13.2.4:
+ /@next/swc-android-arm-eabi@13.2.4:
resolution: {integrity: sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==}
engines: {node: '>= 10'}
cpu: [arm]
@@ -5736,7 +6314,7 @@ packages:
dev: false
optional: true
- /@next/swc-android-arm64/13.2.4:
+ /@next/swc-android-arm64@13.2.4:
resolution: {integrity: sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5745,7 +6323,7 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-arm64/13.2.4:
+ /@next/swc-darwin-arm64@13.2.4:
resolution: {integrity: sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5754,7 +6332,7 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-x64/13.2.4:
+ /@next/swc-darwin-x64@13.2.4:
resolution: {integrity: sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5763,7 +6341,7 @@ packages:
dev: false
optional: true
- /@next/swc-freebsd-x64/13.2.4:
+ /@next/swc-freebsd-x64@13.2.4:
resolution: {integrity: sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5772,7 +6350,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm-gnueabihf/13.2.4:
+ /@next/swc-linux-arm-gnueabihf@13.2.4:
resolution: {integrity: sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==}
engines: {node: '>= 10'}
cpu: [arm]
@@ -5781,7 +6359,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-gnu/13.2.4:
+ /@next/swc-linux-arm64-gnu@13.2.4:
resolution: {integrity: sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5790,7 +6368,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-musl/13.2.4:
+ /@next/swc-linux-arm64-musl@13.2.4:
resolution: {integrity: sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5799,7 +6377,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-gnu/13.2.4:
+ /@next/swc-linux-x64-gnu@13.2.4:
resolution: {integrity: sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5808,7 +6386,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-musl/13.2.4:
+ /@next/swc-linux-x64-musl@13.2.4:
resolution: {integrity: sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5817,7 +6395,7 @@ packages:
dev: false
optional: true
- /@next/swc-win32-arm64-msvc/13.2.4:
+ /@next/swc-win32-arm64-msvc@13.2.4:
resolution: {integrity: sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5826,7 +6404,7 @@ packages:
dev: false
optional: true
- /@next/swc-win32-ia32-msvc/13.2.4:
+ /@next/swc-win32-ia32-msvc@13.2.4:
resolution: {integrity: sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==}
engines: {node: '>= 10'}
cpu: [ia32]
@@ -5835,7 +6413,7 @@ packages:
dev: false
optional: true
- /@next/swc-win32-x64-msvc/13.2.4:
+ /@next/swc-win32-x64-msvc@13.2.4:
resolution: {integrity: sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5844,46 +6422,64 @@ packages:
dev: false
optional: true
- /@noble/ed25519/1.7.3:
+ /@noble/ed25519@1.7.3:
resolution: {integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==}
dev: false
- /@noble/hashes/1.1.2:
+ /@noble/hashes@1.1.2:
resolution: {integrity: sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==}
dev: false
- /@noble/hashes/1.1.5:
+ /@noble/hashes@1.1.5:
resolution: {integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==}
dev: false
- /@noble/hashes/1.2.0:
+ /@noble/hashes@1.2.0:
resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==}
- /@noble/hashes/1.3.0:
+ /@noble/hashes@1.3.0:
resolution: {integrity: sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==}
- /@noble/secp256k1/1.7.1:
+ /@noble/secp256k1@1.7.1:
resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==}
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- /@nrwl/cli/15.8.9:
+ /@npmcli/fs@1.1.1:
+ resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
+ dependencies:
+ '@gar/promisify': 1.1.3
+ semver: 7.3.8
+ dev: false
+ optional: true
+
+ /@npmcli/move-file@1.1.2:
+ resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
+ engines: {node: '>=10'}
+ deprecated: This functionality has been moved to @npmcli/fs
+ dependencies:
+ mkdirp: 1.0.4
+ rimraf: 3.0.2
+ dev: false
+ optional: true
+
+ /@nrwl/cli@15.8.9:
resolution: {integrity: sha512-b0lGAXMqyIXyJHCpVyqnm8hCFSRARDiWkSzE3R7dVLTuu0Z9vdnrNUctMipjlzZk10Ipd8iggsjrToMbDcL7dA==}
dependencies:
nx: 15.8.9
@@ -5893,12 +6489,12 @@ packages:
- debug
dev: true
- /@nrwl/devkit/15.8.9_nx@15.8.9+typescript@4.9.5:
+ /@nrwl/devkit@15.8.9(nx@15.8.9)(typescript@4.9.5):
resolution: {integrity: sha512-/AbdsBJjo4q0ZCLOGEPTcBTOQz/FZqKi9z/VlvUjwGJKwC5B58cb3F3lfiI7agahf3ODy7vrL5marjF5cOnlLQ==}
peerDependencies:
nx: '>= 14.1 <= 16'
dependencies:
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5)
ejs: 3.1.9
ignore: 5.2.4
nx: 15.8.9
@@ -5909,23 +6505,24 @@ packages:
- typescript
dev: true
- /@nrwl/jest/15.8.9_5gwwmacuen5ybkergoi52ligay:
+ /@nrwl/jest@15.8.9(@types/node@18.15.10)(eslint@8.36.0)(nx@15.8.9)(prettier@2.8.7)(ts-node@10.9.1)(typescript@4.9.5):
resolution: {integrity: sha512-xJDYZOmFqo1QExusRIKhB2EUloCJTfrGHmAcdW3UyGkDj5qadUlTSjitf9PKk4JOco5qdwqvgpttzQ+AH/3byQ==}
dependencies:
'@jest/reporters': 28.1.1
'@jest/test-result': 28.1.1
- '@nrwl/devkit': 15.8.9_nx@15.8.9+typescript@4.9.5
- '@nrwl/js': 15.8.9_k54h6x6ae4mjn6dg3mteyazuyi
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5
+ '@nrwl/devkit': 15.8.9(nx@15.8.9)(typescript@4.9.5)
+ '@nrwl/js': 15.8.9(eslint@8.36.0)(nx@15.8.9)(prettier@2.8.7)(typescript@4.9.5)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5)
chalk: 4.1.2
dotenv: 10.0.0
identity-obj-proxy: 3.0.0
- jest-config: 28.1.1_m54q5dse6x3xfnwbnypkikpaee
+ jest-config: 28.1.1(@types/node@18.15.10)(ts-node@10.9.1)
jest-resolve: 28.1.1
jest-util: 28.1.1
resolve.exports: 1.1.0
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- '@types/node'
@@ -5939,57 +6536,22 @@ packages:
- typescript
dev: true
- /@nrwl/js/15.8.9_2gc7deld5rprescztjpvrjwcwu:
- resolution: {integrity: sha512-pHpKUfM9WNCXHXD0DJKzHHw81JQQmGD3uDbC4M7fNDSq0JYt5ztmG9lEd8MgHDel76YW0fcGR0X/e/KvTJ5UAQ==}
- dependencies:
- '@babel/core': 7.21.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
- '@babel/runtime': 7.21.0
- '@nrwl/devkit': 15.8.9_nx@15.8.9+typescript@4.9.5
- '@nrwl/workspace': 15.8.9_erhqnhond52bpeyvirmp3gjrp4
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5
- babel-plugin-const-enum: 1.2.0_@babel+core@7.21.3
- babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2
- chalk: 4.1.2
- fast-glob: 3.2.7
- fs-extra: 11.1.1
- ignore: 5.2.4
- js-tokens: 4.0.0
- minimatch: 3.0.5
- source-map-support: 0.5.19
- tree-kill: 1.2.2
- tslib: 2.5.0
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
- - nx
- - prettier
- - supports-color
- - typescript
- dev: true
-
- /@nrwl/js/15.8.9_k54h6x6ae4mjn6dg3mteyazuyi:
+ /@nrwl/js@15.8.9(eslint@8.36.0)(nx@15.8.9)(prettier@2.8.7)(typescript@4.9.5):
resolution: {integrity: sha512-pHpKUfM9WNCXHXD0DJKzHHw81JQQmGD3uDbC4M7fNDSq0JYt5ztmG9lEd8MgHDel76YW0fcGR0X/e/KvTJ5UAQ==}
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@babel/runtime': 7.21.0
- '@nrwl/devkit': 15.8.9_nx@15.8.9+typescript@4.9.5
- '@nrwl/workspace': 15.8.9_owjyt45647gzbapm7z6scohxzu
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5
- babel-plugin-const-enum: 1.2.0_@babel+core@7.21.3
+ '@nrwl/devkit': 15.8.9(nx@15.8.9)(typescript@4.9.5)
+ '@nrwl/workspace': 15.8.9(eslint@8.36.0)(prettier@2.8.7)(typescript@4.9.5)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5)
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.21.3)
babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.21.3)
chalk: 4.1.2
fast-glob: 3.2.7
fs-extra: 11.1.1
@@ -6000,6 +6562,7 @@ packages:
tree-kill: 1.2.2
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -6010,7 +6573,7 @@ packages:
- typescript
dev: true
- /@nrwl/linter/15.8.9_k54h6x6ae4mjn6dg3mteyazuyi:
+ /@nrwl/linter@15.8.9(eslint@8.36.0)(nx@15.8.9)(prettier@2.8.7)(typescript@4.9.5):
resolution: {integrity: sha512-cPzUGEUCravAfF5dnmU0nBlTSnY3Zk8jdGiF2EzqPKBLdJ0cIKoQs8iCmXx0VCFoCM9vxs+LbbUflaZP718E1w==}
peerDependencies:
eslint: ^8.0.0
@@ -6018,13 +6581,14 @@ packages:
eslint:
optional: true
dependencies:
- '@nrwl/devkit': 15.8.9_nx@15.8.9+typescript@4.9.5
- '@nrwl/js': 15.8.9_2gc7deld5rprescztjpvrjwcwu
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5
+ '@nrwl/devkit': 15.8.9(nx@15.8.9)(typescript@4.9.5)
+ '@nrwl/js': 15.8.9(eslint@8.36.0)(nx@15.8.9)(prettier@2.8.7)(typescript@4.9.5)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5)
eslint: 8.36.0
tmp: 0.2.1
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -6034,7 +6598,7 @@ packages:
- typescript
dev: true
- /@nrwl/nx-cloud/15.3.2:
+ /@nrwl/nx-cloud@15.3.2:
resolution: {integrity: sha512-fga4duqcrkyT3djQpyRp8god3trb18hb+Tv0CYRrCcdNDHhzb6LOrxnenrFsjPjt38hyCdyu/ZYmHI/lQXyhAw==}
hasBin: true
dependencies:
@@ -6050,7 +6614,7 @@ packages:
- debug
dev: true
- /@nrwl/nx-darwin-arm64/15.8.9:
+ /@nrwl/nx-darwin-arm64@15.8.9:
resolution: {integrity: sha512-ZTwLlo+Bl8i9Gsq7dQFda8Pqs8qUAANeZdWiYo8ZsVmpcQZO2FTC3mwKsUhUuoFxoEiP/cwQAYY6WRTPE9RuGg==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -6059,7 +6623,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-darwin-x64/15.8.9:
+ /@nrwl/nx-darwin-x64@15.8.9:
resolution: {integrity: sha512-EQu3pUGiFaCFjS9/Jp4zsANWxGvc/2r1Vpo3X8pXnhzD7yQhWiLLc+oXL1K2Jh6wbcB2tKM5ms6Iap7NlkOMIA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -6068,7 +6632,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-linux-arm-gnueabihf/15.8.9:
+ /@nrwl/nx-linux-arm-gnueabihf@15.8.9:
resolution: {integrity: sha512-N4BCrRt74cvfPOiYG/JV8Z6jarduksL+GgqR5n2Ki+yOxkLYPWxyoqcEzzKhnxdFxdquCl9f27tqGaOmEAoHvQ==}
engines: {node: '>= 10'}
cpu: [arm]
@@ -6077,7 +6641,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-linux-arm64-gnu/15.8.9:
+ /@nrwl/nx-linux-arm64-gnu@15.8.9:
resolution: {integrity: sha512-uni6VbpxZ0C0S15qbIc+6oHnvrX3Ug9FM8UodSy2FmNiPgJDtfSAyUWqDNdv3RzWRSP9i1Z+tOEHW+wzpz5MfA==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -6086,7 +6650,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-linux-arm64-musl/15.8.9:
+ /@nrwl/nx-linux-arm64-musl@15.8.9:
resolution: {integrity: sha512-2mFMl/yEC1xToBk10nUGBD9XPnZHqDC2bvgFE3AqjKrbGTi/X9SgFejtlyOZJxg8z5lCz+2EqbsdZF61syUD4A==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -6095,7 +6659,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-linux-x64-gnu/15.8.9:
+ /@nrwl/nx-linux-x64-gnu@15.8.9:
resolution: {integrity: sha512-UQe+tfrRi00yftoKFPsr1TnYdhxaNqfU+pXeX9BCeBMWmoifcQuqv2KvXXPSv2iQGlN7s1JqgOFemQbbtZvVrQ==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -6104,7 +6668,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-linux-x64-musl/15.8.9:
+ /@nrwl/nx-linux-x64-musl@15.8.9:
resolution: {integrity: sha512-0RSEqFdwJmJZDhuj8yOKqxIr7olY4Xm+0hMNjz+20BVi2g37Oq138VC0iikzwaQVDP5Ude3cVaoRw4VBYlPfNw==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -6113,7 +6677,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-win32-arm64-msvc/15.8.9:
+ /@nrwl/nx-win32-arm64-msvc@15.8.9:
resolution: {integrity: sha512-GRs0cF3hyT7wdwlTwP4L5HG9LuHxt+I0/lTYzzUsUSs2WIvn6qycoKZv1qc/aSdZv+LgdKiPE5U7zHEVc6zpaA==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -6122,7 +6686,7 @@ packages:
dev: true
optional: true
- /@nrwl/nx-win32-x64-msvc/15.8.9:
+ /@nrwl/nx-win32-x64-msvc@15.8.9:
resolution: {integrity: sha512-u0L3T1ZMr4j1YM+6DdxnaJUl+VSkbSu+2vcLvLyo+c+Ekhr/JDirXPfyCdoM6c/DN+1NK1Km29soawX9Oyb2MA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -6131,7 +6695,7 @@ packages:
dev: true
optional: true
- /@nrwl/tao/15.8.9:
+ /@nrwl/tao@15.8.9:
resolution: {integrity: sha512-pJF1ISvRaqdMHQFAQvccsiUJCaegn4CCX9GDfvdTTOPpWD2WS/vq+5o7bOWJ14E0jtn+92MfLisK7Z+CSuyoWg==}
hasBin: true
dependencies:
@@ -6142,45 +6706,7 @@ packages:
- debug
dev: true
- /@nrwl/workspace/15.8.9_erhqnhond52bpeyvirmp3gjrp4:
- resolution: {integrity: sha512-1Xzw+1IVaHFFQtXrG898aqj4q59cBwlmOhsSPV4Wl0h8+XxzUzk2svUhsJ9b18hH1oG4hETRTEslLKYJ+r1Eiw==}
- peerDependencies:
- prettier: ^2.6.2
- peerDependenciesMeta:
- prettier:
- optional: true
- dependencies:
- '@nrwl/devkit': 15.8.9_nx@15.8.9+typescript@4.9.5
- '@nrwl/linter': 15.8.9_k54h6x6ae4mjn6dg3mteyazuyi
- '@parcel/watcher': 2.0.4
- chalk: 4.1.2
- chokidar: 3.5.3
- cli-cursor: 3.1.0
- cli-spinners: 2.6.1
- dotenv: 10.0.0
- figures: 3.2.0
- flat: 5.0.2
- glob: 7.1.4
- ignore: 5.2.4
- minimatch: 3.0.5
- npm-run-path: 4.0.1
- nx: 15.8.9
- open: 8.4.2
- prettier: 2.8.7
- rxjs: 6.6.7
- semver: 7.3.4
- tmp: 0.2.1
- tslib: 2.5.0
- yargs: 17.7.1
- yargs-parser: 21.1.1
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
- - typescript
- dev: true
-
- /@nrwl/workspace/15.8.9_owjyt45647gzbapm7z6scohxzu:
+ /@nrwl/workspace@15.8.9(eslint@8.36.0)(prettier@2.8.7)(typescript@4.9.5):
resolution: {integrity: sha512-1Xzw+1IVaHFFQtXrG898aqj4q59cBwlmOhsSPV4Wl0h8+XxzUzk2svUhsJ9b18hH1oG4hETRTEslLKYJ+r1Eiw==}
peerDependencies:
prettier: ^2.6.2
@@ -6188,8 +6714,8 @@ packages:
prettier:
optional: true
dependencies:
- '@nrwl/devkit': 15.8.9_nx@15.8.9+typescript@4.9.5
- '@nrwl/linter': 15.8.9_k54h6x6ae4mjn6dg3mteyazuyi
+ '@nrwl/devkit': 15.8.9(nx@15.8.9)(typescript@4.9.5)
+ '@nrwl/linter': 15.8.9(eslint@8.36.0)(nx@15.8.9)(prettier@2.8.7)(typescript@4.9.5)
'@parcel/watcher': 2.0.4
chalk: 4.1.2
chokidar: 3.5.3
@@ -6212,6 +6738,7 @@ packages:
yargs: 17.7.1
yargs-parser: 21.1.1
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -6220,7 +6747,7 @@ packages:
- typescript
dev: true
- /@parcel/watcher/2.0.4:
+ /@parcel/watcher@2.0.4:
resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==}
engines: {node: '>= 10.0.0'}
requiresBuild: true
@@ -6229,7 +6756,7 @@ packages:
node-gyp-build: 4.6.0
dev: true
- /@peculiar/asn1-schema/2.3.6:
+ /@peculiar/asn1-schema@2.3.6:
resolution: {integrity: sha512-izNRxPoaeJeg/AyH8hER6s+H7p4itk+03QCa4sbxI3lNdseQYCuxzgsuNK8bTXChtLTjpJz6NmXKA73qLa3rCA==}
dependencies:
asn1js: 3.0.5
@@ -6237,14 +6764,14 @@ packages:
tslib: 2.5.0
dev: false
- /@peculiar/json-schema/1.1.12:
+ /@peculiar/json-schema@1.1.12:
resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==}
engines: {node: '>=8.0.0'}
dependencies:
tslib: 2.5.0
dev: false
- /@peculiar/webcrypto/1.4.3:
+ /@peculiar/webcrypto@1.4.3:
resolution: {integrity: sha512-VtaY4spKTdN5LjJ04im/d/joXuvLbQdgy5Z4DXF4MFZhQ+MTrejbNMkfZBp1Bs3O5+bFqnJgyGdPuZQflvIa5A==}
engines: {node: '>=10.12.0'}
dependencies:
@@ -6255,7 +6782,7 @@ packages:
webcrypto-core: 1.7.7
dev: false
- /@phenomnomnominal/tsquery/4.1.1_typescript@4.9.5:
+ /@phenomnomnominal/tsquery@4.1.1(typescript@4.9.5):
resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==}
peerDependencies:
typescript: ^3 || ^4
@@ -6264,7 +6791,7 @@ packages:
typescript: 4.9.5
dev: true
- /@pkgr/utils/2.3.1:
+ /@pkgr/utils@2.3.1:
resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
dependencies:
@@ -6276,35 +6803,35 @@ packages:
tslib: 2.5.0
dev: true
- /@polka/url/1.0.0-next.21:
+ /@polka/url@1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
- /@popperjs/core/2.11.7:
+ /@popperjs/core@2.11.7:
resolution: {integrity: sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==}
dev: false
- /@radix-ui/primitive/1.0.0:
+ /@radix-ui/primitive@1.0.0:
resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
dependencies:
'@babel/runtime': 7.21.0
dev: false
- /@radix-ui/react-collection/1.0.2_biqbaboplfbrettd7655fr4n2y:
+ /@radix-ui/react-collection@1.0.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-s8WdQQ6wNXpaxdZ308KSr8fEWGrg4un8i4r/w7fhiS4ElRNjk5rRcl0/C6TANG2LvLOGIxtzo/jAg6Qf73TEBw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0
- '@radix-ui/react-context': 1.0.0_react@18.2.0
- '@radix-ui/react-primitive': 1.0.2_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-slot': 1.0.1_react@18.2.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
+ '@radix-ui/react-context': 1.0.0(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.1(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-compose-refs/1.0.0_react@18.2.0:
+ /@radix-ui/react-compose-refs@1.0.0(react@18.2.0):
resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
@@ -6313,7 +6840,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-context/1.0.0_react@18.2.0:
+ /@radix-ui/react-context@1.0.0(react@18.2.0):
resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
@@ -6322,7 +6849,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-dismissable-layer/1.0.3_biqbaboplfbrettd7655fr4n2y:
+ /@radix-ui/react-dismissable-layer@1.0.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-nXZOvFjOuHS1ovumntGV7NNoLaEp9JEvTht3MBjP44NSW5hUKj/8OnfN3+8WmB+CEhN44XaGhpHoSsUIEl5P7Q==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
@@ -6330,62 +6857,62 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0
- '@radix-ui/react-primitive': 1.0.2_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0
- '@radix-ui/react-use-escape-keydown': 1.0.2_react@18.2.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.2(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-portal/1.0.2_biqbaboplfbrettd7655fr4n2y:
+ /@radix-ui/react-portal@1.0.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-swu32idoCW7KA2VEiUZGBSu9nB6qwGdV6k6HYhUoOo3M1FFpD+VgLzUqtt3mwL1ssz7r2x8MggpLSQach2Xy/Q==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-primitive': 1.0.2_biqbaboplfbrettd7655fr4n2y
+ '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-presence/1.0.0_biqbaboplfbrettd7655fr4n2y:
+ /@radix-ui/react-presence@1.0.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0
- '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-primitive/1.0.2_biqbaboplfbrettd7655fr4n2y:
+ /@radix-ui/react-primitive@1.0.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zY6G5Qq4R8diFPNwtyoLRZBxzu1Z+SXMlfYpChN7Dv8gvmx9X3qhDqiLWvKseKVJMuedFeU/Sa0Sy/Ia+t06Dw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-slot': 1.0.1_react@18.2.0
+ '@radix-ui/react-slot': 1.0.1(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-slot/1.0.1_react@18.2.0:
+ /@radix-ui/react-slot@1.0.1(react@18.2.0):
resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
react: 18.2.0
dev: false
- /@radix-ui/react-toast/1.1.3_biqbaboplfbrettd7655fr4n2y:
+ /@radix-ui/react-toast@1.1.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yHFgpxi9wjbfPvpSPdYAzivCqw48eA1ofT8m/WqYOVTxKPdmQMuVKRYPlMmj4C1d6tJdFj/LBa1J4iY3fL4OwQ==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
@@ -6393,22 +6920,22 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-collection': 1.0.2_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0
- '@radix-ui/react-context': 1.0.0_react@18.2.0
- '@radix-ui/react-dismissable-layer': 1.0.3_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-portal': 1.0.2_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-presence': 1.0.0_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-primitive': 1.0.2_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0
- '@radix-ui/react-use-controllable-state': 1.0.0_react@18.2.0
- '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0
- '@radix-ui/react-visually-hidden': 1.0.2_biqbaboplfbrettd7655fr4n2y
+ '@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
+ '@radix-ui/react-context': 1.0.0(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-use-callback-ref/1.0.0_react@18.2.0:
+ /@radix-ui/react-use-callback-ref@1.0.0(react@18.2.0):
resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
@@ -6417,27 +6944,27 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-use-controllable-state/1.0.0_react@18.2.0:
+ /@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0):
resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
react: 18.2.0
dev: false
- /@radix-ui/react-use-escape-keydown/1.0.2_react@18.2.0:
+ /@radix-ui/react-use-escape-keydown@1.0.2(react@18.2.0):
resolution: {integrity: sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
react: 18.2.0
dev: false
- /@radix-ui/react-use-layout-effect/1.0.0_react@18.2.0:
+ /@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0):
resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
@@ -6446,95 +6973,315 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-visually-hidden/1.0.2_biqbaboplfbrettd7655fr4n2y:
+ /@radix-ui/react-visually-hidden@1.0.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-qirnJxtYn73HEk1rXL12/mXnu2rwsNHDID10th2JGtdK25T9wX+mxRmGt7iPSahw512GbZOc0syZX1nLQGoEOg==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
- '@radix-ui/react-primitive': 1.0.2_biqbaboplfbrettd7655fr4n2y
+ '@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
+ /@react-native-community/cli-clean@10.1.1:
+ resolution: {integrity: sha512-iNsrjzjIRv9yb5y309SWJ8NDHdwYtnCpmxZouQDyOljUdC9MwdZ4ChbtA4rwQyAwgOVfS9F/j56ML3Cslmvrxg==}
+ dependencies:
+ '@react-native-community/cli-tools': 10.1.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ prompts: 2.4.2
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-config@10.1.1:
+ resolution: {integrity: sha512-p4mHrjC+s/ayiNVG6T35GdEGdP6TuyBUg5plVGRJfTl8WT6LBfLYLk+fz/iETrEZ/YkhQIsQcEUQC47MqLNHog==}
+ dependencies:
+ '@react-native-community/cli-tools': 10.1.1
+ chalk: 4.1.2
+ cosmiconfig: 5.2.1
+ deepmerge: 3.3.0
+ glob: 7.2.3
+ joi: 17.9.1
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-debugger-ui@10.0.0:
+ resolution: {integrity: sha512-8UKLcvpSNxnUTRy8CkCl27GGLqZunQ9ncGYhSrWyKrU9SWBJJGeZwi2k2KaoJi5FvF2+cD0t8z8cU6lsq2ZZmA==}
+ dependencies:
+ serve-static: 1.15.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-doctor@10.2.2:
+ resolution: {integrity: sha512-49Ep2aQOF0PkbAR/TcyMjOm9XwBa8VQr+/Zzf4SJeYwiYLCT1NZRAVAVjYRXl0xqvq5S5mAGZZShS4AQl4WsZw==}
+ dependencies:
+ '@react-native-community/cli-config': 10.1.1
+ '@react-native-community/cli-platform-ios': 10.2.1
+ '@react-native-community/cli-tools': 10.1.1
+ chalk: 4.1.2
+ command-exists: 1.2.9
+ envinfo: 7.8.1
+ execa: 1.0.0
+ hermes-profile-transformer: 0.0.6
+ ip: 1.1.8
+ node-stream-zip: 1.15.0
+ ora: 5.4.1
+ prompts: 2.4.2
+ semver: 6.3.0
+ strip-ansi: 5.2.0
+ sudo-prompt: 9.2.1
+ wcwidth: 1.0.1
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-hermes@10.2.0:
+ resolution: {integrity: sha512-urfmvNeR8IiO/Sd92UU3xPO+/qI2lwCWQnxOkWaU/i2EITFekE47MD6MZrfVulRVYRi5cuaFqKZO/ccOdOB/vQ==}
+ dependencies:
+ '@react-native-community/cli-platform-android': 10.2.0
+ '@react-native-community/cli-tools': 10.1.1
+ chalk: 4.1.2
+ hermes-profile-transformer: 0.0.6
+ ip: 1.1.8
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-platform-android@10.2.0:
+ resolution: {integrity: sha512-CBenYwGxwFdObZTn1lgxWtMGA5ms2G/ALQhkS+XTAD7KHDrCxFF9yT/fnAjFZKM6vX/1TqGI1RflruXih3kAhw==}
+ dependencies:
+ '@react-native-community/cli-tools': 10.1.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ glob: 7.2.3
+ logkitty: 0.7.1
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-platform-ios@10.2.1:
+ resolution: {integrity: sha512-hz4zu4Y6eyj7D0lnZx8Mf2c2si8y+zh/zUTgCTaPPLzQD8jSZNNBtUUiA1cARm2razpe8marCZ1QbTMAGbf3mg==}
+ dependencies:
+ '@react-native-community/cli-tools': 10.1.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ fast-xml-parser: 4.1.3
+ glob: 7.2.3
+ ora: 5.4.1
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-plugin-metro@10.2.2(@babel/core@7.21.3):
+ resolution: {integrity: sha512-sTGjZlD3OGqbF9v1ajwUIXhGmjw9NyJ/14Lo0sg7xH8Pv4qUd5ZvQ6+DWYrQn3IKFUMfGFWYyL81ovLuPylrpw==}
+ dependencies:
+ '@react-native-community/cli-server-api': 10.1.1
+ '@react-native-community/cli-tools': 10.1.1
+ chalk: 4.1.2
+ execa: 1.0.0
+ metro: 0.73.9
+ metro-config: 0.73.9
+ metro-core: 0.73.9
+ metro-react-native-babel-transformer: 0.73.9(@babel/core@7.21.3)
+ metro-resolver: 0.73.9
+ metro-runtime: 0.73.9
+ readline: 1.3.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-server-api@10.1.1:
+ resolution: {integrity: sha512-NZDo/wh4zlm8as31UEBno2bui8+ufzsZV+KN7QjEJWEM0levzBtxaD+4je0OpfhRIIkhaRm2gl/vVf7OYAzg4g==}
+ dependencies:
+ '@react-native-community/cli-debugger-ui': 10.0.0
+ '@react-native-community/cli-tools': 10.1.1
+ compression: 1.7.4
+ connect: 3.7.0
+ errorhandler: 1.5.1
+ nocache: 3.0.4
+ pretty-format: 26.6.2
+ serve-static: 1.15.0
+ ws: 7.5.9
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-tools@10.1.1:
+ resolution: {integrity: sha512-+FlwOnZBV+ailEzXjcD8afY2ogFEBeHOw/8+XXzMgPaquU2Zly9B+8W089tnnohO3yfiQiZqkQlElP423MY74g==}
+ dependencies:
+ appdirsjs: 1.2.7
+ chalk: 4.1.2
+ find-up: 5.0.0
+ mime: 2.6.0
+ node-fetch: 2.6.9
+ open: 6.4.0
+ ora: 5.4.1
+ semver: 6.3.0
+ shell-quote: 1.8.0
+ transitivePeerDependencies:
+ - encoding
+ dev: false
+ optional: true
+
+ /@react-native-community/cli-types@10.0.0:
+ resolution: {integrity: sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==}
+ dependencies:
+ joi: 17.9.1
+ dev: false
+ optional: true
+
+ /@react-native-community/cli@10.2.2(@babel/core@7.21.3):
+ resolution: {integrity: sha512-aZVcVIqj+OG6CrliR/Yn8wHxrvyzbFBY9cj7n0MvRw/P54QUru2nNqUTSSbqv0Qaa297yHJbe6kFDojDMSTM8Q==}
+ engines: {node: '>=14'}
+ hasBin: true
+ dependencies:
+ '@react-native-community/cli-clean': 10.1.1
+ '@react-native-community/cli-config': 10.1.1
+ '@react-native-community/cli-debugger-ui': 10.0.0
+ '@react-native-community/cli-doctor': 10.2.2
+ '@react-native-community/cli-hermes': 10.2.0
+ '@react-native-community/cli-plugin-metro': 10.2.2(@babel/core@7.21.3)
+ '@react-native-community/cli-server-api': 10.1.1
+ '@react-native-community/cli-tools': 10.1.1
+ '@react-native-community/cli-types': 10.0.0
+ chalk: 4.1.2
+ commander: 9.5.0
+ execa: 1.0.0
+ find-up: 4.1.0
+ fs-extra: 8.1.0
+ graceful-fs: 4.2.11
+ prompts: 2.4.2
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
+
+ /@react-native/assets@1.0.0:
+ resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==}
+ dev: false
+ optional: true
+
+ /@react-native/normalize-color@2.1.0:
+ resolution: {integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==}
+ dev: false
+ optional: true
+
+ /@react-native/polyfills@2.0.0:
+ resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==}
dev: false
+ optional: true
- /@rushstack/eslint-patch/1.2.0:
+ /@rushstack/eslint-patch@1.2.0:
resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
dev: true
- /@scure/base/1.1.1:
+ /@scure/base@1.1.1:
resolution: {integrity: sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA==}
- /@scure/bip32/1.1.5:
+ /@scure/bip32@1.1.5:
resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==}
dependencies:
'@noble/hashes': 1.2.0
'@noble/secp256k1': 1.7.1
'@scure/base': 1.1.1
- /@scure/bip39/1.1.0:
+ /@scure/bip39@1.1.0:
resolution: {integrity: sha512-pwrPOS16VeTKg98dYXQyIjJEcWfz7/1YJIwxUEPFfQPtc86Ym/1sVgQ2RLoD43AazMk2l/unK4ITySSpW2+82w==}
dependencies:
'@noble/hashes': 1.1.5
'@scure/base': 1.1.1
dev: false
- /@scure/bip39/1.1.1:
+ /@scure/bip39@1.1.1:
resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==}
dependencies:
'@noble/hashes': 1.2.0
'@scure/base': 1.1.1
- /@sideway/address/4.1.4:
+ /@segment/loosely-validate-event@2.0.0:
+ resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==}
+ dependencies:
+ component-type: 1.2.1
+ join-component: 1.1.0
+ dev: false
+ optional: true
+
+ /@sideway/address@4.1.4:
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
- /@sideway/formula/3.0.1:
+ /@sideway/formula@3.0.1:
resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
- /@sideway/pinpoint/2.0.0:
+ /@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- /@sinclair/typebox/0.24.51:
+ /@sinclair/typebox@0.24.51:
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
dev: true
- /@sinclair/typebox/0.25.24:
+ /@sinclair/typebox@0.25.24:
resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
- /@sindresorhus/is/0.14.0:
+ /@sindresorhus/is@0.14.0:
resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
engines: {node: '>=6'}
- /@sindresorhus/is/4.6.0:
+ /@sindresorhus/is@4.6.0:
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
dev: false
- /@sinonjs/commons/1.8.6:
+ /@sinonjs/commons@1.8.6:
resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
dependencies:
type-detect: 4.0.8
dev: true
- /@sinonjs/commons/2.0.0:
+ /@sinonjs/commons@2.0.0:
resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==}
dependencies:
type-detect: 4.0.8
- /@sinonjs/fake-timers/10.0.2:
+ /@sinonjs/fake-timers@10.0.2:
resolution: {integrity: sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==}
dependencies:
'@sinonjs/commons': 2.0.0
- /@sinonjs/fake-timers/9.1.2:
+ /@sinonjs/fake-timers@9.1.2:
resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==}
dependencies:
'@sinonjs/commons': 1.8.6
dev: true
- /@slorber/static-site-generator-webpack-plugin/4.0.7:
+ /@slorber/static-site-generator-webpack-plugin@4.0.7:
resolution: {integrity: sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==}
engines: {node: '>=14'}
dependencies:
@@ -6542,11 +7289,11 @@ packages:
p-map: 4.0.0
webpack-sources: 3.2.3
- /@stablelib/aead/1.0.1:
+ /@stablelib/aead@1.0.1:
resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==}
dev: false
- /@stablelib/aes-kw/1.0.1:
+ /@stablelib/aes-kw@1.0.1:
resolution: {integrity: sha512-KrOkiRex1tQTbWk+hFB5fFw4vqKhNnTUtlCRf1bhUEOFp7hadWe49/sLa/P4X4FBQVoh3Z9Lj0zS1OWu/AHA1w==}
dependencies:
'@stablelib/aes': 1.0.1
@@ -6556,7 +7303,7 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/aes/1.0.1:
+ /@stablelib/aes@1.0.1:
resolution: {integrity: sha512-bMiezJDeFONDHbMEa+Kic26962+bwkZfsHPAmcqTjLaHCAhEQuK3i1H0POPOkcHCdj75oVRIqFCraCA0cyHPvw==}
dependencies:
'@stablelib/binary': 1.0.1
@@ -6564,13 +7311,13 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/binary/1.0.1:
+ /@stablelib/binary@1.0.1:
resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==}
dependencies:
'@stablelib/int': 1.0.1
dev: false
- /@stablelib/blake2b/1.0.1:
+ /@stablelib/blake2b@1.0.1:
resolution: {integrity: sha512-B3KyKoBAjkIFeH7romcF96i+pVFYk7K2SBQ1pZvaxV+epSBXJ+n0C66esUhyz6FF+5FbdQVm77C5fzGFcEZpKA==}
dependencies:
'@stablelib/binary': 1.0.1
@@ -6578,22 +7325,15 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/blockcipher/1.0.1:
+ /@stablelib/blockcipher@1.0.1:
resolution: {integrity: sha512-4bkpV8HUAv0CgI1fUqkPUEEvv3RXQ3qBkuZaSWhshXGAz1JCpriesgiO9Qs4f0KzBJkCtvcho5n7d/RKvnHbew==}
dev: false
- /@stablelib/bytes/1.0.1:
+ /@stablelib/bytes@1.0.1:
resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==}
dev: false
- /@stablelib/chacha/1.0.1:
- resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==}
- dependencies:
- '@stablelib/binary': 1.0.1
- '@stablelib/wipe': 1.0.1
- dev: false
-
- /@stablelib/chacha20poly1305/1.0.1:
+ /@stablelib/chacha20poly1305@1.0.1:
resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==}
dependencies:
'@stablelib/aead': 1.0.1
@@ -6604,11 +7344,18 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/constant-time/1.0.1:
+ /@stablelib/chacha@1.0.1:
+ resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==}
+ dependencies:
+ '@stablelib/binary': 1.0.1
+ '@stablelib/wipe': 1.0.1
+ dev: false
+
+ /@stablelib/constant-time@1.0.1:
resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==}
dev: false
- /@stablelib/ed25519/1.0.3:
+ /@stablelib/ed25519@1.0.3:
resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==}
dependencies:
'@stablelib/random': 1.0.2
@@ -6616,21 +7363,21 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/hash/1.0.1:
+ /@stablelib/hash@1.0.1:
resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==}
dev: false
- /@stablelib/int/1.0.1:
+ /@stablelib/int@1.0.1:
resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==}
dev: false
- /@stablelib/keyagreement/1.0.1:
+ /@stablelib/keyagreement@1.0.1:
resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==}
dependencies:
'@stablelib/bytes': 1.0.1
dev: false
- /@stablelib/nacl/1.0.4:
+ /@stablelib/nacl@1.0.4:
resolution: {integrity: sha512-PJ2U/MrkXSKUM8C4qFs87WeCNxri7KQwR8Cdwm9q2sweGuAtTvOJGuW0F3N+zn+ySLPJA98SYWSSpogMJ1gCmw==}
dependencies:
'@stablelib/poly1305': 1.0.1
@@ -6640,21 +7387,21 @@ packages:
'@stablelib/xsalsa20': 1.0.2
dev: false
- /@stablelib/poly1305/1.0.1:
+ /@stablelib/poly1305@1.0.1:
resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==}
dependencies:
'@stablelib/constant-time': 1.0.1
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/random/1.0.2:
+ /@stablelib/random@1.0.2:
resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==}
dependencies:
'@stablelib/binary': 1.0.1
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/salsa20/1.0.2:
+ /@stablelib/salsa20@1.0.2:
resolution: {integrity: sha512-nfjKzw0KTKrrKBasEP+j7UP4I8Xudom8lVZIBCp0kQNARXq72IlSic0oabg2FC1NU68L4RdHrNJDd8bFwrphYA==}
dependencies:
'@stablelib/binary': 1.0.1
@@ -6662,7 +7409,7 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/sha256/1.0.1:
+ /@stablelib/sha256@1.0.1:
resolution: {integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==}
dependencies:
'@stablelib/binary': 1.0.1
@@ -6670,7 +7417,7 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/sha512/1.0.1:
+ /@stablelib/sha512@1.0.1:
resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==}
dependencies:
'@stablelib/binary': 1.0.1
@@ -6678,11 +7425,11 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/wipe/1.0.1:
+ /@stablelib/wipe@1.0.1:
resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==}
dev: false
- /@stablelib/x25519/1.0.3:
+ /@stablelib/x25519@1.0.3:
resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==}
dependencies:
'@stablelib/keyagreement': 1.0.1
@@ -6690,7 +7437,7 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/xchacha20/1.0.1:
+ /@stablelib/xchacha20@1.0.1:
resolution: {integrity: sha512-1YkiZnFF4veUwBVhDnDYwo6EHeKzQK4FnLiO7ezCl/zu64uG0bCCAUROJaBkaLH+5BEsO3W7BTXTguMbSLlWSw==}
dependencies:
'@stablelib/binary': 1.0.1
@@ -6698,7 +7445,7 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stablelib/xchacha20poly1305/1.0.1:
+ /@stablelib/xchacha20poly1305@1.0.1:
resolution: {integrity: sha512-B1Abj0sMJ8h3HNmGnJ7vHBrAvxuNka6cJJoZ1ILN7iuacXp7sUYcgOVEOTLWj+rtQMpspY9tXSCRLPmN1mQNWg==}
dependencies:
'@stablelib/aead': 1.0.1
@@ -6708,7 +7455,7 @@ packages:
'@stablelib/xchacha20': 1.0.1
dev: false
- /@stablelib/xsalsa20/1.0.2:
+ /@stablelib/xsalsa20@1.0.2:
resolution: {integrity: sha512-7XdBGbcNgBShmuhDXv1G1WPVCkjZdkb1oPMzSidO7Fve0MHntH6TjFkj5bfLI+aRE+61weO076vYpP/jmaAYog==}
dependencies:
'@stablelib/binary': 1.0.1
@@ -6716,14 +7463,14 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@stacks/common/6.0.0:
+ /@stacks/common@6.0.0:
resolution: {integrity: sha512-tETwccvbYvaZ7u3ZucWNMOIPN97r6IPeZXKIFhLc1KSVaWSGEPTtZcwVp+Rz3mu2XgI2pg37SUrOWXSL7OOkDw==}
dependencies:
'@types/bn.js': 5.1.1
'@types/node': 18.15.10
dev: false
- /@stacks/encryption/6.5.0:
+ /@stacks/encryption@6.5.0:
resolution: {integrity: sha512-QE1+gy1x6spGkpK5PnZxKoX1hL8eeIYxYa5HNMl4cbdIVKaFgqjoGFKMtTA/tQMc91T/saXLqbQLyh/U4AVpTA==}
dependencies:
'@noble/hashes': 1.1.5
@@ -6737,16 +7484,16 @@ packages:
varuint-bitcoin: 1.1.2
dev: false
- /@stacks/network/6.3.0:
+ /@stacks/network@6.3.0:
resolution: {integrity: sha512-573ZldQ+Iy0nCCxprXLLvkAo1AMEXncfmMUvqQ+5TN3m7VqCVADtb5G5WzMZsyR4m/k9oPsv076Lmqyl8AtR2A==}
dependencies:
'@stacks/common': 6.0.0
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
transitivePeerDependencies:
- encoding
dev: false
- /@stacks/transactions/6.5.0:
+ /@stacks/transactions@6.5.0:
resolution: {integrity: sha512-kwE8cZq+QdAum4/LC+lSlAXVvzkdsSHTkCbfg4+VCWPBqA+gdXEqZe6R9SNBtMb8yGQrqUY8uIGRLVCWcXJ8zQ==}
dependencies:
'@noble/hashes': 1.1.5
@@ -6759,7 +7506,7 @@ packages:
- encoding
dev: false
- /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -6767,7 +7514,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-add-jsx-attribute/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-add-jsx-attribute@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-khWbXesWIP9v8HuKCl2NU2HNAyqpSQ/vkIl36Nbn4HIwEYSRWL0H7Gs6idJdha2DkpFDWlsqMELvoCE8lfFY6Q==}
engines: {node: '>=14'}
peerDependencies:
@@ -6776,7 +7523,7 @@ packages:
'@babel/core': 7.21.3
dev: true
- /@svgr/babel-plugin-remove-jsx-attribute/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-remove-jsx-attribute@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-iiZaIvb3H/c7d3TH2HBeK91uI2rMhZNwnsIrvd7ZwGLkFw6mmunOCoVnjdYua662MqGFxlN9xTq4fv9hgR4VXQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -6784,7 +7531,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-remove-jsx-empty-expression/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-remove-jsx-empty-expression@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-sQQmyo+qegBx8DfFc04PFmIO1FP1MHI1/QEpzcIcclo5OAISsOJPW76ZIs0bDyO/DBSJEa/tDa1W26pVtt0FRw==}
engines: {node: '>=14'}
peerDependencies:
@@ -6792,7 +7539,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
@@ -6800,7 +7547,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-replace-jsx-attribute-value/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-replace-jsx-attribute-value@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-i6MaAqIZXDOJeikJuzocByBf8zO+meLwfQ/qMHIjCcvpnfvWf82PFvredEZElErB5glQFJa2KVKk8N2xV6tRRA==}
engines: {node: '>=14'}
peerDependencies:
@@ -6809,7 +7556,7 @@ packages:
'@babel/core': 7.21.3
dev: true
- /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
@@ -6817,7 +7564,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-svg-dynamic-title/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-svg-dynamic-title@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-BoVSh6ge3SLLpKC0pmmN9DFlqgFy4NxNgdZNLPNJWBUU7TQpDWeBuyVuDW88iXydb5Cv0ReC+ffa5h3VrKfk1w==}
engines: {node: '>=14'}
peerDependencies:
@@ -6826,7 +7573,7 @@ packages:
'@babel/core': 7.21.3
dev: true
- /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
@@ -6834,7 +7581,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-svg-em-dimensions/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-svg-em-dimensions@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-tNDcBa+hYn0gO+GkP/AuNKdVtMufVhU9fdzu+vUQsR18RIJ9RWe7h/pSBY338RO08wArntwbDk5WhQBmhf2PaA==}
engines: {node: '>=14'}
peerDependencies:
@@ -6843,7 +7590,7 @@ packages:
'@babel/core': 7.21.3
dev: true
- /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
@@ -6851,7 +7598,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-transform-react-native-svg/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-transform-react-native-svg@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-qw54u8ljCJYL2KtBOjI5z7Nzg8LnSvQOP5hPKj77H4VQL4+HdKbAT5pnkkZLmHKYwzsIHSYKXxHouD8zZamCFQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -6860,7 +7607,7 @@ packages:
'@babel/core': 7.21.3
dev: true
- /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -6868,7 +7615,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
- /@svgr/babel-plugin-transform-svg-component/7.0.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-transform-svg-component@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-CcFECkDj98daOg9jE3Bh3uyD9kzevCAnZ+UtzG6+BQG/jOQ2OA3jHnX6iG4G1MCJkUQFnUvEv33NvQfqrb/F3A==}
engines: {node: '>=12'}
peerDependencies:
@@ -6877,71 +7624,71 @@ packages:
'@babel/core': 7.21.3
dev: true
- /@svgr/babel-preset/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-preset@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.21.3
-
- /@svgr/babel-preset/7.0.0_@babel+core@7.21.3:
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.3)
+
+ /@svgr/babel-preset@7.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-EX/NHeFa30j5UjldQGVQikuuQNHUdGmbh9kEpBKofGUtF0GUPJ4T4rhoYiqDAOmBOxojyot36JIFiDUHUK1ilQ==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-plugin-add-jsx-attribute': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-replace-jsx-attribute-value': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-svg-dynamic-title': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-svg-em-dimensions': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-transform-react-native-svg': 7.0.0_@babel+core@7.21.3
- '@svgr/babel-plugin-transform-svg-component': 7.0.0_@babel+core@7.21.3
+ '@svgr/babel-plugin-add-jsx-attribute': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-svg-dynamic-title': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-svg-em-dimensions': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-transform-react-native-svg': 7.0.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-transform-svg-component': 7.0.0(@babel/core@7.21.3)
dev: true
- /@svgr/core/6.5.1:
+ /@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-preset': 6.5.1_@babel+core@7.21.3
- '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.21.3)
+ '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
transitivePeerDependencies:
- supports-color
- /@svgr/core/7.0.0:
+ /@svgr/core@7.0.0:
resolution: {integrity: sha512-ztAoxkaKhRVloa3XydohgQQCb0/8x9T63yXovpmHzKMkHO6pkjdsIAWKOS4bE95P/2quVh1NtjSKlMRNzSBffw==}
engines: {node: '>=14'}
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-preset': 7.0.0_@babel+core@7.21.3
+ '@svgr/babel-preset': 7.0.0(@babel/core@7.21.3)
camelcase: 6.3.0
cosmiconfig: 8.1.3
transitivePeerDependencies:
- supports-color
dev: true
- /@svgr/hast-util-to-babel-ast/6.5.1:
+ /@svgr/hast-util-to-babel-ast@6.5.1:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
'@babel/types': 7.21.3
entities: 4.4.0
- /@svgr/hast-util-to-babel-ast/7.0.0:
+ /@svgr/hast-util-to-babel-ast@7.0.0:
resolution: {integrity: sha512-42Ej9sDDEmsJKjrfQ1PHmiDiHagh/u9AHO9QWbeNx4KmD9yS5d1XHmXUNINfUcykAU+4431Cn+k6Vn5mWBYimQ==}
engines: {node: '>=14'}
dependencies:
@@ -6949,33 +7696,33 @@ packages:
entities: 4.4.0
dev: true
- /@svgr/plugin-jsx/6.5.1_@svgr+core@6.5.1:
+ /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1):
resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==}
engines: {node: '>=10'}
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-preset': 6.5.1_@babel+core@7.21.3
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.21.3)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- /@svgr/plugin-jsx/7.0.0:
+ /@svgr/plugin-jsx@7.0.0:
resolution: {integrity: sha512-SWlTpPQmBUtLKxXWgpv8syzqIU8XgFRvyhfkam2So8b3BE0OS0HPe5UfmlJ2KIC+a7dpuuYovPR2WAQuSyMoPw==}
engines: {node: '>=14'}
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-preset': 7.0.0_@babel+core@7.21.3
+ '@svgr/babel-preset': 7.0.0(@babel/core@7.21.3)
'@svgr/hast-util-to-babel-ast': 7.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
dev: true
- /@svgr/plugin-svgo/6.5.1_@svgr+core@6.5.1:
+ /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1):
resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -6986,7 +7733,7 @@ packages:
deepmerge: 4.3.1
svgo: 2.8.0
- /@svgr/plugin-svgo/7.0.0_@svgr+core@7.0.0:
+ /@svgr/plugin-svgo@7.0.0(@svgr/core@7.0.0):
resolution: {integrity: sha512-263znzlu3qTKj71/ot5G9l2vpL4CW+pr2IexBFIwwB+fRAXE9Xnw2rUFgE6P4+37N9siOuC4lKkgBfUCOLFRKQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -6998,38 +7745,38 @@ packages:
svgo: 3.0.2
dev: true
- /@svgr/webpack/6.5.1:
+ /@svgr/webpack@6.5.1:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-transform-react-constant-elements': 7.21.3_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@svgr/core': 6.5.1
- '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
- '@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1
+ '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
+ '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1)
transitivePeerDependencies:
- supports-color
- /@svgr/webpack/7.0.0:
+ /@svgr/webpack@7.0.0:
resolution: {integrity: sha512-XWzIhLTr5WYns/cNFXpXrmFy+LFf2xp60VnNUBZCpM1CGTx47FCDuUj2DQjxirMf2L6CP2jTRELK8ef01TecFQ==}
engines: {node: '>=14'}
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-transform-react-constant-elements': 7.21.3_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@svgr/core': 7.0.0
'@svgr/plugin-jsx': 7.0.0
- '@svgr/plugin-svgo': 7.0.0_@svgr+core@7.0.0
+ '@svgr/plugin-svgo': 7.0.0(@svgr/core@7.0.0)
transitivePeerDependencies:
- supports-color
dev: true
- /@swc/core-darwin-arm64/1.3.42:
+ /@swc/core-darwin-arm64@1.3.42:
resolution: {integrity: sha512-hM6RrZFyoCM9mX3cj/zM5oXwhAqjUdOCLXJx7KTQps7NIkv/Qjvobgvyf2gAb89j3ARNo9NdIoLjTjJ6oALtiA==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -7037,7 +7784,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-darwin-x64/1.3.42:
+ /@swc/core-darwin-x64@1.3.42:
resolution: {integrity: sha512-bjsWtHMb6wJK1+RGlBs2USvgZ0txlMk11y0qBLKo32gLKTqzUwRw0Fmfzuf6Ue2a/w//7eqMlPFEre4LvJajGw==}
engines: {node: '>=10'}
cpu: [x64]
@@ -7045,7 +7792,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm-gnueabihf/1.3.42:
+ /@swc/core-linux-arm-gnueabihf@1.3.42:
resolution: {integrity: sha512-Oe0ggMz3MyqXNfeVmY+bBTL0hFSNY3bx8dhcqsh4vXk/ZVGse94QoC4dd92LuPHmKT0x6nsUzB86x2jU9QHW5g==}
engines: {node: '>=10'}
cpu: [arm]
@@ -7053,7 +7800,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-gnu/1.3.42:
+ /@swc/core-linux-arm64-gnu@1.3.42:
resolution: {integrity: sha512-ZJsa8NIW1RLmmHGTJCbM7OPSbBZ9rOMrLqDtUOGrT0uoJXZnnQqolflamB5wviW0X6h3Z3/PSTNGNDCJ3u3Lqg==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -7061,7 +7808,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-musl/1.3.42:
+ /@swc/core-linux-arm64-musl@1.3.42:
resolution: {integrity: sha512-YpZwlFAfOp5vkm/uVUJX1O7N3yJDO1fDQRWqsOPPNyIJkI2ydlRQtgN6ZylC159Qv+TimfXnGTlNr7o3iBAqjg==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -7069,7 +7816,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-x64-gnu/1.3.42:
+ /@swc/core-linux-x64-gnu@1.3.42:
resolution: {integrity: sha512-0ccpKnsZbyHBzaQFdP8U9i29nvOfKitm6oJfdJzlqsY/jCqwvD8kv2CAKSK8WhJz//ExI2LqNrDI0yazx5j7+A==}
engines: {node: '>=10'}
cpu: [x64]
@@ -7077,7 +7824,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-x64-musl/1.3.42:
+ /@swc/core-linux-x64-musl@1.3.42:
resolution: {integrity: sha512-7eckRRuTZ6+3K21uyfXXgc2ZCg0mSWRRNwNT3wap2bYkKPeqTgb8pm8xYSZNEiMuDonHEat6XCCV36lFY6kOdQ==}
engines: {node: '>=10'}
cpu: [x64]
@@ -7085,7 +7832,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-arm64-msvc/1.3.42:
+ /@swc/core-win32-arm64-msvc@1.3.42:
resolution: {integrity: sha512-t27dJkdw0GWANdN4TV0lY/V5vTYSx5SRjyzzZolep358ueCGuN1XFf1R0JcCbd1ojosnkQg2L7A7991UjXingg==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -7093,7 +7840,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-ia32-msvc/1.3.42:
+ /@swc/core-win32-ia32-msvc@1.3.42:
resolution: {integrity: sha512-xfpc/Zt/aMILX4IX0e3loZaFyrae37u3MJCv1gJxgqrpeLi7efIQr3AmERkTK3mxTO6R5urSliWw2W3FyZ7D3Q==}
engines: {node: '>=10'}
cpu: [ia32]
@@ -7101,7 +7848,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-x64-msvc/1.3.42:
+ /@swc/core-win32-x64-msvc@1.3.42:
resolution: {integrity: sha512-ra2K4Tu++EJLPhzZ6L8hWUsk94TdK/2UKhL9dzCBhtzKUixsGCEqhtqH1zISXNvW8qaVLFIMUP37ULe80/IJaA==}
engines: {node: '>=10'}
cpu: [x64]
@@ -7109,7 +7856,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core/1.3.42:
+ /@swc/core@1.3.42:
resolution: {integrity: sha512-nVFUd5+7tGniM2cT3LXaqnu3735Cu4az8A9gAKK+8sdpASI52SWuqfDBmjFCK9xG90MiVDVp2PTZr0BWqCIzpw==}
engines: {node: '>=10'}
requiresBuild: true
@@ -7125,13 +7872,13 @@ packages:
'@swc/core-win32-ia32-msvc': 1.3.42
'@swc/core-win32-x64-msvc': 1.3.42
- /@swc/helpers/0.4.14:
+ /@swc/helpers@0.4.14:
resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
dependencies:
tslib: 2.5.0
dev: false
- /@swc/jest/0.2.24_@swc+core@1.3.42:
+ /@swc/jest@0.2.24(@swc/core@1.3.42):
resolution: {integrity: sha512-fwgxQbM1wXzyKzl1+IW0aGrRvAA8k0Y3NxFhKigbPjOJ4mCKnWEcNX9HQS3gshflcxq8YKhadabGUVfdwjCr6Q==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
@@ -7142,27 +7889,27 @@ packages:
jsonc-parser: 3.2.0
dev: true
- /@szmarczak/http-timer/1.1.2:
+ /@szmarczak/http-timer@1.1.2:
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
engines: {node: '>=6'}
dependencies:
defer-to-connect: 1.1.3
- /@szmarczak/http-timer/4.0.6:
+ /@szmarczak/http-timer@4.0.6:
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
engines: {node: '>=10'}
dependencies:
defer-to-connect: 2.0.1
dev: false
- /@szmarczak/http-timer/5.0.1:
+ /@szmarczak/http-timer@5.0.1:
resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
engines: {node: '>=14.16'}
dependencies:
defer-to-connect: 2.0.1
dev: false
- /@tanstack/react-table/8.8.4_biqbaboplfbrettd7655fr4n2y:
+ /@tanstack/react-table@8.8.4(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-5w2AoBnDBJYuUa80sLOqelcG/eJdGwIPFBRnEiU3RCAEeZ1QIhYse/0vzhTY8VAcTXa2sjWhXNDWci4VlktNmg==}
engines: {node: '>=12'}
peerDependencies:
@@ -7171,28 +7918,68 @@ packages:
dependencies:
'@tanstack/table-core': 8.8.4
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@tanstack/table-core/8.8.4:
+ /@tanstack/table-core@8.8.4:
resolution: {integrity: sha512-4gq0A/Qz/JFuclxPd1UnNi5P57vbVF10mPK743Iuv2ORLLgF/O/XkaYjYDGw5SHMof8CgiT/nfdJdlgHsOfRIg==}
engines: {node: '>=12'}
dev: false
- /@transmute/credentials-context/0.7.0-unstable.80:
+ /@transmute/credentials-context@0.7.0-unstable.80:
resolution: {integrity: sha512-WhTrnSsIFcWGr3nAVUr1CBBzKKGWs8TJnXPAK+I3QzshennkMNbXpLNpU/sK3cum7eTRPyxFVbH37AxrHStQOw==}
dev: false
- /@transmute/ed25519-key-pair/0.7.0-unstable.2:
- resolution: {integrity: sha512-B0jg348Z8F0+lGWQic28xVxBZiXOJYbisWp6EfP4fQdMV3G4sES9YubpdiuoZHjesDZrf6xZ7cEB81mjGJMUkA==}
- engines: {node: '>=10'}
- dependencies:
+ /@transmute/did-context@0.6.1-unstable.37:
+ resolution: {integrity: sha512-p/QnG3QKS4218hjIDgdvJOFATCXsAnZKgy4egqRrJLlo3Y6OaDBg7cA73dixOwUPoEKob0K6rLIGcsCI/L1acw==}
+ dev: false
+
+ /@transmute/did-key-common@0.3.0-unstable.10:
+ resolution: {integrity: sha512-Iryh/HcGIvmTtWFTRaG/JEgbUsqI5OqKqkR2676yQWK4ajLMsyNattz5n0ZfFQk/4U7Ee6pJvvKRduFDAqqV0Q==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@did-core/data-model': 0.1.1-unstable.15
+ '@did-core/did-ld-json': 0.1.1-unstable.15
+ '@transmute/did-context': 0.6.1-unstable.37
+ '@transmute/ld-key-pair': 0.6.1-unstable.37
+ '@transmute/security-context': 0.6.1-unstable.37
+ transitivePeerDependencies:
+ - domexception
+ - encoding
+ - web-streams-polyfill
+ dev: false
+
+ /@transmute/did-key-ed25519@0.3.0-unstable.10:
+ resolution: {integrity: sha512-9QdXl58DjwqBuOJBx6DtvaNW2bZLmVBxMSq2En4RAQcGIz1GGulyEQ1NB7PLIAgnam3LIFxiK6RiQGQTfJmmJg==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@transmute/did-key-common': 0.3.0-unstable.10
+ '@transmute/ed25519-key-pair': 0.6.1-unstable.37
+ transitivePeerDependencies:
+ - domexception
+ - encoding
+ - web-streams-polyfill
+ dev: false
+
+ /@transmute/ed25519-key-pair@0.6.1-unstable.37:
+ resolution: {integrity: sha512-l34yzE/QnQwmdk5xY9g2kD55e4XPp/jTZQzPu7I6J4Ar+bMaL/0RLL/pgvwyI7qUpsddxRf4WPZCCcZveqPcdA==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@stablelib/ed25519': 1.0.3
+ '@transmute/ld-key-pair': 0.6.1-unstable.37
+ '@transmute/x25519-key-pair': 0.6.1-unstable.37
+ dev: false
+
+ /@transmute/ed25519-key-pair@0.7.0-unstable.2:
+ resolution: {integrity: sha512-B0jg348Z8F0+lGWQic28xVxBZiXOJYbisWp6EfP4fQdMV3G4sES9YubpdiuoZHjesDZrf6xZ7cEB81mjGJMUkA==}
+ engines: {node: '>=10'}
+ dependencies:
'@stablelib/ed25519': 1.0.3
'@transmute/ld-key-pair': 0.7.0-unstable.80
'@transmute/x25519-key-pair': 0.7.0-unstable.80
dev: false
- /@transmute/ed25519-key-pair/0.7.0-unstable.80:
+ /@transmute/ed25519-key-pair@0.7.0-unstable.80:
resolution: {integrity: sha512-Rl9mdLkUrn299hUEeVlcx4JYg5S0zdK8M4GhuLGpcQozkqPApbDuuotzyNIp4ok3tDwyM0v62H1gZRxWEYcvMg==}
engines: {node: '>=16'}
dependencies:
@@ -7201,7 +7988,7 @@ packages:
'@transmute/x25519-key-pair': 0.7.0-unstable.80
dev: false
- /@transmute/ed25519-signature-2018/0.7.0-unstable.80:
+ /@transmute/ed25519-signature-2018@0.7.0-unstable.80:
resolution: {integrity: sha512-KYq36yzNyEHMOZmH4/1k1f35LAyX94dFpzn2jJv1m5ha0EENZdJF2zWWZyq3BDeE688yPXNnxnTmV6HfSgawyQ==}
engines: {node: '>=16'}
dependencies:
@@ -7215,7 +8002,7 @@ packages:
- web-streams-polyfill
dev: false
- /@transmute/jose-ld/0.7.0-unstable.80:
+ /@transmute/jose-ld@0.7.0-unstable.80:
resolution: {integrity: sha512-Bdb/+wd/SDaRpAlGmkDrXL6nsHdBO/7Zr+zNEYC7cQTtiTnKQsjAKbQa+AF470PEgNwJIbNK2YjWIwnsv5q69A==}
engines: {node: '>=16'}
dependencies:
@@ -7227,7 +8014,7 @@ packages:
web-streams-polyfill: 3.2.1
dev: false
- /@transmute/json-web-signature/0.7.0-unstable.80:
+ /@transmute/json-web-signature@0.7.0-unstable.80:
resolution: {integrity: sha512-vlLgCkn/1onskP/VWa6t3JBtVrvo1yz6NRpJ5b4abwav0/t6E+AGS64mpYiC6ZMQV32ZGXSFHDs6FAoeCrX57A==}
engines: {node: '>=16'}
dependencies:
@@ -7242,7 +8029,19 @@ packages:
- web-streams-polyfill
dev: false
- /@transmute/jsonld/0.0.4:
+ /@transmute/jsonld-schema@0.7.0-unstable.80:
+ resolution: {integrity: sha512-KWOXmN3WU76ciFQWyzZqrG7bjjmAn0KE+D3M7wB6XI6XB6aWlwYAuQXQqsqrPSpGo69LqTv0nTCHY5ie4Ta58g==}
+ engines: {node: '>=16'}
+ dependencies:
+ '@transmute/jsonld': 0.0.4
+ ajv: 8.12.0
+ genson-js: 0.0.5
+ transitivePeerDependencies:
+ - domexception
+ - web-streams-polyfill
+ dev: false
+
+ /@transmute/jsonld@0.0.4:
resolution: {integrity: sha512-6G++8imMYW9dtTvATPHNfrV3lLeX5E57DOmlgIDfO0A0yjkBCss1usB80NfONS26ynyveb8vTbp4nQDW9Ki4Rw==}
engines: {node: '>=16'}
dependencies:
@@ -7253,12 +8052,28 @@ packages:
- web-streams-polyfill
dev: false
- /@transmute/ld-key-pair/0.7.0-unstable.80:
+ /@transmute/ld-key-pair@0.6.1-unstable.37:
+ resolution: {integrity: sha512-DcTpEruAQBfOd2laZkg3uCQ+67Y7dw2hsvo42NAQ5tItCIx5AClP7zccri7T2JUcfDUFaE32z/BLTMEKYt3XZQ==}
+ dev: false
+
+ /@transmute/ld-key-pair@0.7.0-unstable.80:
resolution: {integrity: sha512-oI6xJDT116+xViJKFxbjs8wX/k6O6e5kPKjmLfApYZKF63Tf01m+nflh7iAhgecSWl7W9SRo560SEtkyOVl7fQ==}
engines: {node: '>=16'}
dev: false
- /@transmute/secp256k1-key-pair/0.7.0-unstable.80:
+ /@transmute/linked-data-proof@0.7.0-unstable.80:
+ resolution: {integrity: sha512-E4Lq6RFwjWlejDjEZKEZ25j35i93nnPxOevW8pDAabpQfz6osLzhNvVrNR8RdBdRP1a5byRBDzqsO1RsHKhAJA==}
+ engines: {node: '>=16'}
+ dependencies:
+ '@transmute/did-key-ed25519': 0.3.0-unstable.10
+ serialize-error: 7.0.1
+ transitivePeerDependencies:
+ - domexception
+ - encoding
+ - web-streams-polyfill
+ dev: false
+
+ /@transmute/secp256k1-key-pair@0.7.0-unstable.80:
resolution: {integrity: sha512-tPq00bzqfMKgk6YYEqtSU1p+702j7VV37XLFlwMSSDK18JgVoQlp3ULZddEeFajbXQgX8N6yq6jlDUdXLW27bA==}
engines: {node: '>=16'}
dependencies:
@@ -7267,11 +8082,31 @@ packages:
secp256k1: 4.0.3
dev: false
- /@transmute/security-context/0.7.0-unstable.80:
+ /@transmute/security-context@0.6.1-unstable.37:
+ resolution: {integrity: sha512-GtLmG65qlORrz/2S4I74DT+vA4+qXsFxrMr0cNOXjUqZBd/AW1PTrFnryLF9907BfoiD58HC9qb1WVGWjSlBYw==}
+ dev: false
+
+ /@transmute/security-context@0.7.0-unstable.80:
resolution: {integrity: sha512-8Q1Q37QP1HNdemVNAi35Uaww1trPm7ybl8+vam90+MyI5kV4nLhOZab378vNYShUMgAccUkFXHlZSsuqD7HlCw==}
dev: false
- /@transmute/web-crypto-key-pair/0.7.0-unstable.80:
+ /@transmute/vc.js@0.7.0-unstable.80:
+ resolution: {integrity: sha512-J3Fpvo+67nflpF06OmUmIy70Em+s837ZmbLWsN467Tw6k+VVEB2G7HNGzXHood+BOovYCYmn0rso3wWp39DySw==}
+ engines: {node: '>=16'}
+ dependencies:
+ '@transmute/did-key-ed25519': 0.3.0-unstable.10
+ '@transmute/json-web-signature': 0.7.0-unstable.80
+ '@transmute/jsonld': 0.0.4
+ '@transmute/jsonld-schema': 0.7.0-unstable.80
+ '@transmute/linked-data-proof': 0.7.0-unstable.80
+ moment: 2.29.4
+ transitivePeerDependencies:
+ - domexception
+ - encoding
+ - web-streams-polyfill
+ dev: false
+
+ /@transmute/web-crypto-key-pair@0.7.0-unstable.80:
resolution: {integrity: sha512-k7kV3DPZoIoLSItnU9qHOBebMhem2y6Qay8JSgS+QTsEf4sGMNl3Unm560I9aocvdlurMTwQmgCfwPJ8WFQYaQ==}
engines: {node: '>=16'}
dependencies:
@@ -7280,7 +8115,15 @@ packages:
big-integer: 1.6.51
dev: false
- /@transmute/x25519-key-pair/0.7.0-unstable.80:
+ /@transmute/x25519-key-pair@0.6.1-unstable.37:
+ resolution: {integrity: sha512-j6zR9IoJmgVhUCVH8YVGpsgQf99SxPKZ00LGnUheBAQzgj2lULGBQ44G+GqBCdzfT0qweptTfp1RjqqHEpizeA==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@stablelib/x25519': 1.0.3
+ '@transmute/ld-key-pair': 0.6.1-unstable.37
+ dev: false
+
+ /@transmute/x25519-key-pair@0.7.0-unstable.80:
resolution: {integrity: sha512-6YxaWl3E9pTIsfuOCwoQFWYGH/bLoUkH4S7hhVORaNAS8r/XPNRP9IMcbemfHsP7f67GHVHXbOghVZd9nPLlQg==}
engines: {node: '>=16'}
dependencies:
@@ -7288,7 +8131,7 @@ packages:
'@transmute/ld-key-pair': 0.7.0-unstable.80
dev: false
- /@trust/keyto/1.0.1:
+ /@trust/keyto@1.0.1:
resolution: {integrity: sha512-OXTmKkrnkwktCX86XA7eWs1TQ6u64enm0syzAfNhjigbuGLy5aLhbhRYWtjt4zzdG/irWudluheRZ9Ic9pCwsA==}
dependencies:
asn1.js: 5.4.1
@@ -7296,27 +8139,27 @@ packages:
elliptic: 6.5.4
dev: false
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@tsconfig/docusaurus/1.0.7:
+ /@tsconfig/docusaurus@1.0.7:
resolution: {integrity: sha512-ffTXxGIP/IRMCjuzHd6M4/HdIrw1bMfC7Bv8hMkTadnePkpe0lG0oDSdbRpSDZb2rQMAgpbWiR10BvxvNYwYrg==}
dev: true
- /@tsconfig/node10/1.0.9:
+ /@tsconfig/node10@1.0.9:
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
- /@tsconfig/node12/1.0.11:
+ /@tsconfig/node12@1.0.11:
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
- /@tsconfig/node14/1.0.3:
+ /@tsconfig/node14@1.0.3:
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
- /@tsconfig/node16/1.0.3:
+ /@tsconfig/node16@1.0.3:
resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==}
- /@types/babel__core/7.20.0:
+ /@types/babel__core@7.20.0:
resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==}
dependencies:
'@babel/parser': 7.21.3
@@ -7325,46 +8168,45 @@ packages:
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.3
- /@types/babel__generator/7.6.4:
+ /@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
'@babel/types': 7.21.3
- /@types/babel__template/7.4.1:
+ /@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
'@babel/parser': 7.21.3
'@babel/types': 7.21.3
- /@types/babel__traverse/7.18.3:
+ /@types/babel__traverse@7.18.3:
resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==}
dependencies:
'@babel/types': 7.21.3
- /@types/bn.js/4.11.6:
+ /@types/bn.js@4.11.6:
resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==}
dependencies:
'@types/node': 18.15.10
dev: false
- /@types/bn.js/5.1.1:
+ /@types/bn.js@5.1.1:
resolution: {integrity: sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==}
dependencies:
'@types/node': 18.15.10
- dev: false
- /@types/body-parser/1.19.2:
+ /@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.35
'@types/node': 18.15.10
- /@types/bonjour/3.5.10:
+ /@types/bonjour@3.5.10:
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
dependencies:
'@types/node': 18.15.10
- /@types/cacheable-request/6.0.3:
+ /@types/cacheable-request@6.0.3:
resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
dependencies:
'@types/http-cache-semantics': 4.0.1
@@ -7373,54 +8215,59 @@ packages:
'@types/responselike': 1.0.0
dev: false
- /@types/chrome/0.0.136:
+ /@types/chrome@0.0.136:
resolution: {integrity: sha512-XDEiRhLkMd+SB7Iw3ZUIj/fov3wLd4HyTdLltVszkgl1dBfc3Rb7oPMVZ2Mz2TLqnF7Ow+StbR8E7r9lqpb4DA==}
dependencies:
'@types/filesystem': 0.0.32
'@types/har-format': 1.2.10
- /@types/connect-history-api-fallback/1.3.5:
+ /@types/connect-history-api-fallback@1.3.5:
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
dependencies:
'@types/express-serve-static-core': 4.17.33
'@types/node': 18.15.10
- /@types/connect/3.4.35:
+ /@types/connect@3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
'@types/node': 18.15.10
- /@types/debug/4.1.7:
+ /@types/debug@4.1.7:
resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
dependencies:
'@types/ms': 0.7.31
- /@types/eslint-scope/3.7.4:
+ /@types/elliptic@6.4.14:
+ resolution: {integrity: sha512-z4OBcDAU0GVwDTuwJzQCiL6188QvZMkvoERgcVjq0/mPM8jCfdwZ3x5zQEVoL9WCAru3aG5wl3Z5Ww5wBWn7ZQ==}
+ dependencies:
+ '@types/bn.js': 5.1.1
+
+ /@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
dependencies:
'@types/eslint': 8.21.3
'@types/estree': 0.0.51
- /@types/eslint/8.21.3:
+ /@types/eslint@8.21.3:
resolution: {integrity: sha512-fa7GkppZVEByMWGbTtE5MbmXWJTVbrjjaS8K6uQj+XtuuUv1fsuPAxhygfqLmsb/Ufb3CV8deFCpiMfAgi00Sw==}
dependencies:
'@types/estree': 1.0.0
'@types/json-schema': 7.0.11
- /@types/estree/0.0.51:
+ /@types/estree@0.0.51:
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- /@types/estree/1.0.0:
+ /@types/estree@1.0.0:
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
- /@types/express-serve-static-core/4.17.33:
+ /@types/express-serve-static-core@4.17.33:
resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==}
dependencies:
'@types/node': 18.15.10
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
- /@types/express/4.17.17:
+ /@types/express@4.17.17:
resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
dependencies:
'@types/body-parser': 1.19.2
@@ -7428,250 +8275,250 @@ packages:
'@types/qs': 6.9.7
'@types/serve-static': 1.15.1
- /@types/filesystem/0.0.32:
+ /@types/filesystem@0.0.32:
resolution: {integrity: sha512-Yuf4jR5YYMR2DVgwuCiP11s0xuVRyPKmz8vo6HBY3CGdeMj8af93CFZX+T82+VD1+UqHOxTq31lO7MI7lepBtQ==}
dependencies:
'@types/filewriter': 0.0.29
- /@types/filewriter/0.0.29:
+ /@types/filewriter@0.0.29:
resolution: {integrity: sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==}
- /@types/graceful-fs/4.1.6:
+ /@types/graceful-fs@4.1.6:
resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
dependencies:
'@types/node': 18.15.10
- /@types/har-format/1.2.10:
+ /@types/har-format@1.2.10:
resolution: {integrity: sha512-o0J30wqycjF5miWDKYKKzzOU1ZTLuA42HZ4HE7/zqTOc/jTLdQ5NhYWvsRQo45Nfi1KHoRdNhteSI4BAxTF1Pg==}
- /@types/hast/2.3.4:
+ /@types/hast@2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
dependencies:
'@types/unist': 2.0.6
- /@types/history/4.7.11:
+ /@types/history@4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
- /@types/html-minifier-terser/6.1.0:
+ /@types/html-minifier-terser@6.1.0:
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
- /@types/http-cache-semantics/4.0.1:
+ /@types/http-cache-semantics@4.0.1:
resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==}
dev: false
- /@types/http-proxy/1.17.10:
+ /@types/http-proxy@1.17.10:
resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==}
dependencies:
'@types/node': 18.15.10
- /@types/istanbul-lib-coverage/2.0.4:
+ /@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
- /@types/istanbul-lib-report/3.0.0:
+ /@types/istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
- /@types/istanbul-reports/3.0.1:
+ /@types/istanbul-reports@3.0.1:
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
dependencies:
'@types/istanbul-lib-report': 3.0.0
- /@types/jest/29.5.0:
+ /@types/jest@29.5.0:
resolution: {integrity: sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==}
dependencies:
expect: 29.5.0
pretty-format: 29.5.0
dev: true
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
- /@types/json5/0.0.29:
+ /@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/jsonpath/0.2.0:
+ /@types/jsonpath@0.2.0:
resolution: {integrity: sha512-v7qlPA0VpKUlEdhghbDqRoKMxFB3h3Ch688TApBJ6v+XLDdvWCGLJIYiPKGZnS6MAOie+IorCfNYVHOPIHSWwQ==}
- /@types/keyv/3.1.4:
+ /@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
'@types/node': 18.15.10
- /@types/lodash.clonedeep/4.5.7:
+ /@types/lodash.clonedeep@4.5.7:
resolution: {integrity: sha512-ccNqkPptFIXrpVqUECi60/DFxjNKsfoQxSQsgcBJCX/fuX1wgyQieojkcWH/KpE3xzLoWN/2k+ZeGqIN3paSvw==}
dependencies:
'@types/lodash': 4.14.192
dev: true
- /@types/lodash/4.14.192:
+ /@types/lodash@4.14.192:
resolution: {integrity: sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==}
dev: true
- /@types/mdast/3.0.11:
+ /@types/mdast@3.0.11:
resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==}
dependencies:
'@types/unist': 2.0.6
- /@types/mime/3.0.1:
+ /@types/mime@3.0.1:
resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
- /@types/minimist/1.2.2:
+ /@types/minimist@1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
- /@types/ms/0.7.31:
+ /@types/ms@0.7.31:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
- /@types/node/12.20.55:
+ /@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: false
- /@types/node/17.0.45:
+ /@types/node@17.0.45:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: false
- /@types/node/18.15.10:
+ /@types/node@18.15.10:
resolution: {integrity: sha512-9avDaQJczATcXgfmMAW3MIWArOO7A+m90vuCFLr8AotWf8igO/mRoYukrk2cqZVtv38tHs33retzHEilM7FpeQ==}
- /@types/normalize-package-data/2.4.1:
+ /@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
- /@types/parse-json/4.0.0:
+ /@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
- /@types/parse5/5.0.3:
+ /@types/parse5@5.0.3:
resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
- /@types/pbkdf2/3.1.0:
+ /@types/pbkdf2@3.1.0:
resolution: {integrity: sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==}
dependencies:
'@types/node': 18.15.10
dev: false
- /@types/prettier/2.7.2:
+ /@types/prettier@2.7.2:
resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==}
- /@types/prop-types/15.7.5:
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/qs/6.9.7:
+ /@types/qs@6.9.7:
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
- /@types/range-parser/1.2.4:
+ /@types/range-parser@1.2.4:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
- /@types/react-dom/18.0.11:
+ /@types/react-dom@18.0.11:
resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==}
dependencies:
'@types/react': 18.0.30
dev: true
- /@types/react-is/17.0.3:
+ /@types/react-is@17.0.3:
resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==}
dependencies:
'@types/react': 18.0.30
dev: false
- /@types/react-router-config/5.0.6:
+ /@types/react-router-config@5.0.6:
resolution: {integrity: sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg==}
dependencies:
'@types/history': 4.7.11
'@types/react': 18.0.30
'@types/react-router': 5.1.20
- /@types/react-router-dom/5.3.3:
+ /@types/react-router-dom@5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
'@types/react': 18.0.30
'@types/react-router': 5.1.20
- /@types/react-router/5.1.20:
+ /@types/react-router@5.1.20:
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
'@types/react': 18.0.30
- /@types/react-transition-group/4.4.5:
+ /@types/react-transition-group@4.4.5:
resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==}
dependencies:
'@types/react': 18.0.30
dev: false
- /@types/react/18.0.30:
+ /@types/react@18.0.30:
resolution: {integrity: sha512-AnME2cHDH11Pxt/yYX6r0w448BfTwQOLEhQEjCdwB7QskEI7EKtxhGUsExTQe/MsY3D9D5rMtu62WRocw9A8FA==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.3
csstype: 3.1.1
- /@types/responselike/1.0.0:
+ /@types/responselike@1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
'@types/node': 18.15.10
- /@types/retry/0.12.0:
+ /@types/retry@0.12.0:
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- /@types/rimraf/4.0.5:
+ /@types/rimraf@4.0.5:
resolution: {integrity: sha512-DTCZoIQotB2SUJnYgrEx43cQIUYOlNZz0AZPbKU4PSLYTUdML5Gox0++z4F9kQocxStrCmRNhi4x5x/UlwtKUA==}
deprecated: This is a stub types definition. rimraf provides its own type definitions, so you do not need this installed.
dependencies:
rimraf: 4.4.1
dev: true
- /@types/sax/1.2.4:
+ /@types/sax@1.2.4:
resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
dependencies:
'@types/node': 18.15.10
dev: false
- /@types/scheduler/0.16.3:
+ /@types/scheduler@0.16.3:
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
- /@types/secp256k1/4.0.3:
+ /@types/secp256k1@4.0.3:
resolution: {integrity: sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==}
dependencies:
'@types/node': 18.15.10
- /@types/semver/7.3.13:
+ /@types/semver@7.3.13:
resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
dev: true
- /@types/serve-index/1.9.1:
+ /@types/serve-index@1.9.1:
resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
dependencies:
'@types/express': 4.17.17
- /@types/serve-static/1.15.1:
+ /@types/serve-static@1.15.1:
resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
dependencies:
'@types/mime': 3.0.1
'@types/node': 18.15.10
- /@types/sockjs/0.3.33:
+ /@types/sockjs@0.3.33:
resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
dependencies:
'@types/node': 18.15.10
- /@types/stack-utils/2.0.1:
+ /@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
- /@types/unist/2.0.6:
+ /@types/unist@2.0.6:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
- /@types/uuid/9.0.1:
+ /@types/uuid@9.0.1:
resolution: {integrity: sha512-rFT3ak0/2trgvp4yYZo5iKFEPsET7vKydKF+VRCxlQ9bpheehyAJH89dAkaLEq/j/RZXJIqcgsmPJKUP1Z28HA==}
- /@types/webpack/5.28.1_wfd5rlvlmpbpyqtrbwbe2u7vpa:
+ /@types/webpack@5.28.1(@swc/core@1.3.42)(webpack-cli@5.0.1):
resolution: {integrity: sha512-qw1MqGZclCoBrpiSe/hokSgQM/su8Ocpl3L/YHE0L6moyaypg4+5F7Uzq7NgaPKPxUxUbQ4fLPLpDWdR27bCZw==}
dependencies:
'@types/node': 18.15.10
tapable: 2.2.1
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -7679,26 +8526,32 @@ packages:
- webpack-cli
dev: true
- /@types/ws/8.5.4:
+ /@types/ws@8.5.4:
resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==}
dependencies:
'@types/node': 18.15.10
- /@types/yargs-parser/21.0.0:
+ /@types/yargs-parser@21.0.0:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
- /@types/yargs/16.0.5:
+ /@types/yargs@15.0.15:
+ resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
+ dependencies:
+ '@types/yargs-parser': 21.0.0
+ dev: false
+ optional: true
+
+ /@types/yargs@16.0.5:
resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
dependencies:
'@types/yargs-parser': 21.0.0
- dev: true
- /@types/yargs/17.0.24:
+ /@types/yargs@17.0.24:
resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==}
dependencies:
'@types/yargs-parser': 21.0.0
- /@typescript-eslint/eslint-plugin/5.57.0_5t5646cukn2kik5kiydglap3vi:
+ /@typescript-eslint/eslint-plugin@5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5):
resolution: {integrity: sha512-itag0qpN6q2UMM6Xgk6xoHa0D0/P+M17THnr4SVgqn9Rgam5k/He33MA7/D7QoJcdMxHFyX7U9imaBonAX/6qA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7710,23 +8563,23 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.4.1
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
'@typescript-eslint/scope-manager': 5.57.0
- '@typescript-eslint/type-utils': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- '@typescript-eslint/utils': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/type-utils': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
+ '@typescript-eslint/utils': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
debug: 4.3.4
eslint: 8.36.0
grapheme-splitter: 1.0.4
ignore: 5.2.4
natural-compare-lite: 1.4.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.5
+ tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.57.0_vgl77cfdswitgr47lm5swmv43m:
+ /@typescript-eslint/parser@5.57.0(eslint@8.36.0)(typescript@4.9.5):
resolution: {integrity: sha512-orrduvpWYkgLCyAdNtR1QIWovcNZlEm6yL8nwH/eTxWLd8gsP+25pdLHYzL2QdkqrieaDwLpytHqycncv0woUQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7738,7 +8591,7 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.57.0
'@typescript-eslint/types': 5.57.0
- '@typescript-eslint/typescript-estree': 5.57.0_typescript@4.9.5
+ '@typescript-eslint/typescript-estree': 5.57.0(typescript@4.9.5)
debug: 4.3.4
eslint: 8.36.0
typescript: 4.9.5
@@ -7746,7 +8599,7 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.57.0:
+ /@typescript-eslint/scope-manager@5.57.0:
resolution: {integrity: sha512-NANBNOQvllPlizl9LatX8+MHi7bx7WGIWYjPHDmQe5Si/0YEYfxSljJpoTyTWFTgRy3X8gLYSE4xQ2U+aCozSw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -7754,7 +8607,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.57.0
dev: true
- /@typescript-eslint/type-utils/5.57.0_vgl77cfdswitgr47lm5swmv43m:
+ /@typescript-eslint/type-utils@5.57.0(eslint@8.36.0)(typescript@4.9.5):
resolution: {integrity: sha512-kxXoq9zOTbvqzLbdNKy1yFrxLC6GDJFE2Yuo3KqSwTmDOFjUGeWSakgoXT864WcK5/NAJkkONCiKb1ddsqhLXQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7764,22 +8617,22 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.57.0_typescript@4.9.5
- '@typescript-eslint/utils': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/typescript-estree': 5.57.0(typescript@4.9.5)
+ '@typescript-eslint/utils': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
debug: 4.3.4
eslint: 8.36.0
- tsutils: 3.21.0_typescript@4.9.5
+ tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/5.57.0:
+ /@typescript-eslint/types@5.57.0:
resolution: {integrity: sha512-mxsod+aZRSyLT+jiqHw1KK6xrANm19/+VFALVFP5qa/aiJnlP38qpyaTd0fEKhWvQk6YeNZ5LGwI1pDpBRBhtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.57.0_typescript@4.9.5:
+ /@typescript-eslint/typescript-estree@5.57.0(typescript@4.9.5):
resolution: {integrity: sha512-LTzQ23TV82KpO8HPnWuxM2V7ieXW8O142I7hQTxWIHDcCEIjtkat6H96PFkYBQqGFLW/G/eVVOB9Z8rcvdY/Vw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7794,24 +8647,24 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.5
+ tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.57.0_vgl77cfdswitgr47lm5swmv43m:
+ /@typescript-eslint/utils@5.57.0(eslint@8.36.0)(typescript@4.9.5):
resolution: {integrity: sha512-ps/4WohXV7C+LTSgAL5CApxvxbMkl9B9AUZRtnEFonpIxZDIT7wC1xfvuJONMidrkB9scs4zhtRyIwHh4+18kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.36.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.36.0)
'@types/json-schema': 7.0.11
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.57.0
'@typescript-eslint/types': 5.57.0
- '@typescript-eslint/typescript-estree': 5.57.0_typescript@4.9.5
+ '@typescript-eslint/typescript-estree': 5.57.0(typescript@4.9.5)
eslint: 8.36.0
eslint-scope: 5.1.1
semver: 7.3.8
@@ -7820,7 +8673,7 @@ packages:
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.57.0:
+ /@typescript-eslint/visitor-keys@5.57.0:
resolution: {integrity: sha512-ery2g3k0hv5BLiKpPuwYt9KBkAp2ugT6VvyShXdLOkax895EC55sP0Tx5L0fZaQueiK3fBLvHVvEl3jFS5ia+g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -7828,7 +8681,7 @@ packages:
eslint-visitor-keys: 3.4.0
dev: true
- /@unimodules/core/7.1.2:
+ /@unimodules/core@7.1.2:
resolution: {integrity: sha512-lY+e2TAFuebD3vshHMIRqru3X4+k7Xkba4Wa7QsDBd+ex4c4N2dHAO61E2SrGD9+TRBD8w/o7mzK6ljbqRnbyg==}
deprecated: 'replaced by the ''expo'' package, learn more: https://blog.expo.dev/whats-new-in-expo-modules-infrastructure-7a7cdda81ebc'
requiresBuild: true
@@ -7837,7 +8690,7 @@ packages:
dev: false
optional: true
- /@unimodules/react-native-adapter/6.3.9:
+ /@unimodules/react-native-adapter@6.3.9:
resolution: {integrity: sha512-i9/9Si4AQ8awls+YGAKkByFbeAsOPgUNeLoYeh2SQ3ddjxJ5ZJDtq/I74clDnpDcn8zS9pYlcDJ9fgVJa39Glw==}
deprecated: 'replaced by the ''expo'' package, learn more: https://blog.expo.dev/whats-new-in-expo-modules-infrastructure-7a7cdda81ebc'
requiresBuild: true
@@ -7847,7 +8700,29 @@ packages:
dev: false
optional: true
- /@veramo/core-types/5.1.2:
+ /@urql/core@2.3.6(graphql@15.8.0):
+ resolution: {integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==}
+ peerDependencies:
+ graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ dependencies:
+ '@graphql-typed-document-node/core': 3.2.0(graphql@15.8.0)
+ graphql: 15.8.0
+ wonka: 4.0.15
+ dev: false
+ optional: true
+
+ /@urql/exchange-retry@0.3.0(graphql@15.8.0):
+ resolution: {integrity: sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==}
+ peerDependencies:
+ graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0
+ dependencies:
+ '@urql/core': 2.3.6(graphql@15.8.0)
+ graphql: 15.8.0
+ wonka: 4.0.15
+ dev: false
+ optional: true
+
+ /@veramo/core-types@5.1.2:
resolution: {integrity: sha512-IVmbcn9yBE8v/x29nGvScCT9sIKu/iYJ8+dqN3jIVL2t//HRvNhrHsxw83Wb6DGqr46r0ebM+kEnPfZAAxdk/w==}
dependencies:
credential-status: 2.0.5
@@ -7858,7 +8733,7 @@ packages:
- supports-color
dev: false
- /@veramo/core/5.1.2:
+ /@veramo/core@5.1.2:
resolution: {integrity: sha512-0ees7TekZ4h7dXPsaqu+6ZM5rc4BAqoW/zfiAzM0mAD2anaTyygbKqfjUAMVijdOv6/tyL8Yv3ez74zXYgT+ew==}
dependencies:
'@veramo/core-types': 5.1.2
@@ -7869,7 +8744,7 @@ packages:
- supports-color
dev: false
- /@veramo/credential-eip712/5.1.2:
+ /@veramo/credential-eip712@5.1.2:
resolution: {integrity: sha512-cPNUqmrBJIvVgWxIXhhjM20LXyo6cPO5/yDCxtNfmfOMdL4Bxf0lKZ+dnTM2ZJLvCit6Js/6IZSMFieEb6goOg==}
dependencies:
'@metamask/eth-sig-util': 5.0.2
@@ -7882,21 +8757,21 @@ packages:
- supports-color
dev: false
- /@veramo/credential-ld/5.1.2:
+ /@veramo/credential-ld@5.1.2(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-cq+UcFIEIAUIT0aQbDWBkbGdg5+utyGgYhmekBTRsbXUuDO0TC25HNK4ceYuL+FRPaYHl24vPUuKd609if2L7w==}
dependencies:
- '@digitalcredentials/ed25519-signature-2020': 3.0.2
+ '@digitalcredentials/ed25519-signature-2020': 3.0.2(expo@48.0.10)(react-native@0.71.6)
'@digitalcredentials/ed25519-verification-key-2020': 4.0.0
- '@digitalcredentials/jsonld': 5.2.1
- '@digitalcredentials/jsonld-signatures': 9.3.1
- '@digitalcredentials/vc': 5.0.0
+ '@digitalcredentials/jsonld': 5.2.1(expo@48.0.10)(react-native@0.71.6)
+ '@digitalcredentials/jsonld-signatures': 9.3.1(expo@48.0.10)(react-native@0.71.6)
+ '@digitalcredentials/vc': 5.0.0(expo@48.0.10)(react-native@0.71.6)
'@transmute/credentials-context': 0.7.0-unstable.80
'@transmute/ed25519-signature-2018': 0.7.0-unstable.80
'@transmute/json-web-signature': 0.7.0-unstable.80
- '@veramo-community/lds-ecdsa-secp256k1-recovery2020': github.com/uport-project/EcdsaSecp256k1RecoverySignature2020/ab0db52de6f4e6663ef271a48009ba26e688ef9b
+ '@veramo-community/lds-ecdsa-secp256k1-recovery2020': github.com/uport-project/EcdsaSecp256k1RecoverySignature2020/ab0db52de6f4e6663ef271a48009ba26e688ef9b(expo@48.0.10)(react-native@0.71.6)
'@veramo/core-types': 5.1.2
'@veramo/utils': 5.1.2
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
debug: 4.3.4
did-resolver: 4.0.1
uint8arrays: 3.1.1
@@ -7909,7 +8784,7 @@ packages:
- web-streams-polyfill
dev: false
- /@veramo/credential-w3c/5.1.2:
+ /@veramo/credential-w3c@5.1.2(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-1sVDVxFWHwpSdeEgIWmHtUiIy0aDFKMPgEn+d02xGDhXnWlyUdT5OCDLULsKDma/owajkq0RTrbeSpe+63+0pg==}
dependencies:
'@veramo/core-types': 5.1.2
@@ -7923,7 +8798,7 @@ packages:
uint8arrays: 3.1.1
uuid: 9.0.0
optionalDependencies:
- '@veramo/credential-ld': 5.1.2
+ '@veramo/credential-ld': 5.1.2(expo@48.0.10)(react-native@0.71.6)
transitivePeerDependencies:
- domexception
- encoding
@@ -7933,7 +8808,7 @@ packages:
- web-streams-polyfill
dev: false
- /@veramo/did-discovery/5.1.2:
+ /@veramo/did-discovery@5.1.2:
resolution: {integrity: sha512-+Gl2KaCpF4DgrYP71/9Pg40bcIWE1V4g0qEda3qHhy+xqK5qS9bNHlfEmYsK1Wx52FhVZlEWvA7HbQCgQ094ng==}
dependencies:
'@veramo/core-types': 5.1.2
@@ -7942,7 +8817,7 @@ packages:
- supports-color
dev: false
- /@veramo/did-manager/5.1.2:
+ /@veramo/did-manager@5.1.2:
resolution: {integrity: sha512-cp847YVlNzXZS2L8x/h3LIeH3qv1WEeHdXdVq2yDvAVFIr69X84K2eGlSueTUGc3Jkk+vUL82GYsOW8aVZ25Lg==}
dependencies:
'@veramo/core-types': 5.1.2
@@ -7951,7 +8826,7 @@ packages:
- supports-color
dev: false
- /@veramo/did-provider-ethr/5.1.2:
+ /@veramo/did-provider-ethr@5.1.2:
resolution: {integrity: sha512-bsecW15NkgU5edYehJprzeOzEX4eStFqvrD2L+scb9p+pwIc5587WCkaVP6dlWnerv03tlFgN+eRxe1EJl0TWQ==}
dependencies:
'@ethersproject/abstract-provider': 5.7.0
@@ -7973,7 +8848,7 @@ packages:
- utf-8-validate
dev: false
- /@veramo/did-provider-pkh/5.1.2:
+ /@veramo/did-provider-pkh@5.1.2:
resolution: {integrity: sha512-JzT2eZKZXKo6vqjK31h0A0ye96BJLCXRKzU7L1IBzE1lcoGJRqrjENUuY1HTbdXeOXRFLGEGKW35WPzB1Rxz0A==}
dependencies:
'@ethersproject/abstract-provider': 5.7.0
@@ -7989,12 +8864,12 @@ packages:
- supports-color
dev: false
- /@veramo/did-resolver/5.1.2:
+ /@veramo/did-resolver@5.1.2:
resolution: {integrity: sha512-edvF4E6X3XwVUH/eeIsZmYJGfHVL0fFPzdl9lf0jrCiticik76QYiUWLXj67q8E43Lv16mYOIe3S3qQ3/vmsKg==}
dependencies:
'@veramo/core-types': 5.1.2
'@veramo/utils': 5.1.2
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
debug: 4.3.4
did-resolver: 4.0.1
transitivePeerDependencies:
@@ -8002,7 +8877,7 @@ packages:
- supports-color
dev: false
- /@veramo/key-manager/5.1.2:
+ /@veramo/key-manager@5.1.2:
resolution: {integrity: sha512-o7sNQfDjdJO0MkV+wwUL5wQwZXBG6hMXdbaTqwZgdA0btE9267anx9Cy7dpLnfsRWvHM3EsLFTuZdL9mytMIgQ==}
dependencies:
'@ethersproject/bytes': 5.7.0
@@ -8018,7 +8893,7 @@ packages:
- supports-color
dev: false
- /@veramo/kms-local/5.1.2:
+ /@veramo/kms-local@5.1.2:
resolution: {integrity: sha512-YJBh9n+cxVoa/bUfa/weV0nd0ik+GgRxaO4NZQS9rJF50vI8XHV1+FOZeKm38LKVbvB4/nupTSzkmQb4nFQNcg==}
dependencies:
'@ethersproject/abstract-provider': 5.7.0
@@ -8043,7 +8918,7 @@ packages:
- supports-color
dev: false
- /@veramo/message-handler/5.1.2:
+ /@veramo/message-handler@5.1.2:
resolution: {integrity: sha512-fov1wFOe5f4YoNpmjlo8pRyG2GJI0qlSW0Zvo3umhbfMc/yohcx8zAi4ZaR3uqxPGfsdsbCO2zU8+VSfUqcH0Q==}
dependencies:
'@veramo/core-types': 5.1.2
@@ -8052,7 +8927,7 @@ packages:
- supports-color
dev: false
- /@veramo/utils/5.1.2:
+ /@veramo/utils@5.1.2:
resolution: {integrity: sha512-1hcQzoTQ8q5LWfT1GzCA7wDyX95Pmz2xSVmV5P5otbAtrWk9GXn01snbaDlW+vz/a/iWKKcLlZbkRf5uLpHdnQ==}
dependencies:
'@ethersproject/signing-key': 5.7.0
@@ -8061,7 +8936,7 @@ packages:
'@veramo/core-types': 5.1.2
blakejs: 1.2.1
credential-status: 2.0.5
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
debug: 4.3.4
did-jwt: 6.11.5
did-jwt-vc: 3.1.2
@@ -8074,13 +8949,13 @@ packages:
- supports-color
dev: false
- /@web3-react/abstract-connector/6.0.7:
+ /@web3-react/abstract-connector@6.0.7:
resolution: {integrity: sha512-RhQasA4Ox8CxUC0OENc1AJJm8UTybu/oOCM61Zjg6y0iF7Z0sqv1Ai1VdhC33hrQpA8qSBgoXN9PaP8jKmtdqg==}
dependencies:
'@web3-react/types': 6.0.7
dev: false
- /@web3-react/core/6.1.9_react@18.2.0:
+ /@web3-react/core@6.1.9(react@18.2.0):
resolution: {integrity: sha512-P877DslsbAkWIlMANpWiK7pCvNwlz0kJC0EGckuVh0wlA23J4UnFxq6xyOaxkxaDCu14rA/tAO0NbwjcXTQgSA==}
peerDependencies:
react: '>=16.8'
@@ -8093,7 +8968,7 @@ packages:
tiny-warning: 1.0.3
dev: false
- /@web3-react/injected-connector/6.0.7:
+ /@web3-react/injected-connector@6.0.7:
resolution: {integrity: sha512-Y7aJSz6pg+MWKtvdyuqyy6LWuH+4Tqtph1LWfiyVms9II9ar/9B/de4R8wh4wjg91wmHkU+D75yP09E/Soh2RA==}
dependencies:
'@web3-react/abstract-connector': 6.0.7
@@ -8101,36 +8976,36 @@ packages:
tiny-warning: 1.0.3
dev: false
- /@web3-react/types/6.0.7:
+ /@web3-react/types@6.0.7:
resolution: {integrity: sha512-ofGmfDhxmNT1/P/MgVa8IKSkCStFiyvXe+U5tyZurKdrtTDFU+wJ/LxClPDtFerWpczNFPUSrKcuhfPX1sI6+A==}
dev: false
- /@webassemblyjs/ast/1.11.1:
+ /@webassemblyjs/ast@1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
dependencies:
'@webassemblyjs/helper-numbers': 1.11.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
+ /@webassemblyjs/floating-point-hex-parser@1.11.1:
resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
- /@webassemblyjs/helper-api-error/1.11.1:
+ /@webassemblyjs/helper-api-error@1.11.1:
resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
- /@webassemblyjs/helper-buffer/1.11.1:
+ /@webassemblyjs/helper-buffer@1.11.1:
resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- /@webassemblyjs/helper-numbers/1.11.1:
+ /@webassemblyjs/helper-numbers@1.11.1:
resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.11.1
'@webassemblyjs/helper-api-error': 1.11.1
'@xtuc/long': 4.2.2
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
+ /@webassemblyjs/helper-wasm-bytecode@1.11.1:
resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
- /@webassemblyjs/helper-wasm-section/1.11.1:
+ /@webassemblyjs/helper-wasm-section@1.11.1:
resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -8138,20 +9013,20 @@ packages:
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
'@webassemblyjs/wasm-gen': 1.11.1
- /@webassemblyjs/ieee754/1.11.1:
+ /@webassemblyjs/ieee754@1.11.1:
resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
dependencies:
'@xtuc/ieee754': 1.2.0
- /@webassemblyjs/leb128/1.11.1:
+ /@webassemblyjs/leb128@1.11.1:
resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
dependencies:
'@xtuc/long': 4.2.2
- /@webassemblyjs/utf8/1.11.1:
+ /@webassemblyjs/utf8@1.11.1:
resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- /@webassemblyjs/wasm-edit/1.11.1:
+ /@webassemblyjs/wasm-edit@1.11.1:
resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -8163,7 +9038,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
'@webassemblyjs/wast-printer': 1.11.1
- /@webassemblyjs/wasm-gen/1.11.1:
+ /@webassemblyjs/wasm-gen@1.11.1:
resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -8172,7 +9047,7 @@ packages:
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- /@webassemblyjs/wasm-opt/1.11.1:
+ /@webassemblyjs/wasm-opt@1.11.1:
resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -8180,7 +9055,7 @@ packages:
'@webassemblyjs/wasm-gen': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
- /@webassemblyjs/wasm-parser/1.11.1:
+ /@webassemblyjs/wasm-parser@1.11.1:
resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -8190,33 +9065,33 @@ packages:
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- /@webassemblyjs/wast-printer/1.11.1:
+ /@webassemblyjs/wast-printer@1.11.1:
resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
'@xtuc/long': 4.2.2
- /@webpack-cli/configtest/2.0.1_zx7uamsgh45bm3d7mxhr5qnje4:
+ /@webpack-cli/configtest@2.0.1(webpack-cli@5.0.1)(webpack@5.76.3):
resolution: {integrity: sha512-njsdJXJSiS2iNbQVS0eT8A/KPnmyH4pv1APj2K0d1wrZcBLw+yppxOy4CGqa0OxDJkzfL/XELDhD8rocnIwB5A==}
engines: {node: '>=14.15.0'}
peerDependencies:
webpack: 5.x.x
webpack-cli: 5.x.x
dependencies:
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
- webpack-cli: 5.0.1_webpack@5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
+ webpack-cli: 5.0.1(webpack@5.76.3)
- /@webpack-cli/info/2.0.1_zx7uamsgh45bm3d7mxhr5qnje4:
+ /@webpack-cli/info@2.0.1(webpack-cli@5.0.1)(webpack@5.76.3):
resolution: {integrity: sha512-fE1UEWTwsAxRhrJNikE7v4EotYflkEhBL7EbajfkPlf6E37/2QshOy/D48Mw8G5XMFlQtS6YV42vtbG9zBpIQA==}
engines: {node: '>=14.15.0'}
peerDependencies:
webpack: 5.x.x
webpack-cli: 5.x.x
dependencies:
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
- webpack-cli: 5.0.1_webpack@5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
+ webpack-cli: 5.0.1(webpack@5.76.3)
- /@webpack-cli/serve/2.0.1_zx7uamsgh45bm3d7mxhr5qnje4:
+ /@webpack-cli/serve@2.0.1(webpack-cli@5.0.1)(webpack@5.76.3):
resolution: {integrity: sha512-0G7tNyS+yW8TdgHwZKlDWYXFA6OJQnoLCQvYKkQP0Q2X205PSQ6RNUj0M+1OB/9gRQaUZ/ccYfaxd0nhaWKfjw==}
engines: {node: '>=14.15.0'}
peerDependencies:
@@ -8227,20 +9102,26 @@ packages:
webpack-dev-server:
optional: true
dependencies:
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
- webpack-cli: 5.0.1_webpack@5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
+ webpack-cli: 5.0.1(webpack@5.76.3)
+
+ /@xmldom/xmldom@0.7.10:
+ resolution: {integrity: sha512-hb9QhOg5MGmpVkFcoZ9XJMe1em5gd0e2eqqjK87O1dwULedXsnY/Zg/Ju6lcohA+t6jVkmKpe7I1etqhvdRdrQ==}
+ engines: {node: '>=10.0.0'}
+ dev: false
+ optional: true
- /@xtuc/ieee754/1.2.0:
+ /@xtuc/ieee754@1.2.0:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- /@xtuc/long/4.2.2:
+ /@xtuc/long@4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- /@yarnpkg/lockfile/1.1.0:
+ /@yarnpkg/lockfile@1.1.0:
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
dev: true
- /@yarnpkg/parsers/3.0.0-rc.41:
+ /@yarnpkg/parsers@3.0.0-rc.41:
resolution: {integrity: sha512-Qenu313thHJTriR1PqECfPhNVtem1DowFw8r9xRn09T35c4iF+3lO66nB5PUsMCW/mnHux7ZtAStQzxX1waXlw==}
engines: {node: '>=14.15.0'}
dependencies:
@@ -8248,14 +9129,20 @@ packages:
tslib: 2.5.0
dev: true
- /@zkochan/js-yaml/0.0.6:
+ /@zkochan/js-yaml@0.0.6:
resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==}
hasBin: true
dependencies:
argparse: 2.0.1
dev: true
- /JSONStream/1.3.5:
+ /@zxing/text-encoding@0.9.0:
+ resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /JSONStream@1.3.5:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
dependencies:
@@ -8263,102 +9150,125 @@ packages:
through: 2.3.8
dev: true
- /abort-controller/3.0.0:
+ /abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
dependencies:
event-target-shim: 5.0.1
dev: false
- /abortcontroller-polyfill/1.7.5:
+ /abortcontroller-polyfill@1.7.5:
resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==}
dev: false
- /accept-language-parser/1.5.0:
+ /absolute-path@0.0.0:
+ resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==}
+ dev: false
+ optional: true
+
+ /accept-language-parser@1.5.0:
resolution: {integrity: sha512-QhyTbMLYo0BBGg1aWbeMG4ekWtds/31BrEU+DONOg/7ax23vxpL03Pb7/zBmha2v7vdD3AyzZVWBVGEZxKOXWw==}
dev: false
- /accepts/1.3.8:
+ /accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
dependencies:
mime-types: 2.1.35
negotiator: 0.6.3
- /acorn-import-assertions/1.8.0_acorn@8.8.2:
+ /acorn-import-assertions@1.8.0(acorn@8.8.2):
resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
peerDependencies:
acorn: ^8
dependencies:
acorn: 8.8.2
- /acorn-jsx/5.3.2_acorn@8.8.2:
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 8.8.2
- /acorn-node/1.8.2:
+ /acorn-node@1.8.2:
resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
dependencies:
acorn: 7.4.1
acorn-walk: 7.2.0
xtend: 4.0.2
- /acorn-walk/7.2.0:
+ /acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- /acorn-walk/8.2.0:
+ /acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
- /acorn/7.4.1:
+ /acorn@7.1.1:
+ resolution: {integrity: sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: false
+
+ /acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
- /acorn/8.8.2:
+ /acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
- /address/1.2.2:
+ /address@1.2.2:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
- /aes-js/3.0.0:
+ /aes-js@3.0.0:
resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==}
dev: false
- /aes-js/4.0.0-beta.3:
+ /aes-js@4.0.0-beta.3:
resolution: {integrity: sha512-/xJX0/VTPcbc5xQE2VUP91y1xN8q/rDfhEzLm+vLc3hYvb5+qHCnpJRuFcrKn63zumK/sCwYYzhG8HP78JYSTA==}
dev: false
- /aggregate-error/3.1.0:
+ /agent-base@6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
- /ajv-formats/2.1.1:
+ /ajv-formats@2.1.1(ajv@8.12.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ peerDependencies:
+ ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
dependencies:
ajv: 8.12.0
- /ajv-keywords/3.5.2_ajv@6.12.6:
+ /ajv-keywords@3.5.2(ajv@6.12.6):
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
ajv: ^6.9.1
dependencies:
ajv: 6.12.6
- /ajv-keywords/5.1.0_ajv@8.12.0:
+ /ajv-keywords@5.1.0(ajv@8.12.0):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
@@ -8366,7 +9276,7 @@ packages:
ajv: 8.12.0
fast-deep-equal: 3.1.3
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
@@ -8374,7 +9284,7 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv/8.12.0:
+ /ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
dependencies:
fast-deep-equal: 3.1.3
@@ -8382,7 +9292,7 @@ packages:
require-from-string: 2.0.2
uri-js: 4.4.1
- /algoliasearch-helper/3.12.0_algoliasearch@4.16.0:
+ /algoliasearch-helper@3.12.0(algoliasearch@4.16.0):
resolution: {integrity: sha512-/j1U3PEwdan0n6P/QqSnSpNSLC5+cEMvyljd5CnmNmUjDlGrys+vFEOwjVEnqELIiAGMHEA/Nl3CiKVFBUYqyQ==}
peerDependencies:
algoliasearch: '>= 3.1 < 6'
@@ -8391,7 +9301,7 @@ packages:
algoliasearch: 4.16.0
dev: false
- /algoliasearch/4.16.0:
+ /algoliasearch@4.16.0:
resolution: {integrity: sha512-HAjKJ6bBblaXqO4dYygF4qx251GuJ6zCZt+qbJ+kU7sOC+yc84pawEjVpJByh+cGP2APFCsao2Giz50cDlKNPA==}
dependencies:
'@algolia/cache-browser-local-storage': 4.16.0
@@ -8410,108 +9320,166 @@ packages:
'@algolia/transporter': 4.16.0
dev: false
- /ansi-align/3.0.1:
+ /anser@1.4.10:
+ resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
+ dev: false
+ optional: true
+
+ /ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
dependencies:
string-width: 4.2.3
- /ansi-colors/4.1.3:
+ /ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
dev: true
- /ansi-escapes/4.3.2:
+ /ansi-escapes@3.2.0:
+ resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.21.3
- /ansi-html-community/0.0.8:
+ /ansi-fragments@0.2.1:
+ resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==}
+ dependencies:
+ colorette: 1.4.0
+ slice-ansi: 2.1.0
+ strip-ansi: 5.2.0
+ dev: false
+ optional: true
+
+ /ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
hasBin: true
- /ansi-regex/5.0.1:
+ /ansi-regex@4.1.1:
+ resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
+ engines: {node: '>=6'}
+ dev: false
+ optional: true
+
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- /ansi-regex/6.0.1:
+ /ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- /ansi-styles/5.2.0:
+ /ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- /ansi-styles/6.2.1:
+ /ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- /any-promise/1.3.0:
+ /any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
- dev: true
- /anymatch/3.1.3:
+ /anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- /apg-js/4.1.3:
+ /apg-js@4.1.3:
resolution: {integrity: sha512-XYyDcoBho8OpnWPRnedMwyL+76ovCtsESerHZEfY39dO4IrEqN97mdEYkOyHa0XTX5+3+U5FmpqPLttK0f7n6g==}
dev: false
- /arg/4.1.3:
+ /appdirsjs@1.2.7:
+ resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==}
+ dev: false
+ optional: true
+
+ /application-config-path@0.1.1:
+ resolution: {integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==}
+ dev: false
+ optional: true
+
+ /arg@4.1.0:
+ resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==}
+ dev: false
+ optional: true
+
+ /arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
- /arg/5.0.2:
+ /arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
- /argparse/1.0.10:
+ /argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
- /argparse/2.0.1:
+ /argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- /aria-query/5.1.3:
+ /aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
dependencies:
deep-equal: 2.2.0
dev: true
- /array-buffer-byte-length/1.0.0:
+ /arr-diff@4.0.0:
+ resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /arr-flatten@1.1.0:
+ resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /arr-union@3.1.0:
+ resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /array-buffer-byte-length@1.0.0:
resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
dependencies:
call-bind: 1.0.2
is-array-buffer: 3.0.2
dev: true
- /array-flatten/1.1.1:
+ /array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- /array-flatten/2.1.2:
+ /array-flatten@2.1.2:
resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
- /array-ify/1.0.0:
+ /array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
dev: true
- /array-includes/3.1.6:
+ /array-includes@3.1.6:
resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -8522,11 +9490,17 @@ packages:
is-string: 1.0.7
dev: true
- /array-union/2.1.0:
+ /array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- /array.prototype.flat/1.3.1:
+ /array-unique@0.3.2:
+ resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /array.prototype.flat@1.3.1:
resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -8536,7 +9510,7 @@ packages:
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.flatmap/1.3.1:
+ /array.prototype.flatmap@1.3.1:
resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -8546,7 +9520,7 @@ packages:
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.tosorted/1.1.1:
+ /array.prototype.tosorted@1.1.1:
resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
dependencies:
call-bind: 1.0.2
@@ -8556,20 +9530,20 @@ packages:
get-intrinsic: 1.2.0
dev: true
- /arrify/1.0.1:
+ /arrify@1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
dev: true
- /asap/2.0.6:
+ /asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
dev: false
- /asmcrypto.js/0.22.0:
+ /asmcrypto.js@0.22.0:
resolution: {integrity: sha512-usgMoyXjMbx/ZPdzTSXExhMPur2FTdz/Vo5PVx2gIaBcdAAJNOFlsdgqveM8Cff7W0v+xrf9BwjOV26JSAF9qA==}
dev: false
- /asn1.js/5.4.1:
+ /asn1.js@5.4.1:
resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
dependencies:
bn.js: 4.12.0
@@ -8577,13 +9551,13 @@ packages:
minimalistic-assert: 1.0.1
safer-buffer: 2.1.2
- /asn1/0.2.6:
+ /asn1@0.2.6:
resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
dependencies:
safer-buffer: 2.1.2
dev: false
- /asn1js/3.0.5:
+ /asn1js@3.0.5:
resolution: {integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==}
engines: {node: '>=12.0.0'}
dependencies:
@@ -8592,43 +9566,69 @@ packages:
tslib: 2.5.0
dev: false
- /assert-plus/1.0.0:
+ /assert-plus@1.0.0:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
dev: false
- /assert/1.5.0:
+ /assert@1.5.0:
resolution: {integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==}
dependencies:
object-assign: 4.1.1
util: 0.10.3
dev: true
- /ast-types-flow/0.0.7:
+ /assign-symbols@1.0.0:
+ resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /ast-types-flow@0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
- /astral-regex/2.0.0:
+ /ast-types@0.14.2:
+ resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.5.0
+ dev: false
+ optional: true
+
+ /astral-regex@1.0.0:
+ resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
dev: true
- /async-limiter/1.0.1:
+ /async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
dev: false
- /async/3.2.4:
+ /async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
- dev: true
- /asynckit/0.4.0:
+ /asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- /at-least-node/1.0.0:
+ /at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- /audit-ci/6.6.1:
+ /atob@2.1.2:
+ resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
+ engines: {node: '>= 4.5.0'}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /audit-ci@6.6.1:
resolution: {integrity: sha512-zqZEoYfEC4QwX5yBkDNa0h7YhZC63HWtKtP19BVq+RS0dxRBInfmHogxe4VUeOzoADQjuTLZUI7zp3Pjyl+a5g==}
engines: {node: '>=12.9.0'}
hasBin: true
@@ -8643,7 +9643,7 @@ packages:
yargs: 17.7.1
dev: true
- /autoprefixer/10.4.14_postcss@8.4.21:
+ /autoprefixer@10.4.14(postcss@8.4.21):
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -8658,24 +9658,24 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /available-typed-arrays/1.0.5:
+ /available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- /aws-sign2/0.7.0:
+ /aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
dev: false
- /aws4/1.12.0:
+ /aws4@1.12.0:
resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==}
dev: false
- /axe-core/4.6.3:
+ /axe-core@4.6.3:
resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==}
engines: {node: '>=4'}
dev: true
- /axios/0.21.4:
+ /axios@0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies:
follow-redirects: 1.15.2
@@ -8683,14 +9683,14 @@ packages:
- debug
dev: true
- /axios/0.25.0:
+ /axios@0.25.0:
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
dependencies:
follow-redirects: 1.15.2
transitivePeerDependencies:
- debug
- /axios/1.3.4:
+ /axios@1.3.4:
resolution: {integrity: sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==}
dependencies:
follow-redirects: 1.15.2
@@ -8698,27 +9698,35 @@ packages:
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- dev: true
- /axobject-query/3.1.1:
+ /axobject-query@3.1.1:
resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
dependencies:
deep-equal: 2.2.0
dev: true
- /b64-lite/1.4.0:
+ /b64-lite@1.4.0:
resolution: {integrity: sha512-aHe97M7DXt+dkpa8fHlCcm1CnskAHrJqEfMI0KN7dwqlzml/aUe1AGt6lk51HzrSfVD67xOso84sOpr+0wIe2w==}
dependencies:
base-64: 0.1.0
dev: false
- /b64u-lite/1.1.0:
+ /b64u-lite@1.1.0:
resolution: {integrity: sha512-929qWGDVCRph7gQVTC6koHqQIpF4vtVaSbwLltFQo44B1bYUquALswZdBKFfrJCPEnsCOvWkJsPdQYZ/Ukhw8A==}
dependencies:
b64-lite: 1.4.0
dev: false
- /babel-jest/28.1.3_@babel+core@7.21.3:
+ /babel-core@7.0.0-bridge.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ dev: false
+ optional: true
+
+ /babel-jest@28.1.3(@babel/core@7.21.3):
resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -8728,7 +9736,7 @@ packages:
'@jest/transform': 28.1.3
'@types/babel__core': 7.20.0
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 28.1.3_@babel+core@7.21.3
+ babel-preset-jest: 28.1.3(@babel/core@7.21.3)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -8736,7 +9744,7 @@ packages:
- supports-color
dev: true
- /babel-jest/29.5.0_@babel+core@7.21.3:
+ /babel-jest@29.5.0(@babel/core@7.21.3):
resolution: {integrity: sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -8746,14 +9754,14 @@ packages:
'@jest/transform': 29.5.0
'@types/babel__core': 7.20.0
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.5.0_@babel+core@7.21.3
+ babel-preset-jest: 29.5.0(@babel/core@7.21.3)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- /babel-loader/8.3.0_qtovpurzjlo3biun26ymnwui7i:
+ /babel-loader@8.3.0(@babel/core@7.21.3)(webpack@5.76.3):
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
@@ -8765,9 +9773,9 @@ packages:
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /babel-loader/9.1.2_qtovpurzjlo3biun26ymnwui7i:
+ /babel-loader@9.1.2(@babel/core@7.21.3)(webpack@5.76.3):
resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -8777,10 +9785,10 @@ packages:
'@babel/core': 7.21.3
find-cache-dir: 3.3.2
schema-utils: 4.0.0
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
dev: true
- /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9:
+ /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9):
resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==}
peerDependencies:
'@babel/core': ^7.11.6
@@ -8789,30 +9797,30 @@ packages:
'@babel/helper-plugin-utils': 7.10.4
'@mdx-js/util': 1.6.22
- /babel-plugin-const-enum/1.2.0_@babel+core@7.21.3:
+ /babel-plugin-const-enum@1.2.0(@babel/core@7.21.3):
resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.3)
'@babel/traverse': 7.21.3
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-dynamic-import-node/2.3.3:
+ /babel-plugin-dynamic-import-node@2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
object.assign: 4.1.4
- /babel-plugin-extract-import-names/1.6.22:
+ /babel-plugin-extract-import-names@1.6.22:
resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==}
dependencies:
'@babel/helper-plugin-utils': 7.10.4
- /babel-plugin-istanbul/6.1.1:
+ /babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
@@ -8824,7 +9832,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /babel-plugin-jest-hoist/28.1.3:
+ /babel-plugin-jest-hoist@28.1.3:
resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -8834,7 +9842,7 @@ packages:
'@types/babel__traverse': 7.18.3
dev: true
- /babel-plugin-jest-hoist/29.5.0:
+ /babel-plugin-jest-hoist@29.5.0:
resolution: {integrity: sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -8843,7 +9851,7 @@ packages:
'@types/babel__core': 7.20.0
'@types/babel__traverse': 7.18.3
- /babel-plugin-macros/2.8.0:
+ /babel-plugin-macros@2.8.0:
resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
dependencies:
'@babel/runtime': 7.21.0
@@ -8851,7 +9859,7 @@ packages:
resolve: 1.22.1
dev: true
- /babel-plugin-macros/3.1.0:
+ /babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
@@ -8860,65 +9868,148 @@ packages:
resolve: 1.22.1
dev: false
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.3:
+ /babel-plugin-module-resolver@4.1.0:
+ resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ find-babel-config: 1.2.0
+ glob: 7.2.3
+ pkg-up: 3.1.0
+ reselect: 4.1.7
+ resolve: 1.22.1
+ dev: false
+ optional: true
+
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.3:
+ /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.3):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
core-js-compat: 3.29.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.3:
+ /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.3):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
- /babel-plugin-transform-typescript-metadata/0.3.2:
+ /babel-plugin-react-native-web@0.18.12:
+ resolution: {integrity: sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==}
+ dev: false
+ optional: true
+
+ /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
+ resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
+ dev: false
+ optional: true
+
+ /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.21.3):
resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==}
+ peerDependencies:
+ '@babel/core': ^7
+ '@babel/traverse': ^7
+ peerDependenciesMeta:
+ '@babel/traverse':
+ optional: true
dependencies:
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.3:
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.3):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.21.3
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.3
-
- /babel-preset-jest/28.1.3_@babel+core@7.21.3:
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3)
+
+ /babel-preset-expo@9.3.2(@babel/core@7.21.3):
+ resolution: {integrity: sha512-BjyvjwjJG0MaaDBLP/esbXRrAItM76po9L9zfnLxeqgFsHCIPmD+6ir45coDLGAXwR8m9It3G1yqYM9JPyemsQ==}
+ dependencies:
+ '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ babel-plugin-module-resolver: 4.1.0
+ babel-plugin-react-native-web: 0.18.12
+ metro-react-native-babel-preset: 0.73.9(@babel/core@7.21.3)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ dev: false
+ optional: true
+
+ /babel-preset-fbjs@3.4.0(@babel/core@7.21.3):
+ resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3)
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
+ babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /babel-preset-jest@28.1.3(@babel/core@7.21.3):
resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -8926,10 +10017,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
babel-plugin-jest-hoist: 28.1.3
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.3
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.3)
dev: true
- /babel-preset-jest/29.5.0_@babel+core@7.21.3:
+ /babel-preset-jest@29.5.0(@babel/core@7.21.3):
resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -8937,9 +10028,9 @@ packages:
dependencies:
'@babel/core': 7.21.3
babel-plugin-jest-hoist: 29.5.0
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.3
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.3)
- /babelify/10.0.0_@babel+core@7.21.3:
+ /babelify@10.0.0(@babel/core@7.21.3):
resolution: {integrity: sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -8948,121 +10039,161 @@ packages:
'@babel/core': 7.21.3
dev: true
- /bail/1.0.5:
+ /bail@1.0.5:
resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /balanced-match/2.0.0:
+ /balanced-match@2.0.0:
resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
dev: true
- /base-58/0.0.1:
+ /base-58@0.0.1:
resolution: {integrity: sha512-denlKTnozZTVWuh1QkbXf10kkFNc+0/eno29RR+6g5al0yGI+iAOFt/cIA2tvnKoADlUFLZHs50ZdWF+c9WBnw==}
dev: false
- /base-64/0.1.0:
+ /base-64@0.1.0:
resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==}
dev: false
- /base-x/3.0.9:
+ /base-x@3.0.9:
resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==}
dependencies:
safe-buffer: 5.2.1
dev: false
- /base-x/4.0.0:
+ /base-x@4.0.0:
resolution: {integrity: sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==}
dev: false
- /base16/1.0.0:
+ /base16@1.0.0:
resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
dev: false
- /base64-js/1.5.1:
+ /base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- /base64url-universal/1.1.0:
+ /base64url-universal@1.1.0:
resolution: {integrity: sha512-WyftvZqye29YQ10ZnuiBeEj0lk8SN8xHU9hOznkLc85wS1cLTp6RpzlMrHxMPD9nH7S55gsBqMqgGyz93rqmkA==}
engines: {node: '>=8.3.0'}
dependencies:
base64url: 3.0.1
dev: false
- /base64url/3.0.1:
+ /base64url@3.0.1:
resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==}
engines: {node: '>=6.0.0'}
dev: false
- /batch/0.6.1:
+ /base@0.11.2:
+ resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.0
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: false
+ optional: true
+
+ /batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
- /bcrypt-pbkdf/1.0.2:
+ /bcrypt-pbkdf@1.0.2:
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
dependencies:
tweetnacl: 0.14.5
dev: false
- /bech32/1.1.4:
+ /bech32@1.1.4:
resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==}
- /bech32/2.0.0:
+ /bech32@2.0.0:
resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==}
dev: false
- /big-integer/1.6.51:
+ /better-opn@3.0.2:
+ resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ open: 8.4.2
+ dev: false
+ optional: true
+
+ /big-integer@1.6.51:
resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
engines: {node: '>=0.6'}
dev: false
- /big.js/5.2.2:
+ /big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- /bigint-mod-arith/3.1.2:
+ /bigint-mod-arith@3.1.2:
resolution: {integrity: sha512-nx8J8bBeiRR+NlsROFH9jHswW5HO8mgfOSqW0AmjicMMvaONDa8AO+5ViKDUUNytBPWiwfvZP4/Bj4Y3lUfvgQ==}
engines: {node: '>=10.4.0'}
dev: false
- /bignumber.js/9.1.1:
+ /bignumber.js@9.1.1:
resolution: {integrity: sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==}
dev: false
- /binary-extensions/2.2.0:
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- /bl/4.1.0:
+ /bindings@1.5.0:
+ resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+ dependencies:
+ file-uri-to-path: 1.0.0
+ dev: false
+ optional: true
+
+ /bip66@1.1.5:
+ resolution: {integrity: sha512-nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw==}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: false
+ optional: true
+
+ /bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.2
- dev: true
- /blakejs/1.2.1:
+ /blakejs@1.2.1:
resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==}
dev: false
- /bluebird/3.7.2:
+ /bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
dev: false
- /bn.js/4.11.6:
+ /blueimp-md5@2.19.0:
+ resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
+ dev: false
+ optional: true
+
+ /bn.js@4.11.6:
resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==}
dev: false
- /bn.js/4.12.0:
+ /bn.js@4.12.0:
resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
- /bn.js/5.2.0:
+ /bn.js@5.2.0:
resolution: {integrity: sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==}
dev: false
- /bn.js/5.2.1:
+ /bn.js@5.2.1:
resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
- /body-parser/1.20.1:
+ /body-parser@1.20.1:
resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
@@ -9081,7 +10212,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /body-parser/1.20.2:
+ /body-parser@1.20.2:
resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
@@ -9101,7 +10232,7 @@ packages:
- supports-color
dev: false
- /bonjour-service/1.1.1:
+ /bonjour-service@1.1.1:
resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==}
dependencies:
array-flatten: 2.1.2
@@ -9109,10 +10240,10 @@ packages:
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
- /boolbase/1.0.0:
+ /boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- /borsh/0.6.0:
+ /borsh@0.6.0:
resolution: {integrity: sha512-sl5k89ViqsThXQpYa9XDtz1sBl3l1lI313cFUY1HKr+wvMILnb+58xpkqTNrYbelh99dY7K8usxoCusQmqix9Q==}
dependencies:
bn.js: 5.2.0
@@ -9120,7 +10251,7 @@ packages:
text-encoding-utf-8: 1.0.2
dev: false
- /boxen/5.1.2:
+ /boxen@5.1.2:
resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
engines: {node: '>=10'}
dependencies:
@@ -9133,7 +10264,7 @@ packages:
widest-line: 3.1.0
wrap-ansi: 7.0.0
- /boxen/6.2.1:
+ /boxen@6.2.1:
resolution: {integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -9146,28 +10277,70 @@ packages:
widest-line: 4.0.1
wrap-ansi: 8.1.0
- /brace-expansion/1.1.11:
+ /bplist-creator@0.1.0:
+ resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
+ dependencies:
+ stream-buffers: 2.2.0
+ dev: false
+ optional: true
+
+ /bplist-parser@0.3.1:
+ resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==}
+ engines: {node: '>= 5.10.0'}
+ dependencies:
+ big-integer: 1.6.51
+ dev: false
+ optional: true
+
+ /bplist-parser@0.3.2:
+ resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==}
+ engines: {node: '>= 5.10.0'}
+ dependencies:
+ big-integer: 1.6.51
+ dev: false
+ optional: true
+
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- /brace-expansion/2.0.1:
+ /brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
dependencies:
balanced-match: 1.0.2
dev: true
- /braces/3.0.2:
+ /braces@2.3.2:
+ resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- /brorand/1.1.0:
+ /brorand@1.1.0:
resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
- /browser-pack/6.1.0:
+ /browser-pack@6.1.0:
resolution: {integrity: sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==}
hasBin: true
dependencies:
@@ -9179,13 +10352,13 @@ packages:
umd: 3.0.3
dev: true
- /browser-resolve/2.0.0:
+ /browser-resolve@2.0.0:
resolution: {integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==}
dependencies:
resolve: 1.22.1
dev: true
- /browserify-aes/1.2.0:
+ /browserify-aes@1.2.0:
resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
dependencies:
buffer-xor: 1.0.3
@@ -9195,14 +10368,14 @@ packages:
inherits: 2.0.4
safe-buffer: 5.2.1
- /browserify-cipher/1.0.1:
+ /browserify-cipher@1.0.1:
resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==}
dependencies:
browserify-aes: 1.2.0
browserify-des: 1.0.2
evp_bytestokey: 1.0.3
- /browserify-des/1.0.2:
+ /browserify-des@1.0.2:
resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
dependencies:
cipher-base: 1.0.4
@@ -9210,13 +10383,13 @@ packages:
inherits: 2.0.4
safe-buffer: 5.2.1
- /browserify-rsa/4.1.0:
+ /browserify-rsa@4.1.0:
resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==}
dependencies:
bn.js: 5.2.1
randombytes: 2.1.0
- /browserify-sign/4.2.1:
+ /browserify-sign@4.2.1:
resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==}
dependencies:
bn.js: 5.2.1
@@ -9229,13 +10402,13 @@ packages:
readable-stream: 3.6.2
safe-buffer: 5.2.1
- /browserify-zlib/0.2.0:
+ /browserify-zlib@0.2.0:
resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
dependencies:
pako: 1.0.11
dev: true
- /browserify/17.0.0:
+ /browserify@17.0.0:
resolution: {integrity: sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w==}
engines: {node: '>= 0.8'}
hasBin: true
@@ -9290,7 +10463,7 @@ packages:
xtend: 4.0.2
dev: true
- /browserslist/4.21.5:
+ /browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -9298,28 +10471,28 @@ packages:
caniuse-lite: 1.0.30001472
electron-to-chromium: 1.4.341
node-releases: 2.0.10
- update-browserslist-db: 1.0.10_browserslist@4.21.5
+ update-browserslist-db: 1.0.10(browserslist@4.21.5)
- /bs-logger/0.2.6:
+ /bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
dependencies:
fast-json-stable-stringify: 2.1.0
dev: false
- /bs58/4.0.1:
+ /bs58@4.0.1:
resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==}
dependencies:
base-x: 3.0.9
dev: false
- /bs58/5.0.0:
+ /bs58@5.0.0:
resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==}
dependencies:
base-x: 4.0.0
dev: false
- /bs58check/2.1.2:
+ /bs58check@2.1.2:
resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==}
dependencies:
bs58: 4.0.1
@@ -9327,42 +10500,60 @@ packages:
safe-buffer: 5.2.1
dev: false
- /bser/2.1.1:
+ /bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
node-int64: 0.4.0
- /buffer-from/1.1.2:
- resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
-
- /buffer-to-arraybuffer/0.0.5:
- resolution: {integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==}
+ /buffer-alloc-unsafe@1.1.0:
+ resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==}
dev: false
+ optional: true
+
+ /buffer-alloc@1.2.0:
+ resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==}
+ dependencies:
+ buffer-alloc-unsafe: 1.1.0
+ buffer-fill: 1.0.0
+ dev: false
+ optional: true
+
+ /buffer-fill@1.0.0:
+ resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==}
+ dev: false
+ optional: true
- /buffer-xor/1.0.3:
+ /buffer-from@1.1.2:
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
+ /buffer-to-arraybuffer@0.0.5:
+ resolution: {integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==}
+ dev: false
+
+ /buffer-xor@1.0.3:
resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
- /buffer/5.2.1:
+ /buffer@5.2.1:
resolution: {integrity: sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
dev: true
- /buffer/5.7.1:
+ /buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- /buffer/6.0.3:
+ /buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
dev: false
- /bufferutil/4.0.7:
+ /bufferutil@4.0.7:
resolution: {integrity: sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==}
engines: {node: '>=6.14.2'}
requiresBuild: true
@@ -9370,16 +10561,21 @@ packages:
node-gyp-build: 4.6.0
dev: false
- /builtin-status-codes/3.0.0:
+ /builtin-status-codes@3.0.0:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
dev: true
- /builtins/5.0.1:
+ /builtins@1.0.3:
+ resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
+ dev: false
+ optional: true
+
+ /builtins@5.0.1:
resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
dependencies:
semver: 7.3.8
- /bundle-require/4.0.1_esbuild@0.17.14:
+ /bundle-require@4.0.1(esbuild@0.17.14):
resolution: {integrity: sha512-9NQkRHlNdNpDBGmLpngF3EFDcwodhMUuLz9PaWYciVcQF9SE4LFjM2DB/xV1Li5JiuDMv7ZUWuC3rGbqR0MAXQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
@@ -9389,15 +10585,15 @@ packages:
load-tsconfig: 0.2.5
dev: true
- /bytes/3.0.0:
+ /bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
- /bytes/3.1.2:
+ /bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- /c32check/2.0.0:
+ /c32check@2.0.0:
resolution: {integrity: sha512-rpwfAcS/CMqo0oCqDf3r9eeLgScRE3l/xHDCXhM3UyrfvIn7PrLq63uHh7yYbv8NzaZn5MVsVhIRpQ+5GZ5HyA==}
engines: {node: '>=8'}
dependencies:
@@ -9405,22 +10601,65 @@ packages:
base-x: 4.0.0
dev: false
- /cac/6.7.14:
+ /cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
dev: true
- /cacheable-lookup/5.0.4:
+ /cacache@15.3.0:
+ resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@npmcli/fs': 1.1.1
+ '@npmcli/move-file': 1.1.2
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ glob: 7.2.3
+ infer-owner: 1.0.4
+ lru-cache: 6.0.0
+ minipass: 3.3.6
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ mkdirp: 1.0.4
+ p-map: 4.0.0
+ promise-inflight: 1.0.1
+ rimraf: 3.0.2
+ ssri: 8.0.1
+ tar: 6.1.11
+ unique-filename: 1.1.1
+ transitivePeerDependencies:
+ - bluebird
+ dev: false
+ optional: true
+
+ /cache-base@1.0.1:
+ resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.0
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
+ dev: false
+ optional: true
+
+ /cacheable-lookup@5.0.4:
resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
engines: {node: '>=10.6.0'}
dev: false
- /cacheable-lookup/6.1.0:
+ /cacheable-lookup@6.1.0:
resolution: {integrity: sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==}
engines: {node: '>=10.6.0'}
dev: false
- /cacheable-request/6.1.0:
+ /cacheable-request@6.1.0:
resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
engines: {node: '>=8'}
dependencies:
@@ -9432,7 +10671,7 @@ packages:
normalize-url: 4.5.1
responselike: 1.0.2
- /cacheable-request/7.0.2:
+ /cacheable-request@7.0.2:
resolution: {integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==}
engines: {node: '>=8'}
dependencies:
@@ -9445,35 +10684,57 @@ packages:
responselike: 2.0.1
dev: false
- /cached-path-relative/1.1.0:
+ /cached-path-relative@1.1.0:
resolution: {integrity: sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA==}
dev: true
- /caip/1.1.0:
+ /caip@1.1.0:
resolution: {integrity: sha512-yOO3Fu4ygyKYAdznuoaqschMKIZzcdgyMpBNtrIfrUhnOeaOWG+dh0c13wcOS6B/46IGGbncoyzJlio79jU7rw==}
dev: false
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.2.0
- /callsites/3.1.0:
+ /caller-callsite@2.0.0:
+ resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ callsites: 2.0.0
+ dev: false
+ optional: true
+
+ /caller-path@2.0.0:
+ resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-callsite: 2.0.0
+ dev: false
+ optional: true
+
+ /callsites@2.0.0:
+ resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- /camel-case/4.1.2:
+ /camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
tslib: 2.5.0
- /camelcase-css/2.0.1:
+ /camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- /camelcase-keys/6.2.2:
+ /camelcase-keys@6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
engines: {node: '>=8'}
dependencies:
@@ -9482,15 +10743,15 @@ packages:
quick-lru: 4.0.1
dev: true
- /camelcase/5.3.1:
+ /camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
- /camelcase/6.3.0:
+ /camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.21.5
@@ -9498,34 +10759,34 @@ packages:
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite/1.0.30001472:
+ /caniuse-lite@1.0.30001472:
resolution: {integrity: sha512-xWC/0+hHHQgj3/vrKYY0AAzeIUgr7L9wlELIcAvZdDUHlhL/kNxMdnQLOSOQfP8R51ZzPhmHdyMkI0MMpmxCfg==}
- /canonicalize/1.0.8:
+ /canonicalize@1.0.8:
resolution: {integrity: sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A==}
dev: false
- /capability/0.2.5:
+ /capability@0.2.5:
resolution: {integrity: sha512-rsJZYVCgXd08sPqwmaIqjAd5SUTfonV0z/gDJ8D6cN8wQphky1kkAYEqQ+hmDxTw7UihvBfjUVUSY+DBEe44jg==}
dev: false
- /case/1.6.3:
+ /case@1.6.3:
resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==}
engines: {node: '>= 0.8.0'}
- /caseless/0.12.0:
+ /caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
dev: false
- /cborg/1.10.1:
+ /cborg@1.10.1:
resolution: {integrity: sha512-et6Qm8MOUY2kCWa5GKk2MlBVoPjHv0hQBmlzI/Z7+5V3VJCeIkGehIB3vWknNsm2kOkAIs6wEKJFJo8luWQQ/w==}
hasBin: true
dev: false
- /ccount/1.1.0:
+ /ccount@1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
- /ceramic-cacao/1.4.0:
+ /ceramic-cacao@1.4.0:
resolution: {integrity: sha512-Vc4qsPSBGWmmNLTKBUNeuDU4xlLU5dY1atHwoBiYrjCRq2NKScW+aB+msJCKns6YpkzJW/trTMs72roN1WLvzQ==}
dependencies:
'@ethersproject/wallet': 5.7.0
@@ -9537,7 +10798,7 @@ packages:
uint8arrays: 3.1.1
dev: false
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -9545,7 +10806,7 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/4.1.0:
+ /chalk@4.1.0:
resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==}
engines: {node: '>=10'}
dependencies:
@@ -9553,32 +10814,37 @@ packages:
supports-color: 7.2.0
dev: true
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /chalk/5.2.0:
+ /chalk@5.2.0:
resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
dev: true
- /char-regex/1.0.2:
+ /char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- /character-entities-legacy/1.1.4:
+ /character-entities-legacy@1.1.4:
resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
- /character-entities/1.2.4:
+ /character-entities@1.2.4:
resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
- /character-reference-invalid/1.1.4:
+ /character-reference-invalid@1.1.4:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
- /cheerio-select/2.1.0:
+ /charenc@0.0.2:
+ resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
+ dev: false
+ optional: true
+
+ /cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
dependencies:
boolbase: 1.0.0
@@ -9589,7 +10855,7 @@ packages:
domutils: 3.0.1
dev: false
- /cheerio/1.0.0-rc.12:
+ /cheerio@1.0.0-rc.12:
resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
engines: {node: '>= 6'}
dependencies:
@@ -9602,7 +10868,7 @@ packages:
parse5-htmlparser2-tree-adapter: 7.0.0
dev: false
- /chokidar/3.5.3:
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -9616,27 +10882,26 @@ packages:
optionalDependencies:
fsevents: 2.3.2
- /chownr/1.1.4:
+ /chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
dev: false
- /chownr/2.0.0:
+ /chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- dev: true
- /chrome-trace-event/1.0.3:
+ /chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- /ci-info/2.0.0:
+ /ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- /ci-info/3.8.0:
+ /ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
- /cids/0.7.5:
+ /cids@0.7.5:
resolution: {integrity: sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==}
engines: {node: '>=4.0.0', npm: '>=3.0.0'}
deprecated: This module has been superseded by the multiformats module
@@ -9648,61 +10913,78 @@ packages:
multihashes: 0.4.21
dev: false
- /cipher-base/1.0.4:
+ /cipher-base@1.0.4:
resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
- /cjs-module-lexer/1.2.2:
+ /cjs-module-lexer@1.2.2:
resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
- /class-is/1.1.0:
+ /class-is@1.1.0:
resolution: {integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==}
dev: false
- /class-transformer/0.5.1:
+ /class-transformer@0.5.1:
resolution: {integrity: sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==}
dev: false
- /class-validator/0.13.2:
+ /class-utils@0.3.6:
+ resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
+ dev: false
+ optional: true
+
+ /class-validator@0.13.2:
resolution: {integrity: sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw==}
dependencies:
libphonenumber-js: 1.10.24
validator: 13.9.0
dev: false
- /clean-css/5.3.2:
+ /clean-css@5.3.2:
resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
- /clean-stack/2.2.0:
+ /clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- /cli-boxes/2.2.1:
+ /cli-boxes@2.2.1:
resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
engines: {node: '>=6'}
- /cli-boxes/3.0.0:
+ /cli-boxes@3.0.0:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
- /cli-cursor/3.1.0:
+ /cli-cursor@2.1.0:
+ resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
+ engines: {node: '>=4'}
+ dependencies:
+ restore-cursor: 2.0.0
+ dev: false
+ optional: true
+
+ /cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
dependencies:
restore-cursor: 3.1.0
- dev: true
- /cli-spinners/2.6.1:
+ /cli-spinners@2.6.1:
resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
engines: {node: '>=6'}
- dev: true
- /cli-table3/0.6.3:
+ /cli-table3@0.6.3:
resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
engines: {node: 10.* || >= 12.*}
dependencies:
@@ -9710,7 +10992,7 @@ packages:
optionalDependencies:
'@colors/colors': 1.5.0
- /cli-truncate/2.1.0:
+ /cli-truncate@2.1.0:
resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
engines: {node: '>=8'}
dependencies:
@@ -9718,7 +11000,7 @@ packages:
string-width: 4.2.3
dev: true
- /cli-truncate/3.1.0:
+ /cli-truncate@3.1.0:
resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -9726,11 +11008,20 @@ packages:
string-width: 5.1.2
dev: true
- /client-only/0.0.1:
+ /client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
dev: false
- /cliui/7.0.4:
+ /cliui@6.0.0:
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ dev: false
+ optional: true
+
+ /cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
string-width: 4.2.3
@@ -9738,7 +11029,7 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /cliui/8.0.1:
+ /cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
dependencies:
@@ -9746,7 +11037,7 @@ packages:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- /clone-deep/4.0.1:
+ /clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
dependencies:
@@ -9754,59 +11045,85 @@ packages:
kind-of: 6.0.3
shallow-clone: 3.0.1
- /clone-response/1.0.3:
+ /clone-response@1.0.3:
resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
dependencies:
mimic-response: 1.0.1
- /clsx/1.2.1:
+ /clone@1.0.4:
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
+ dev: false
+ optional: true
+
+ /clone@2.1.2:
+ resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
+ engines: {node: '>=0.8'}
+ dev: false
+ optional: true
+
+ /clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
- /co/4.6.0:
+ /co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- /collapse-white-space/1.0.6:
+ /collapse-white-space@1.0.6:
resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
- /collect-v8-coverage/1.0.1:
+ /collect-v8-coverage@1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
- /color-convert/1.9.3:
+ /collection-visit@1.0.0:
+ resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: false
+ optional: true
+
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /colord/2.9.3:
+ /colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- /colorette/2.0.19:
+ /colorette@1.4.0:
+ resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+ dev: false
+ optional: true
+
+ /colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
- /colors/1.3.0:
+ /colors@1.3.0:
resolution: {integrity: sha512-EDpX3a7wHMWFA7PUHWPHNWqOxIIRSJetuwl0AS5Oi/5FMV8kWm69RTlgm00GKjBO1xFHMtBbL49yRtMMdticBw==}
engines: {node: '>=0.1.90'}
dev: false
- /combine-promises/1.1.0:
+ /combine-promises@1.1.0:
resolution: {integrity: sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==}
engines: {node: '>=10'}
- /combine-source-map/0.8.0:
+ /combine-source-map@0.8.0:
resolution: {integrity: sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg==}
dependencies:
convert-source-map: 1.1.3
@@ -9815,66 +11132,85 @@ packages:
source-map: 0.5.7
dev: true
- /combined-stream/1.0.8:
+ /combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
dependencies:
delayed-stream: 1.0.0
- /comma-separated-tokens/1.0.8:
+ /comma-separated-tokens@1.0.8:
resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
- /commander/10.0.0:
+ /command-exists@1.2.9:
+ resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
+ dev: false
+ optional: true
+
+ /commander@10.0.0:
resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==}
engines: {node: '>=14'}
dev: true
- /commander/2.20.3:
+ /commander@2.13.0:
+ resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==}
+ dev: false
+ optional: true
+
+ /commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- /commander/4.1.1:
+ /commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
- dev: true
- /commander/5.1.0:
+ /commander@5.1.0:
resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
engines: {node: '>= 6'}
- /commander/7.2.0:
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- /commander/8.3.0:
+ /commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- /commander/9.5.0:
+ /commander@9.5.0:
resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
engines: {node: ^12.20.0 || >=14}
- /commondir/1.0.1:
+ /commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- /compare-func/2.0.0:
+ /compare-func@2.0.0:
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
dependencies:
array-ify: 1.0.0
dot-prop: 5.3.0
dev: true
- /compare-versions/3.6.0:
+ /compare-versions@3.6.0:
resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==}
dev: false
optional: true
- /compressible/2.0.18:
+ /component-emitter@1.3.0:
+ resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
+ dev: false
+ optional: true
+
+ /component-type@1.2.1:
+ resolution: {integrity: sha512-Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg==}
+ dev: false
+ optional: true
+
+ /compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- /compression/1.7.4:
+ /compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -9888,10 +11224,10 @@ packages:
transitivePeerDependencies:
- supports-color
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- /concat-stream/1.6.2:
+ /concat-stream@1.6.2:
resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
engines: {'0': node >= 0.8}
dependencies:
@@ -9901,7 +11237,7 @@ packages:
typedarray: 0.0.6
dev: true
- /configstore/5.0.1:
+ /configstore@5.0.1:
resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
engines: {node: '>=8'}
dependencies:
@@ -9912,36 +11248,49 @@ packages:
write-file-atomic: 3.0.3
xdg-basedir: 4.0.0
- /confusing-browser-globals/1.0.11:
+ /confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
dev: true
- /connect-history-api-fallback/2.0.0:
+ /connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
- /consola/2.15.3:
+ /connect@3.7.0:
+ resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
+ engines: {node: '>= 0.10.0'}
+ dependencies:
+ debug: 2.6.9
+ finalhandler: 1.1.2
+ parseurl: 1.3.3
+ utils-merge: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /consola@2.15.3:
resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
- /console-browserify/1.2.0:
+ /console-browserify@1.2.0:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
dev: true
- /constants-browserify/1.0.0:
+ /constants-browserify@1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
dev: true
- /content-disposition/0.5.2:
+ /content-disposition@0.5.2:
resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
engines: {node: '>= 0.6'}
- /content-disposition/0.5.4:
+ /content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
dependencies:
safe-buffer: 5.2.1
- /content-hash/2.5.2:
+ /content-hash@2.5.2:
resolution: {integrity: sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==}
dependencies:
cids: 0.7.5
@@ -9949,11 +11298,11 @@ packages:
multihashes: 0.4.21
dev: false
- /content-type/1.0.5:
+ /content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
- /conventional-changelog-angular/5.0.13:
+ /conventional-changelog-angular@5.0.13:
resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==}
engines: {node: '>=10'}
dependencies:
@@ -9961,7 +11310,7 @@ packages:
q: 1.5.1
dev: true
- /conventional-changelog-conventionalcommits/5.0.0:
+ /conventional-changelog-conventionalcommits@5.0.0:
resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==}
engines: {node: '>=10'}
dependencies:
@@ -9970,7 +11319,7 @@ packages:
q: 1.5.1
dev: true
- /conventional-commits-parser/3.2.4:
+ /conventional-commits-parser@3.2.4:
resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==}
engines: {node: '>=10'}
hasBin: true
@@ -9983,29 +11332,35 @@ packages:
through2: 4.0.2
dev: true
- /convert-source-map/1.1.3:
+ /convert-source-map@1.1.3:
resolution: {integrity: sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg==}
dev: true
- /convert-source-map/1.9.0:
+ /convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
- /convert-source-map/2.0.0:
+ /convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- /cookie-signature/1.0.6:
+ /cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- /cookie/0.5.0:
+ /cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
- /copy-text-to-clipboard/3.1.0:
+ /copy-descriptor@0.1.1:
+ resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /copy-text-to-clipboard@3.1.0:
resolution: {integrity: sha512-PFM6BnjLnOON/lB3ta/Jg7Ywsv+l9kQGD4TWDCSlRBGmqnnTM5MrDkhAFgw+8HZt0wW6Q2BBE4cmy9sq+s9Qng==}
engines: {node: '>=12'}
dev: false
- /copy-webpack-plugin/11.0.0_webpack@5.76.3:
+ /copy-webpack-plugin@11.0.0(webpack@5.76.3):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -10017,29 +11372,29 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.0.0
serialize-javascript: 6.0.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /core-js-compat/3.29.1:
+ /core-js-compat@3.29.1:
resolution: {integrity: sha512-QmchCua884D8wWskMX8tW5ydINzd8oSJVx38lx/pVkFGqztxt73GYre3pm/hyYq8bPf+MW5In4I/uRShFDsbrA==}
dependencies:
browserslist: 4.21.5
- /core-js-pure/3.29.1:
+ /core-js-pure@3.29.1:
resolution: {integrity: sha512-4En6zYVi0i0XlXHVz/bi6l1XDjCqkKRq765NXuX+SnaIatlE96Odt5lMLjdxUiNI1v9OXI5DSLWYPlmTfkTktg==}
requiresBuild: true
- /core-js/3.29.1:
+ /core-js@3.29.1:
resolution: {integrity: sha512-+jwgnhg6cQxKYIIjGtAHq2nwUOolo9eoFZ4sHfUH09BLXBgxnH4gA0zEd+t+BO2cNB8idaBtZFcFTRjQJRJmAw==}
requiresBuild: true
- /core-util-is/1.0.2:
+ /core-util-is@1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
dev: false
- /core-util-is/1.0.3:
+ /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- /cors/2.8.5:
+ /cors@2.8.5:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
engines: {node: '>= 0.10'}
dependencies:
@@ -10047,7 +11402,7 @@ packages:
vary: 1.1.2
dev: false
- /cosmiconfig-typescript-loader/4.3.0_cwejo6a3jrsuzg27ji24tbs5ya:
+ /cosmiconfig-typescript-loader@4.3.0(@types/node@18.15.10)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@4.9.5):
resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
@@ -10058,11 +11413,22 @@ packages:
dependencies:
'@types/node': 18.15.10
cosmiconfig: 8.1.3
- ts-node: 10.9.1_z3vu5dg2hu3jqyh3anri5tms2q
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5)
typescript: 4.9.5
dev: true
- /cosmiconfig/6.0.0:
+ /cosmiconfig@5.2.1:
+ resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
+ engines: {node: '>=4'}
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+ dev: false
+ optional: true
+
+ /cosmiconfig@6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
dependencies:
@@ -10072,7 +11438,7 @@ packages:
path-type: 4.0.0
yaml: 1.10.2
- /cosmiconfig/7.1.0:
+ /cosmiconfig@7.1.0:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
@@ -10082,7 +11448,7 @@ packages:
path-type: 4.0.0
yaml: 1.10.2
- /cosmiconfig/8.1.3:
+ /cosmiconfig@8.1.3:
resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==}
engines: {node: '>=14'}
dependencies:
@@ -10091,18 +11457,18 @@ packages:
parse-json: 5.2.0
path-type: 4.0.0
- /crc-32/1.2.2:
+ /crc-32@1.2.2:
resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
engines: {node: '>=0.8'}
hasBin: true
- /create-ecdh/4.0.4:
+ /create-ecdh@4.0.4:
resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
dependencies:
bn.js: 4.12.0
elliptic: 6.5.4
- /create-hash/1.2.0:
+ /create-hash@1.2.0:
resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
dependencies:
cipher-base: 1.0.4
@@ -10111,7 +11477,7 @@ packages:
ripemd160: 2.0.2
sha.js: 2.4.11
- /create-hmac/1.1.7:
+ /create-hmac@1.1.7:
resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
dependencies:
cipher-base: 1.0.4
@@ -10121,27 +11487,27 @@ packages:
safe-buffer: 5.2.1
sha.js: 2.4.11
- /create-require/1.1.1:
+ /create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
- /credential-status/2.0.5:
+ /credential-status@2.0.5:
resolution: {integrity: sha512-hh0pOcRidROn4MC1wF3vNURhPEMSzm3RcpFIl5PFVj5HWgCaZy16nXmrOl5cmr50Jhp2WV48cWbNMxh4OFWU+w==}
dependencies:
did-jwt: 6.11.5
did-resolver: 4.0.1
dev: false
- /credentials-context/2.0.0:
+ /credentials-context@2.0.0:
resolution: {integrity: sha512-/mFKax6FK26KjgV2KW2D4YqKgoJ5DVJpNt87X2Jc9IxT2HBMy7nEIlc+n7pEi+YFFe721XqrvZPd+jbyyBjsvQ==}
dev: false
- /cron-parser/4.8.1:
+ /cron-parser@4.8.1:
resolution: {integrity: sha512-jbokKWGcyU4gl6jAfX97E1gDpY12DJ1cLJZmoDzaAln/shZ+S3KBFBuA2Q6WeUN4gJf/8klnV1EfvhA2lK5IRQ==}
engines: {node: '>=12.0.0'}
dependencies:
luxon: 3.3.0
- /cross-env/7.0.3:
+ /cross-env@7.0.3:
resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
hasBin: true
@@ -10149,7 +11515,7 @@ packages:
cross-spawn: 7.0.3
dev: true
- /cross-fetch/3.1.5_iqh6pvemik3ebzneirvlerj7uq:
+ /cross-fetch@3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq):
resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
dependencies:
node-fetch: 2.6.7
@@ -10158,7 +11524,19 @@ packages:
dev: false
patched: true
- /cross-spawn/7.0.3:
+ /cross-spawn@6.0.5:
+ resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
+ engines: {node: '>=4.8'}
+ dependencies:
+ nice-try: 1.0.5
+ path-key: 2.0.1
+ semver: 5.7.1
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: false
+ optional: true
+
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
@@ -10166,7 +11544,12 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
- /crypto-browserify/3.12.0:
+ /crypt@0.0.2:
+ resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
+ dev: false
+ optional: true
+
+ /crypto-browserify@3.12.0:
resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
dependencies:
browserify-cipher: 1.0.1
@@ -10181,21 +11564,27 @@ packages:
randombytes: 2.1.0
randomfill: 1.0.4
- /crypto-ld/6.0.0:
+ /crypto-ld@6.0.0:
resolution: {integrity: sha512-XWL1LslqggNoaCI/m3I7HcvaSt9b2tYzdrXO+jHLUj9G1BvRfvV7ZTFDVY5nifYuIGAPdAGu7unPxLRustw3VA==}
engines: {node: '>=8.3.0'}
dev: false
- /crypto-ld/7.0.0:
+ /crypto-ld@7.0.0:
resolution: {integrity: sha512-RrXy6aB0TOhSiqsgavTQt1G8mKomKIaNLb2JZxj7A/Vi0EwmXguuBQoeiAvePfK6bDR3uQbqYnaLLs4irTWwgw==}
engines: {node: '>=14'}
dev: false
- /crypto-random-string/2.0.0:
+ /crypto-random-string@1.0.0:
+ resolution: {integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- /css-declaration-sorter/6.4.0_postcss@8.4.21:
+ /css-declaration-sorter@6.4.0(postcss@8.4.21):
resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
@@ -10203,28 +11592,28 @@ packages:
dependencies:
postcss: 8.4.21
- /css-functions-list/3.1.0:
+ /css-functions-list@3.1.0:
resolution: {integrity: sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==}
engines: {node: '>=12.22'}
dev: true
- /css-loader/6.7.3_webpack@5.76.3:
+ /css-loader@6.7.3(webpack@5.76.3):
resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.21
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.21
- postcss-modules-scope: 3.0.0_postcss@8.4.21
- postcss-modules-values: 4.0.0_postcss@8.4.21
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.21)
+ postcss-modules-local-by-default: 4.0.0(postcss@8.4.21)
+ postcss-modules-scope: 3.0.0(postcss@8.4.21)
+ postcss-modules-values: 4.0.0(postcss@8.4.21)
postcss-value-parser: 4.2.0
semver: 7.3.8
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /css-minimizer-webpack-plugin/4.2.2_6xivdjm2sml3syouufpdefilzi:
+ /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.76.3):
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -10250,15 +11639,15 @@ packages:
optional: true
dependencies:
clean-css: 5.3.2
- cssnano: 5.1.15_postcss@8.4.21
+ cssnano: 5.1.15(postcss@8.4.21)
jest-worker: 29.5.0
postcss: 8.4.21
schema-utils: 4.0.0
serialize-javascript: 6.0.1
source-map: 0.6.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /css-select/4.3.0:
+ /css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
@@ -10267,7 +11656,7 @@ packages:
domutils: 2.8.0
nth-check: 2.1.1
- /css-select/5.1.0:
+ /css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
dependencies:
boolbase: 1.0.0
@@ -10276,14 +11665,14 @@ packages:
domutils: 3.0.1
nth-check: 2.1.1
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
mdn-data: 2.0.14
source-map: 0.6.1
- /css-tree/2.2.1:
+ /css-tree@2.2.1:
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
dependencies:
@@ -10291,7 +11680,7 @@ packages:
source-map-js: 1.0.2
dev: true
- /css-tree/2.3.1:
+ /css-tree@2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
dependencies:
@@ -10299,67 +11688,67 @@ packages:
source-map-js: 1.0.2
dev: true
- /css-what/6.1.0:
+ /css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-advanced/5.3.10_postcss@8.4.21:
+ /cssnano-preset-advanced@5.3.10(postcss@8.4.21):
resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.14_postcss@8.4.21
- cssnano-preset-default: 5.2.14_postcss@8.4.21
+ autoprefixer: 10.4.14(postcss@8.4.21)
+ cssnano-preset-default: 5.2.14(postcss@8.4.21)
postcss: 8.4.21
- postcss-discard-unused: 5.1.0_postcss@8.4.21
- postcss-merge-idents: 5.1.1_postcss@8.4.21
- postcss-reduce-idents: 5.2.0_postcss@8.4.21
- postcss-zindex: 5.1.0_postcss@8.4.21
+ postcss-discard-unused: 5.1.0(postcss@8.4.21)
+ postcss-merge-idents: 5.1.1(postcss@8.4.21)
+ postcss-reduce-idents: 5.2.0(postcss@8.4.21)
+ postcss-zindex: 5.1.0(postcss@8.4.21)
- /cssnano-preset-default/5.2.14_postcss@8.4.21:
+ /cssnano-preset-default@5.2.14(postcss@8.4.21):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.0_postcss@8.4.21
- cssnano-utils: 3.1.0_postcss@8.4.21
+ css-declaration-sorter: 6.4.0(postcss@8.4.21)
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
- postcss-calc: 8.2.4_postcss@8.4.21
- postcss-colormin: 5.3.1_postcss@8.4.21
- postcss-convert-values: 5.1.3_postcss@8.4.21
- postcss-discard-comments: 5.1.2_postcss@8.4.21
- postcss-discard-duplicates: 5.1.0_postcss@8.4.21
- postcss-discard-empty: 5.1.1_postcss@8.4.21
- postcss-discard-overridden: 5.1.0_postcss@8.4.21
- postcss-merge-longhand: 5.1.7_postcss@8.4.21
- postcss-merge-rules: 5.1.4_postcss@8.4.21
- postcss-minify-font-values: 5.1.0_postcss@8.4.21
- postcss-minify-gradients: 5.1.1_postcss@8.4.21
- postcss-minify-params: 5.1.4_postcss@8.4.21
- postcss-minify-selectors: 5.2.1_postcss@8.4.21
- postcss-normalize-charset: 5.1.0_postcss@8.4.21
- postcss-normalize-display-values: 5.1.0_postcss@8.4.21
- postcss-normalize-positions: 5.1.1_postcss@8.4.21
- postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21
- postcss-normalize-string: 5.1.0_postcss@8.4.21
- postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21
- postcss-normalize-unicode: 5.1.1_postcss@8.4.21
- postcss-normalize-url: 5.1.0_postcss@8.4.21
- postcss-normalize-whitespace: 5.1.1_postcss@8.4.21
- postcss-ordered-values: 5.1.3_postcss@8.4.21
- postcss-reduce-initial: 5.1.2_postcss@8.4.21
- postcss-reduce-transforms: 5.1.0_postcss@8.4.21
- postcss-svgo: 5.1.0_postcss@8.4.21
- postcss-unique-selectors: 5.1.1_postcss@8.4.21
-
- /cssnano-utils/3.1.0_postcss@8.4.21:
+ postcss-calc: 8.2.4(postcss@8.4.21)
+ postcss-colormin: 5.3.1(postcss@8.4.21)
+ postcss-convert-values: 5.1.3(postcss@8.4.21)
+ postcss-discard-comments: 5.1.2(postcss@8.4.21)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.21)
+ postcss-discard-empty: 5.1.1(postcss@8.4.21)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.21)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.21)
+ postcss-merge-rules: 5.1.4(postcss@8.4.21)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.21)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.21)
+ postcss-minify-params: 5.1.4(postcss@8.4.21)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.21)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.21)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.21)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.21)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.21)
+ postcss-normalize-string: 5.1.0(postcss@8.4.21)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.21)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.21)
+ postcss-normalize-url: 5.1.0(postcss@8.4.21)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.21)
+ postcss-ordered-values: 5.1.3(postcss@8.4.21)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.21)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.21)
+ postcss-svgo: 5.1.0(postcss@8.4.21)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.21)
+
+ /cssnano-utils@3.1.0(postcss@8.4.21):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10367,84 +11756,94 @@ packages:
dependencies:
postcss: 8.4.21
- /cssnano/5.1.15_postcss@8.4.21:
+ /cssnano@5.1.15(postcss@8.4.21):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14_postcss@8.4.21
+ cssnano-preset-default: 5.2.14(postcss@8.4.21)
lilconfig: 2.1.0
postcss: 8.4.21
yaml: 1.10.2
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
- /csso/5.0.5:
+ /csso@5.0.5:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
dependencies:
css-tree: 2.2.1
dev: true
- /csstype/3.1.1:
+ /csstype@3.1.1:
resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
- /d/1.0.1:
+ /d@1.0.1:
resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
dependencies:
es5-ext: 0.10.62
type: 1.2.0
dev: false
- /dag-jose-utils/2.0.0:
+ /dag-jose-utils@2.0.0:
resolution: {integrity: sha512-vE6EyhjSh+dfr8hbs/gLk0v98h2ekjy6r6pXvmB4SvO6awalt95LEetG0QDh5rmMYE3FO8ynp3xrCYsAHHZOlg==}
dependencies:
'@ipld/dag-cbor': 7.0.3
multiformats: 9.9.0
dev: false
- /dag-jose-utils/3.0.0:
+ /dag-jose-utils@3.0.0:
resolution: {integrity: sha512-gu+XutOTy3kD8fDcA1SMjZ2U0mUOb/hxoRVZaMCizXN7Ssbc5dKOzeXQ4GquV4BdQzs3w5Y7irOpn2plFPIJfg==}
dependencies:
'@ipld/dag-cbor': 7.0.3
multiformats: 11.0.2
dev: false
- /damerau-levenshtein/1.0.8:
+ /dag-map@1.0.2:
+ resolution: {integrity: sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==}
+ dev: false
+ optional: true
+
+ /damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
dev: true
- /dargs/7.0.0:
+ /dargs@7.0.0:
resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
engines: {node: '>=8'}
dev: true
- /dash-ast/1.0.0:
+ /dash-ast@1.0.0:
resolution: {integrity: sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==}
dev: true
- /dashdash/1.14.1:
+ /dashdash@1.14.1:
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
engines: {node: '>=0.10'}
dependencies:
assert-plus: 1.0.0
dev: false
- /data-uri-to-buffer/3.0.1:
+ /data-uri-to-buffer@3.0.1:
resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
engines: {node: '>= 6'}
dev: false
- /dataloader/2.2.2:
+ /dataloader@2.2.2:
resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==}
dev: false
- /debug/2.6.9:
+ /dayjs@1.11.7:
+ resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
+ dev: false
+ optional: true
+
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
@@ -10454,7 +11853,7 @@ packages:
dependencies:
ms: 2.0.0
- /debug/3.2.7:
+ /debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
@@ -10463,9 +11862,8 @@ packages:
optional: true
dependencies:
ms: 2.1.3
- dev: true
- /debug/4.3.4:
+ /debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -10476,7 +11874,7 @@ packages:
dependencies:
ms: 2.1.2
- /decamelize-keys/1.1.1:
+ /decamelize-keys@1.1.1:
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -10484,33 +11882,32 @@ packages:
map-obj: 1.0.1
dev: true
- /decamelize/1.2.0:
+ /decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- dev: true
- /decode-uri-component/0.2.2:
+ /decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
dev: false
- /decompress-response/3.3.0:
+ /decompress-response@3.3.0:
resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
engines: {node: '>=4'}
dependencies:
mimic-response: 1.0.1
- /decompress-response/6.0.0:
+ /decompress-response@6.0.0:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
dependencies:
mimic-response: 3.1.0
dev: false
- /dedent/0.7.0:
+ /dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
- /deep-equal/2.2.0:
+ /deep-equal@2.2.0:
resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
dependencies:
call-bind: 1.0.2
@@ -10532,46 +11929,93 @@ packages:
which-typed-array: 1.1.9
dev: true
- /deep-extend/0.6.0:
+ /deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
- /deep-is/0.1.4:
+ /deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- /deepmerge/4.3.1:
+ /deepmerge@3.3.0:
+ resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- /default-gateway/6.0.3:
+ /default-gateway@4.2.0:
+ resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==}
+ engines: {node: '>=6'}
+ dependencies:
+ execa: 1.0.0
+ ip-regex: 2.1.0
+ dev: false
+ optional: true
+
+ /default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
dependencies:
execa: 5.1.1
- /defer-to-connect/1.1.3:
+ /defaults@1.0.4:
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+ dependencies:
+ clone: 1.0.4
+ dev: false
+ optional: true
+
+ /defer-to-connect@1.1.3:
resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==}
- /defer-to-connect/2.0.1:
+ /defer-to-connect@2.0.1:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
dev: false
- /define-lazy-prop/2.0.0:
+ /define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- /define-properties/1.2.0:
+ /define-properties@1.2.0:
resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
engines: {node: '>= 0.4'}
dependencies:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
- /defined/1.0.1:
+ /define-property@0.2.5:
+ resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 0.1.6
+ dev: false
+ optional: true
+
+ /define-property@1.0.0:
+ resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.2
+ dev: false
+ optional: true
+
+ /define-property@2.0.2:
+ resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.2
+ isobject: 3.0.1
+ dev: false
+ optional: true
+
+ /defined@1.0.1:
resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
- /del/6.1.1:
+ /del@6.1.1:
resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
dependencies:
@@ -10584,19 +12028,33 @@ packages:
rimraf: 3.0.2
slash: 3.0.0
- /delayed-stream/1.0.0:
+ /delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- /depd/1.1.2:
+ /denodeify@1.2.1:
+ resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
+ dev: false
+ optional: true
+
+ /depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
- /depd/2.0.0:
+ /depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- /deps-sort/2.0.1:
+ /deprecated-react-native-prop-types@3.0.1:
+ resolution: {integrity: sha512-J0jCJcsk4hMlIb7xwOZKLfMpuJn6l8UtrPEzzQV5ewz5gvKNYakhBuq9h2rWX7YwHHJZFhU5W8ye7dB9oN8VcQ==}
+ dependencies:
+ '@react-native/normalize-color': 2.1.0
+ invariant: 2.2.4
+ prop-types: 15.8.1
+ dev: false
+ optional: true
+
+ /deps-sort@2.0.1:
resolution: {integrity: sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw==}
hasBin: true
dependencies:
@@ -10606,42 +12064,42 @@ packages:
through2: 2.0.5
dev: true
- /des.js/1.0.1:
+ /des.js@1.0.1:
resolution: {integrity: sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==}
dependencies:
inherits: 2.0.4
minimalistic-assert: 1.0.1
- /destroy/1.2.0:
+ /destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- /detab/2.0.4:
+ /detab@2.0.4:
resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==}
dependencies:
repeat-string: 1.6.1
- /detect-browser/5.3.0:
+ /detect-browser@5.3.0:
resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==}
- /detect-indent/7.0.1:
+ /detect-indent@7.0.1:
resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
engines: {node: '>=12.20'}
dev: true
- /detect-newline/3.1.0:
+ /detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
- /detect-newline/4.0.0:
+ /detect-newline@4.0.0:
resolution: {integrity: sha512-1aXUEPdfGdzVPFpzGJJNgq9o81bGg1s09uxTWsqBlo9PI332uyJRQq13+LK/UN4JfxJbFdCXonUFQ9R/p7yCtw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /detect-node/2.1.0:
+ /detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
- /detect-port-alt/1.1.6:
+ /detect-port-alt@1.1.6:
resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==}
engines: {node: '>= 4.2.1'}
hasBin: true
@@ -10651,7 +12109,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /detect-port/1.5.1:
+ /detect-port@1.5.1:
resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
hasBin: true
dependencies:
@@ -10660,7 +12118,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /detective/5.2.1:
+ /detective@5.2.1:
resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
engines: {node: '>=0.8.0'}
hasBin: true
@@ -10669,7 +12127,7 @@ packages:
defined: 1.0.1
minimist: 1.2.8
- /did-jwt-vc/3.1.2:
+ /did-jwt-vc@3.1.2:
resolution: {integrity: sha512-+3P2wsUF+61nmjnKaH6ueIlCMjz/NGP+vzu07HyBfTR/wVIALMpMLwS4Goz8uFkBidmCjr0zYJnXk+GWdGVfNg==}
engines: {node: '>=14'}
dependencies:
@@ -10677,7 +12135,7 @@ packages:
did-resolver: 4.0.1
dev: false
- /did-jwt/6.11.5:
+ /did-jwt@6.11.5:
resolution: {integrity: sha512-7Ew4rftHd2RTxLDfAjN6cz0wCMjTzmRBOtFBVuXUPguJF6ct01hJqlM1fr+IuI+bW7gH9QSeh9kDrvlOJnkf9w==}
dependencies:
'@stablelib/ed25519': 1.0.3
@@ -10694,15 +12152,19 @@ packages:
uint8arrays: 3.1.1
dev: false
- /did-resolver/3.2.2:
+ /did-resolver@3.2.2:
resolution: {integrity: sha512-Eeo2F524VM5N3W4GwglZrnul2y6TLTwMQP3In62JdG34NZoqihYyOZLk+5wUW8sSgvIYIcJM8Dlt3xsdKZZ3tg==}
dev: false
- /did-resolver/4.0.1:
+ /did-resolver@4.0.1:
resolution: {integrity: sha512-eHs2VLKhcANmh08S87PKvOauIAmSOd7nb7AlhNxcvOyDAIGQY1UfbiqI1VOW5IDKvOO6aEWY+5edOt1qrCp1Eg==}
dev: false
- /did-session/1.0.0:
+ /did-resolver@4.1.0:
+ resolution: {integrity: sha512-S6fWHvCXkZg2IhS4RcVHxwuyVejPR7c+a4Go0xbQ9ps5kILa8viiYQgrM4gfTyeTjJ0ekgJH9gk/BawTpmkbZA==}
+ dev: false
+
+ /did-session@1.0.0:
resolution: {integrity: sha512-hLKlfPGoEp9T6malsuNyF1bCrU0AcECZJ1SP2lvbHiic7ko2PdiZPmmVipVId+ZqmshU4AlLLEozZc9Iu1X1UA==}
engines: {node: '>=14.14'}
dependencies:
@@ -10716,7 +12178,7 @@ packages:
- encoding
dev: false
- /dids/3.4.0:
+ /dids@3.4.0:
resolution: {integrity: sha512-hXHkOTL9E5R4rbQwDVOktiiEq57Y6yWOEYjev1ojOpMr2Rkx9g8bw0v6BQIsbPB94aaYxUCtaejNl2FrublfiA==}
engines: {node: '>=14.14'}
dependencies:
@@ -10731,7 +12193,7 @@ packages:
uint8arrays: 3.1.1
dev: false
- /dids/4.0.0:
+ /dids@4.0.0:
resolution: {integrity: sha512-sNba/y3XSXkhMYlWw3JBGST+AOySIqZ1M/rsvoxSoLvcempi4MbtwqCTkBzuiKiKKmbLXZbL/rFIr0HUSRMg1Q==}
engines: {node: '>=14.14'}
dependencies:
@@ -10746,181 +12208,203 @@ packages:
uint8arrays: 4.0.3
dev: false
- /didyoumean/1.2.2:
+ /didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- /diff-sequences/28.1.1:
+ /diff-sequences@28.1.1:
resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dev: true
- /diff-sequences/29.4.3:
+ /diff-sequences@29.4.3:
resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- /diff/4.0.2:
+ /diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
- /diffie-hellman/5.0.3:
+ /diffie-hellman@5.0.3:
resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
dependencies:
bn.js: 4.12.0
miller-rabin: 4.0.1
randombytes: 2.1.0
- /dir-glob/3.0.1:
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
- /dlv/1.1.3:
+ /dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- /dns-equal/1.0.0:
+ /dns-equal@1.0.0:
resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
- /dns-packet/5.5.0:
+ /dns-packet@5.5.0:
resolution: {integrity: sha512-USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA==}
engines: {node: '>=6'}
dependencies:
'@leichtgewicht/ip-codec': 2.0.4
- /doctrine/2.1.0:
+ /doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
dependencies:
esutils: 2.0.3
dev: true
- /doctrine/3.0.0:
+ /doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
- /dom-converter/0.2.0:
+ /dom-converter@0.2.0:
resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
dependencies:
utila: 0.4.0
- /dom-helpers/5.2.1:
+ /dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
'@babel/runtime': 7.21.0
csstype: 3.1.1
dev: false
- /dom-serializer/1.4.1:
+ /dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
domelementtype: 2.3.0
domhandler: 4.3.1
entities: 2.2.0
- /dom-serializer/2.0.0:
+ /dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
entities: 4.4.0
- /dom-walk/0.1.2:
+ /dom-walk@0.1.2:
resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
dev: false
- /domain-browser/1.2.0:
+ /domain-browser@1.2.0:
resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==}
engines: {node: '>=0.4', npm: '>=1.2'}
dev: true
- /domelementtype/2.3.0:
+ /domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
- /domhandler/4.3.1:
+ /domhandler@4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
domelementtype: 2.3.0
- /domhandler/5.0.3:
+ /domhandler@5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
dependencies:
domelementtype: 2.3.0
- /domutils/2.8.0:
+ /domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
dom-serializer: 1.4.1
domelementtype: 2.3.0
domhandler: 4.3.1
- /domutils/3.0.1:
+ /domutils@3.0.1:
resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
domhandler: 5.0.3
- /dot-case/3.0.4:
+ /dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
- /dot-prop/5.3.0:
+ /dot-prop@5.3.0:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
dependencies:
is-obj: 2.0.0
- /dotenv/10.0.0:
+ /dotenv@10.0.0:
resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==}
engines: {node: '>=10'}
dev: true
- /duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+ /drbg.js@1.0.1:
+ resolution: {integrity: sha512-F4wZ06PvqxYLFEZKkFxTDcns9oFNk34hvmJSEwdzsxVQ8YI5YaxtACgQatkYgv2VI2CFkUd2Y+xosPQnHv809g==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ browserify-aes: 1.2.0
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ dev: false
+ optional: true
- /duplexer2/0.1.4:
+ /duplexer2@0.1.4:
resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
dependencies:
readable-stream: 2.3.8
dev: true
- /duplexer3/0.1.5:
+ /duplexer3@0.1.5:
resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
- /eastasianwidth/0.2.0:
+ /duplexer@0.1.2:
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+
+ /eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- /ecc-jsbn/0.1.2:
+ /ecc-jsbn@0.1.2:
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
dependencies:
jsbn: 0.1.1
safer-buffer: 2.1.2
dev: false
- /ed25519-signature-2018-context/1.1.0:
+ /eccrypto@1.1.6:
+ resolution: {integrity: sha512-d78ivVEzu7Tn0ZphUUaL43+jVPKTMPFGtmgtz1D0LrFn7cY3K8CdrvibuLz2AAkHBLKZtR8DMbB2ukRYFk987A==}
+ requiresBuild: true
+ dependencies:
+ acorn: 7.1.1
+ elliptic: 6.5.4
+ es6-promise: 4.2.8
+ nan: 2.14.0
+ optionalDependencies:
+ secp256k1: 3.7.1
+ dev: false
+
+ /ed25519-signature-2018-context@1.1.0:
resolution: {integrity: sha512-ppDWYMNwwp9bploq0fS4l048vHIq41nWsAbPq6H4mNVx9G/GxW3fwg4Ln0mqctP13MoEpREK7Biz8TbVVdYXqA==}
dev: false
- /ed25519-signature-2020-context/1.1.0:
+ /ed25519-signature-2020-context@1.1.0:
resolution: {integrity: sha512-dBGSmoUIK6h2vadDctrDnhhTO01PR2hJk0mRNEfrRDPCjaIwrfy4J+eziEQ9Q1m8By4f/CSRgKM1h53ydKfdNg==}
dev: false
- /ee-first/1.1.1:
+ /ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- /eip-712-types-generation/0.1.6:
+ /eip-712-types-generation@0.1.6:
resolution: {integrity: sha512-O2zjZcGFKyuXxW3s5ATxA1EJzszWHKYASBqpIyIhXzvFW6YFkYdDIgsoAdLnX3ClZd6908xaOPPPbTVgXy0URQ==}
dependencies:
json-canonicalize: 1.0.4
dev: false
- /ejs/3.1.9:
+ /ejs@3.1.9:
resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
engines: {node: '>=0.10.0'}
hasBin: true
@@ -10928,10 +12412,10 @@ packages:
jake: 10.8.5
dev: true
- /electron-to-chromium/1.4.341:
+ /electron-to-chromium@1.4.341:
resolution: {integrity: sha512-R4A8VfUBQY9WmAhuqY5tjHRf5fH2AAf6vqitBOE0y6u2PgHgqHSrhZmu78dIX3fVZtjqlwJNX1i2zwC3VpHtQQ==}
- /elliptic/6.5.4:
+ /elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
dependencies:
bn.js: 4.12.0
@@ -10942,69 +12426,80 @@ packages:
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
- /emittery/0.10.2:
+ /emittery@0.10.2:
resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==}
engines: {node: '>=12'}
dev: true
- /emittery/0.13.1:
+ /emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
engines: {node: '>=12'}
- /emoji-regex/8.0.0:
+ /emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- /emoji-regex/9.2.2:
+ /emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- /emojis-list/3.0.0:
+ /emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
- /emoticon/3.2.0:
+ /emoticon@3.2.0:
resolution: {integrity: sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==}
- /encodeurl/1.0.2:
+ /encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- /end-of-stream/1.4.4:
+ /end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
- /enhanced-resolve/5.12.0:
+ /enhanced-resolve@5.12.0:
resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
- /enquirer/2.3.6:
+ /enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
dependencies:
ansi-colors: 4.1.3
dev: true
- /entities/2.2.0:
+ /entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- /entities/4.4.0:
+ /entities@4.4.0:
resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
engines: {node: '>=0.12'}
- /envinfo/7.8.1:
+ /env-editor@0.4.2:
+ resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==}
+ engines: {node: '>=8'}
+ dev: false
+ optional: true
+
+ /envinfo@7.8.1:
resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
engines: {node: '>=4'}
hasBin: true
- /error-ex/1.3.2:
+ /eol@0.9.1:
+ resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==}
+ dev: false
+ optional: true
+
+ /error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
is-arrayish: 0.2.1
- /error-polyfill/0.1.3:
+ /error-polyfill@0.1.3:
resolution: {integrity: sha512-XHJk60ufE+TG/ydwp4lilOog549iiQF2OAPhkk9DdiYWMrltz5yhDz/xnKuenNwP7gy3dsibssO5QpVhkrSzzg==}
dependencies:
capability: 0.2.5
@@ -11012,7 +12507,23 @@ packages:
u3: 0.1.1
dev: false
- /es-abstract/1.21.2:
+ /error-stack-parser@2.1.4:
+ resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
+ dependencies:
+ stackframe: 1.3.4
+ dev: false
+ optional: true
+
+ /errorhandler@1.5.1:
+ resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ accepts: 1.3.8
+ escape-html: 1.0.3
+ dev: false
+ optional: true
+
+ /es-abstract@1.21.2:
resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -11052,7 +12563,7 @@ packages:
which-typed-array: 1.1.9
dev: true
- /es-get-iterator/1.1.3:
+ /es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
call-bind: 1.0.2
@@ -11066,10 +12577,10 @@ packages:
stop-iteration-iterator: 1.0.0
dev: true
- /es-module-lexer/0.9.3:
+ /es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
- /es-set-tostringtag/2.0.1:
+ /es-set-tostringtag@2.0.1:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -11078,13 +12589,13 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /es-shim-unscopables/1.0.0:
+ /es-shim-unscopables@1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
has: 1.0.3
dev: true
- /es-to-primitive/1.2.1:
+ /es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -11093,7 +12604,7 @@ packages:
is-symbol: 1.0.4
dev: true
- /es5-ext/0.10.62:
+ /es5-ext@0.10.62:
resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
engines: {node: '>=0.10'}
requiresBuild: true
@@ -11103,7 +12614,7 @@ packages:
next-tick: 1.1.0
dev: false
- /es6-iterator/2.0.3:
+ /es6-iterator@2.0.3:
resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
dependencies:
d: 1.0.1
@@ -11111,18 +12622,18 @@ packages:
es6-symbol: 3.1.3
dev: false
- /es6-promise/4.2.8:
+ /es6-promise@4.2.8:
resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
dev: false
- /es6-symbol/3.1.3:
+ /es6-symbol@3.1.3:
resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
dependencies:
d: 1.0.1
ext: 1.7.0
dev: false
- /esbuild/0.17.14:
+ /esbuild@0.17.14:
resolution: {integrity: sha512-vOO5XhmVj/1XQR9NQ1UPq6qvMYL7QFJU57J5fKBKBKxp17uDt5PgxFDb4A2nEiXhr1qQs4x0F5+66hVVw4ruNw==}
engines: {node: '>=12'}
hasBin: true
@@ -11152,30 +12663,30 @@ packages:
'@esbuild/win32-x64': 0.17.14
dev: true
- /escalade/3.1.1:
+ /escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
- /escape-goat/2.1.1:
+ /escape-goat@2.1.1:
resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==}
engines: {node: '>=8'}
- /escape-html/1.0.3:
+ /escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- /escape-string-regexp/1.0.5:
+ /escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
- /escape-string-regexp/2.0.0:
+ /escape-string-regexp@2.0.0:
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
engines: {node: '>=8'}
- /escape-string-regexp/4.0.0:
+ /escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /escodegen/1.14.3:
+ /escodegen@1.14.3:
resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==}
engines: {node: '>=4.0'}
hasBin: true
@@ -11188,7 +12699,7 @@ packages:
source-map: 0.6.1
dev: false
- /eslint-config-airbnb-base/15.0.0_eakrjjutlgqjxe5ydhtnd4qdmy:
+ /eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.27.5)(eslint@8.36.0):
resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -11197,13 +12708,13 @@ packages:
dependencies:
confusing-browser-globals: 1.0.11
eslint: 8.36.0
- eslint-plugin-import: 2.27.5_74llxljztmzze2ez7aakaiqyti
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
object.assign: 4.1.4
object.entries: 1.1.6
semver: 6.3.0
dev: true
- /eslint-config-airbnb-typescript/17.0.0_ssr7cadyznywkvad3hfkny6rva:
+ /eslint-config-airbnb-typescript@17.0.0(@typescript-eslint/eslint-plugin@5.57.0)(@typescript-eslint/parser@5.57.0)(eslint-plugin-import@2.27.5)(eslint@8.36.0):
resolution: {integrity: sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==}
peerDependencies:
'@typescript-eslint/eslint-plugin': ^5.13.0
@@ -11211,14 +12722,14 @@ packages:
eslint: ^7.32.0 || ^8.2.0
eslint-plugin-import: ^2.25.3
dependencies:
- '@typescript-eslint/eslint-plugin': 5.57.0_5t5646cukn2kik5kiydglap3vi
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/eslint-plugin': 5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
eslint: 8.36.0
- eslint-config-airbnb-base: 15.0.0_eakrjjutlgqjxe5ydhtnd4qdmy
- eslint-plugin-import: 2.27.5_74llxljztmzze2ez7aakaiqyti
+ eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.27.5)(eslint@8.36.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
dev: true
- /eslint-config-airbnb/19.0.4_guhfqc3yvckhutqwrddiy54d5i:
+ /eslint-config-airbnb@19.0.4(eslint-plugin-import@2.27.5)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.32.2)(eslint@8.36.0):
resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==}
engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -11229,16 +12740,16 @@ packages:
eslint-plugin-react-hooks: ^4.3.0
dependencies:
eslint: 8.36.0
- eslint-config-airbnb-base: 15.0.0_eakrjjutlgqjxe5ydhtnd4qdmy
- eslint-plugin-import: 2.27.5_74llxljztmzze2ez7aakaiqyti
- eslint-plugin-jsx-a11y: 6.7.1_eslint@8.36.0
- eslint-plugin-react: 7.32.2_eslint@8.36.0
- eslint-plugin-react-hooks: 4.6.0_eslint@8.36.0
+ eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.27.5)(eslint@8.36.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.36.0)
+ eslint-plugin-react: 7.32.2(eslint@8.36.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.36.0)
object.assign: 4.1.4
object.entries: 1.1.6
dev: true
- /eslint-config-next/13.2.4_vgl77cfdswitgr47lm5swmv43m:
+ /eslint-config-next@13.2.4(eslint@8.36.0)(typescript@4.9.5):
resolution: {integrity: sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
@@ -11249,21 +12760,21 @@ packages:
dependencies:
'@next/eslint-plugin-next': 13.2.4
'@rushstack/eslint-patch': 1.2.0
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
eslint: 8.36.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.3_eakrjjutlgqjxe5ydhtnd4qdmy
- eslint-plugin-import: 2.27.5_pd4t7prljtzlsex5wwnvwlxguy
- eslint-plugin-jsx-a11y: 6.7.1_eslint@8.36.0
- eslint-plugin-react: 7.32.2_eslint@8.36.0
- eslint-plugin-react-hooks: 4.6.0_eslint@8.36.0
+ eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.36.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.36.0)
+ eslint-plugin-react: 7.32.2(eslint@8.36.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.36.0)
typescript: 4.9.5
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-config-prettier/8.8.0_eslint@8.36.0:
+ /eslint-config-prettier@8.8.0(eslint@8.36.0):
resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==}
hasBin: true
peerDependencies:
@@ -11272,7 +12783,7 @@ packages:
eslint: 8.36.0
dev: true
- /eslint-import-resolver-node/0.3.7:
+ /eslint-import-resolver-node@0.3.7:
resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
dependencies:
debug: 3.2.7
@@ -11282,7 +12793,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript/3.5.3_eakrjjutlgqjxe5ydhtnd4qdmy:
+ /eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5)(eslint@8.36.0):
resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -11292,7 +12803,7 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.12.0
eslint: 8.36.0
- eslint-plugin-import: 2.27.5_pd4t7prljtzlsex5wwnvwlxguy
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
get-tsconfig: 4.5.0
globby: 13.1.3
is-core-module: 2.11.0
@@ -11302,7 +12813,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_2ziz7fpmdx7whwdyfdgqtprsqy:
+ /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0):
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -11323,184 +12834,62 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
debug: 3.2.7
eslint: 8.36.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.3_eakrjjutlgqjxe5ydhtnd4qdmy
+ eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.36.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_mynqafrekjmjm6w6lcthssrfee:
- resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
+ /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0):
+ resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
dependencies:
+ '@typescript-eslint/parser': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
+ array-includes: 3.1.6
+ array.prototype.flat: 1.3.1
+ array.prototype.flatmap: 1.3.1
debug: 3.2.7
+ doctrine: 2.1.0
eslint: 8.36.0
eslint-import-resolver-node: 0.3.7
+ eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.57.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.36.0)
+ has: 1.0.3
+ is-core-module: 2.11.0
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.values: 1.1.6
+ resolve: 1.22.1
+ semver: 6.3.0
+ tsconfig-paths: 3.14.2
transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-module-utils/2.7.4_s7ttrvgfvhhasgm2z4wjvde2bi:
- resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- debug: 3.2.7
- eslint: 8.36.0
- eslint-import-resolver-node: 0.3.7
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /eslint-plugin-import/2.27.5_74llxljztmzze2ez7aakaiqyti:
- resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 8.36.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4_s7ttrvgfvhhasgm2z4wjvde2bi
- has: 1.0.3
- is-core-module: 2.11.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- semver: 6.3.0
- tsconfig-paths: 3.14.2
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
- dev: true
-
- /eslint-plugin-import/2.27.5_eslint@8.36.0:
- resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 8.36.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4_mynqafrekjmjm6w6lcthssrfee
- has: 1.0.3
- is-core-module: 2.11.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- semver: 6.3.0
- tsconfig-paths: 3.14.2
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
- dev: true
-
- /eslint-plugin-import/2.27.5_pd4t7prljtzlsex5wwnvwlxguy:
- resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.57.0_vgl77cfdswitgr47lm5swmv43m
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 8.36.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4_2ziz7fpmdx7whwdyfdgqtprsqy
- has: 1.0.3
- is-core-module: 2.11.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- semver: 6.3.0
- tsconfig-paths: 3.14.2
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
- dev: true
-
- /eslint-plugin-jest-extended/2.0.0_vgl77cfdswitgr47lm5swmv43m:
- resolution: {integrity: sha512-nMhVVsVcG/+Q6FMshql35WBxwx8xlBhxKgAG08WP3BYWfXrp28oxLpJVu9JSbMpfmfKGVrHwMYJGfPLRKlGB8w==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ /eslint-plugin-jest-extended@2.0.0(eslint@8.36.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-nMhVVsVcG/+Q6FMshql35WBxwx8xlBhxKgAG08WP3BYWfXrp28oxLpJVu9JSbMpfmfKGVrHwMYJGfPLRKlGB8w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/utils': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
eslint: 8.36.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jest/27.2.1_cxtok4wlaywiu5g252ekt7hmay:
+ /eslint-plugin-jest@27.2.1(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0)(jest@29.5.0)(typescript@4.9.5):
resolution: {integrity: sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -11513,16 +12902,16 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.57.0_5t5646cukn2kik5kiydglap3vi
- '@typescript-eslint/utils': 5.57.0_vgl77cfdswitgr47lm5swmv43m
+ '@typescript-eslint/eslint-plugin': 5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5)
+ '@typescript-eslint/utils': 5.57.0(eslint@8.36.0)(typescript@4.9.5)
eslint: 8.36.0
- jest: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
+ jest: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jsx-a11y/6.7.1_eslint@8.36.0:
+ /eslint-plugin-jsx-a11y@6.7.1(eslint@8.36.0):
resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -11547,7 +12936,7 @@ packages:
semver: 6.3.0
dev: true
- /eslint-plugin-prettier/4.2.1_ywlv3zveqg2kxfq44lflihh5mm:
+ /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@8.36.0)(prettier@2.8.7):
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -11559,12 +12948,12 @@ packages:
optional: true
dependencies:
eslint: 8.36.0
- eslint-config-prettier: 8.8.0_eslint@8.36.0
+ eslint-config-prettier: 8.8.0(eslint@8.36.0)
prettier: 2.8.7
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-react-hooks/4.6.0_eslint@8.36.0:
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.36.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
@@ -11573,7 +12962,7 @@ packages:
eslint: 8.36.0
dev: true
- /eslint-plugin-react/7.32.2_eslint@8.36.0:
+ /eslint-plugin-react@7.32.2(eslint@8.36.0):
resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
engines: {node: '>=4'}
peerDependencies:
@@ -11597,35 +12986,7 @@ packages:
string.prototype.matchall: 4.0.8
dev: true
- /eslint-plugin-unused-imports/2.0.0:
- resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.0.0
- eslint: ^8.0.0
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- dependencies:
- eslint-rule-composer: 0.3.0
- dev: true
-
- /eslint-plugin-unused-imports/2.0.0_bh3gacn4tk2wj6fu7gisfablcy:
- resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.0.0
- eslint: ^8.0.0
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- dependencies:
- '@typescript-eslint/eslint-plugin': 5.57.0_5t5646cukn2kik5kiydglap3vi
- eslint: 8.36.0
- eslint-rule-composer: 0.3.0
- dev: true
-
- /eslint-plugin-unused-imports/2.0.0_eslint@8.36.0:
+ /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.57.0)(eslint@8.36.0):
resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -11635,34 +12996,35 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
+ '@typescript-eslint/eslint-plugin': 5.57.0(@typescript-eslint/parser@5.57.0)(eslint@8.36.0)(typescript@4.9.5)
eslint: 8.36.0
eslint-rule-composer: 0.3.0
dev: true
- /eslint-rule-composer/0.3.0:
+ /eslint-rule-composer@0.3.0:
resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
engines: {node: '>=4.0.0'}
dev: true
- /eslint-scope/5.1.1:
+ /eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- /eslint-scope/7.1.1:
+ /eslint-scope@7.1.1:
resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-visitor-keys/3.4.0:
+ /eslint-visitor-keys@3.4.0:
resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /eslint-webpack-plugin/4.0.0_gq25nzrc5ulbrewficr3tpmdki:
+ /eslint-webpack-plugin@4.0.0(eslint@8.36.0)(webpack@5.76.3):
resolution: {integrity: sha512-eM9ccGRWkU+btBSVfABRn8CjT7jZ2Q+UV/RfErMDVCFXpihEbvajNrLltZpwTAcEoXSqESGlEPIUxl7PoDlLWw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -11675,15 +13037,15 @@ packages:
micromatch: 4.0.5
normalize-path: 3.0.0
schema-utils: 4.0.0
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
dev: true
- /eslint/8.36.0:
+ /eslint@8.36.0:
resolution: {integrity: sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.36.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.36.0)
'@eslint-community/regexpp': 4.4.1
'@eslint/eslintrc': 2.0.1
'@eslint/js': 8.36.0
@@ -11726,70 +13088,85 @@ packages:
transitivePeerDependencies:
- supports-color
- /esm/3.2.25:
+ /esm@3.2.25:
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
engines: {node: '>=6'}
dev: false
- /espree/9.5.0:
+ /espree@9.5.0:
resolution: {integrity: sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.4.0
- /esprima/1.2.2:
+ /esprima@1.2.2:
resolution: {integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: false
- /esprima/4.0.1:
+ /esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- /esquery/1.5.0:
+ /esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- /eta/2.0.1:
+ /eta@2.0.1:
resolution: {integrity: sha512-46E2qDPDm7QA+usjffUWz9KfXsxVZclPOuKsXs4ZWZdI/X1wpDF7AO424pt7fdYohCzWsIkXAhNGXSlwo5naAg==}
engines: {node: '>=6.0.0'}
- /etag/1.8.1:
+ /etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- /eth-ens-namehash/2.0.8:
+ /eth-crypto@2.6.0:
+ resolution: {integrity: sha512-GCX4ffFYRUGgnuWR5qxcZIRQJ1KEqPFiyXU9yVy7s6dtXIMlUXZQ2h+5ID6rFaOHWbpJbjfkC6YdhwtwRYCnug==}
+ dependencies:
+ '@babel/runtime': 7.20.13
+ '@ethereumjs/tx': 3.5.2
+ '@types/bn.js': 5.1.1
+ eccrypto: 1.1.6
+ ethereumjs-util: 7.1.5
+ ethers: 5.7.2
+ secp256k1: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: false
+
+ /eth-ens-namehash@2.0.8:
resolution: {integrity: sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==}
dependencies:
idna-uts46-hx: 2.3.1
js-sha3: 0.5.7
dev: false
- /eth-lib/0.1.29:
+ /eth-lib@0.1.29:
resolution: {integrity: sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==}
dependencies:
bn.js: 4.12.0
@@ -11804,7 +13181,7 @@ packages:
- utf-8-validate
dev: false
- /eth-lib/0.2.8:
+ /eth-lib@0.2.8:
resolution: {integrity: sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==}
dependencies:
bn.js: 4.12.0
@@ -11812,12 +13189,12 @@ packages:
xhr-request-promise: 0.1.3
dev: false
- /eth-rpc-errors/4.0.3:
+ /eth-rpc-errors@4.0.3:
resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==}
dependencies:
fast-safe-stringify: 2.1.1
- /eth-sig-util/3.0.1:
+ /eth-sig-util@3.0.1:
resolution: {integrity: sha512-0Us50HiGGvZgjtWTyAI/+qTzYPMLy5Q451D0Xy68bxq1QMWdoOddDwGvsqcFT27uohKgalM9z/yxplyt+mY2iQ==}
deprecated: Deprecated in favor of '@metamask/eth-sig-util'
dependencies:
@@ -11827,13 +13204,13 @@ packages:
tweetnacl-util: 0.15.1
dev: false
- /ethereum-bloom-filters/1.0.10:
+ /ethereum-bloom-filters@1.0.10:
resolution: {integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==}
dependencies:
js-sha3: 0.8.0
dev: false
- /ethereum-cryptography/0.1.3:
+ /ethereum-cryptography@0.1.3:
resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==}
dependencies:
'@types/pbkdf2': 3.1.0
@@ -11853,7 +13230,7 @@ packages:
setimmediate: 1.0.5
dev: false
- /ethereum-cryptography/1.2.0:
+ /ethereum-cryptography@1.2.0:
resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==}
dependencies:
'@noble/hashes': 1.2.0
@@ -11861,14 +13238,14 @@ packages:
'@scure/bip32': 1.1.5
'@scure/bip39': 1.1.1
- /ethereumjs-abi/0.6.8:
+ /ethereumjs-abi@0.6.8:
resolution: {integrity: sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==}
dependencies:
bn.js: 4.12.0
ethereumjs-util: 6.2.1
dev: false
- /ethereumjs-util/5.2.1:
+ /ethereumjs-util@5.2.1:
resolution: {integrity: sha512-v3kT+7zdyCm1HIqWlLNrHGqHGLpGYIhjeHxQjnDXjLT2FyGJDsd3LWMYUo7pAFRrk86CR3nUJfhC81CCoJNNGQ==}
dependencies:
bn.js: 4.12.0
@@ -11880,7 +13257,7 @@ packages:
safe-buffer: 5.2.1
dev: false
- /ethereumjs-util/6.2.1:
+ /ethereumjs-util@6.2.1:
resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==}
dependencies:
'@types/bn.js': 4.11.6
@@ -11892,7 +13269,7 @@ packages:
rlp: 2.2.7
dev: false
- /ethereumjs-util/7.1.5:
+ /ethereumjs-util@7.1.5:
resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -11903,7 +13280,7 @@ packages:
rlp: 2.2.7
dev: false
- /ethers/5.7.2:
+ /ethers@5.7.2:
resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==}
dependencies:
'@ethersproject/abi': 5.7.0
@@ -11941,7 +13318,7 @@ packages:
- utf-8-validate
dev: false
- /ethers/6.2.3:
+ /ethers@6.2.3:
resolution: {integrity: sha512-l1Z/Yr+HrOk+7LTeYRHGMvYwVLGpTuVrT/kJ7Kagi3nekGISYILIby0f1ipV9BGzgERyy+w4emH+d3PhhcxIfA==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -11956,7 +13333,7 @@ packages:
- utf-8-validate
dev: false
- /ethjs-unit/0.1.6:
+ /ethjs-unit@0.1.6:
resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==}
engines: {node: '>=6.5.0', npm: '>=3'}
dependencies:
@@ -11964,7 +13341,7 @@ packages:
number-to-bn: 1.7.0
dev: false
- /ethjs-util/0.1.6:
+ /ethjs-util@0.1.6:
resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==}
engines: {node: '>=6.5.0', npm: '>=3'}
dependencies:
@@ -11972,7 +13349,7 @@ packages:
strip-hex-prefix: 1.0.0
dev: false
- /ethr-did-resolver/7.0.2:
+ /ethr-did-resolver@7.0.2:
resolution: {integrity: sha512-l4TlISn8tDtBssbxlLz0bky48aQP2k7QGXiwcU1aatqLhz6Mgau2SuCy2N6zBRBPbprkYv5rrWeReHfmegQNuw==}
dependencies:
'@ethersproject/abi': 5.7.0
@@ -11992,7 +13369,7 @@ packages:
- utf-8-validate
dev: false
- /ethr-did-resolver/8.0.0:
+ /ethr-did-resolver@8.0.0:
resolution: {integrity: sha512-iOsWa4qJAIt0kl6ilX1usOGq5j+Sqq5YR3OjmPSaaquvJNQUv0DjOn9656WSHvkknELmZAoXZH9naPGarTqldQ==}
dependencies:
'@ethersproject/abi': 5.7.0
@@ -12012,7 +13389,7 @@ packages:
- utf-8-validate
dev: false
- /ethr-did/2.3.6:
+ /ethr-did@2.3.6:
resolution: {integrity: sha512-rvDMqbnTuRqMY/2uU40IoqxN03SIqGwvjNNqxxUlr+CUaWZVgz2ZkOCygyRtTRfRLY7NAJQBFi6gXjDyBOSxrg==}
dependencies:
'@ethersproject/abstract-signer': 5.7.0
@@ -12032,14 +13409,14 @@ packages:
- utf-8-validate
dev: false
- /eval/0.1.8:
+ /eval@0.1.8:
resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
'@types/node': 18.15.10
require-like: 0.1.2
- /event-stream/4.0.1:
+ /event-stream@4.0.1:
resolution: {integrity: sha512-qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA==}
dependencies:
duplexer: 0.1.2
@@ -12051,29 +13428,48 @@ packages:
through: 2.3.8
dev: true
- /event-target-shim/5.0.1:
+ /event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
dev: false
- /eventemitter3/4.0.4:
+ /eventemitter3@4.0.4:
resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==}
dev: false
- /eventemitter3/4.0.7:
+ /eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- /events/3.3.0:
+ /events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- /evp_bytestokey/1.0.3:
+ /evp_bytestokey@1.0.3:
resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
dependencies:
md5.js: 1.3.5
safe-buffer: 5.2.1
- /execa/5.1.1:
+ /exec-async@2.2.0:
+ resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==}
+ dev: false
+ optional: true
+
+ /execa@1.0.0:
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
+ engines: {node: '>=6'}
+ dependencies:
+ cross-spawn: 6.0.5
+ get-stream: 4.1.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
+ signal-exit: 3.0.7
+ strip-eof: 1.0.0
+ dev: false
+ optional: true
+
+ /execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
dependencies:
@@ -12087,7 +13483,7 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- /execa/7.1.1:
+ /execa@7.1.1:
resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==}
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
dependencies:
@@ -12102,11 +13498,27 @@ packages:
strip-final-newline: 3.0.0
dev: true
- /exit/0.1.2:
+ /exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
- /expect/28.1.3:
+ /expand-brackets@2.1.4:
+ resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /expect@28.1.3:
resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12117,7 +13529,7 @@ packages:
jest-util: 28.1.3
dev: true
- /expect/29.5.0:
+ /expect@29.5.0:
resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -12127,7 +13539,74 @@ packages:
jest-message-util: 29.5.0
jest-util: 29.5.0
- /expo-modules-autolinking/0.0.3:
+ /expo-application@5.1.1(expo@48.0.10):
+ resolution: {integrity: sha512-aDatTcTTCdTbHw8h4/Tq2ilc6InM5ntF9xWCJdOcnUEcglxxGphVI/lzJKBaBF6mJECA8mEOjpVg2EGxOctTwg==}
+ peerDependencies:
+ expo: '*'
+ dependencies:
+ expo: 48.0.10(@babel/core@7.21.3)
+ dev: false
+ optional: true
+
+ /expo-asset@8.9.1(expo@48.0.10):
+ resolution: {integrity: sha512-ugavxA7Scn96TBdeTYQA6xtHktnk0o/0xk7nFkxJKoH/t2cZDFSB05X0BI2/LDZY4iE6xTPOYw4C4mmourWfuA==}
+ dependencies:
+ blueimp-md5: 2.19.0
+ expo-constants: 14.2.1(expo@48.0.10)
+ expo-file-system: 15.2.2(expo@48.0.10)
+ invariant: 2.2.4
+ md5-file: 3.2.3
+ path-browserify: 1.0.1
+ url-parse: 1.5.10
+ transitivePeerDependencies:
+ - expo
+ - supports-color
+ dev: false
+ optional: true
+
+ /expo-constants@14.2.1(expo@48.0.10):
+ resolution: {integrity: sha512-DD5u4QmBds2U7uYo409apV7nX+XjudARcgqe7S9aRFJ/6kyftmuxvk1DpaU4X42Av8z/tfKwEpuxl+vl7HHx/Q==}
+ peerDependencies:
+ expo: '*'
+ dependencies:
+ '@expo/config': 8.0.2
+ expo: 48.0.10(@babel/core@7.21.3)
+ uuid: 3.4.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /expo-file-system@15.2.2(expo@48.0.10):
+ resolution: {integrity: sha512-LFkOLcWwlmnjkURxZ3/0ukS35OswX8iuQknLHRHeyk8mUA8fpRPPelD/a1lS+yclqfqavMJmTXVKM1Nsq5XVMA==}
+ peerDependencies:
+ expo: '*'
+ dependencies:
+ expo: 48.0.10(@babel/core@7.21.3)
+ uuid: 3.4.0
+ dev: false
+ optional: true
+
+ /expo-font@11.1.1(expo@48.0.10):
+ resolution: {integrity: sha512-X+aICqYY69hiiDDtcNrjq8KutHrH2TrHuMqk0Rfq0P7hF6hMd+YefwLBNkvIrqrgmTAuqiLjMUwj2rHLqmgluw==}
+ peerDependencies:
+ expo: '*'
+ dependencies:
+ expo: 48.0.10(@babel/core@7.21.3)
+ fontfaceobserver: 2.3.0
+ dev: false
+ optional: true
+
+ /expo-keep-awake@12.0.1(expo@48.0.10):
+ resolution: {integrity: sha512-hqeCnb4033TyuZaXs93zTK7rjVJ3bywXATyMmKmKkLEsH2PKBAl/VmjlCOPQL/2Ncqz6aj7Wo//tjeJTARBD4g==}
+ peerDependencies:
+ expo: '*'
+ dependencies:
+ expo: 48.0.10(@babel/core@7.21.3)
+ dev: false
+ optional: true
+
+ /expo-modules-autolinking@0.0.3:
resolution: {integrity: sha512-azkCRYj/DxbK4udDuDxA9beYzQTwpJ5a9QA0bBgha2jHtWdFGF4ZZWSY+zNA5mtU3KqzYt8jWHfoqgSvKyu1Aw==}
hasBin: true
dependencies:
@@ -12139,17 +13618,72 @@ packages:
dev: false
optional: true
- /expo-random/13.1.1:
+ /expo-modules-autolinking@1.1.2:
+ resolution: {integrity: sha512-oOlkAccVnHwwR5ccvF/F/x4Omj9HWzSimMUlIVz0SVGdNBEqTPyn0L/d4uIufhyQbEWvrarqL8o5Yz11wEI0SQ==}
+ hasBin: true
+ dependencies:
+ chalk: 4.1.2
+ commander: 7.2.0
+ fast-glob: 3.2.12
+ find-up: 5.0.0
+ fs-extra: 9.1.0
+ dev: false
+ optional: true
+
+ /expo-modules-core@1.2.6:
+ resolution: {integrity: sha512-vyleKepkP8F6L+D55B/E4FbZ8x9pdy3yw/mdbGBkDkrmo2gmeMjOM1mKLSszOkLIqet05O7Wy8m0FZHZTo0VBg==}
+ dependencies:
+ compare-versions: 3.6.0
+ invariant: 2.2.4
+ dev: false
+ optional: true
+
+ /expo-random@13.1.1(expo@48.0.10):
resolution: {integrity: sha512-+KkhGp7xW45GvMRzlcSOzvDwzTgyXo6C84GaG4GI43rOdECBQ2lGUJ12st39OtfZm1lORNskpi66DjnuJ73g9w==}
requiresBuild: true
peerDependencies:
expo: '*'
dependencies:
base64-js: 1.5.1
+ expo: 48.0.10(@babel/core@7.21.3)
+ dev: false
+ optional: true
+
+ /expo@48.0.10(@babel/core@7.21.3):
+ resolution: {integrity: sha512-8YXG6um3ld36nu/ONEC0NNkMatdj4k/HwR7OUd3dKUt3PJSkZHsCeLXIu8za7WSWpgPAU/xAj35noPFEFnjO1w==}
+ hasBin: true
+ dependencies:
+ '@babel/runtime': 7.21.0
+ '@expo/cli': 0.6.2(expo-modules-autolinking@1.1.2)
+ '@expo/config': 8.0.2
+ '@expo/config-plugins': 6.0.1
+ '@expo/vector-icons': 13.0.0
+ babel-preset-expo: 9.3.2(@babel/core@7.21.3)
+ cross-spawn: 6.0.5
+ expo-application: 5.1.1(expo@48.0.10)
+ expo-asset: 8.9.1(expo@48.0.10)
+ expo-constants: 14.2.1(expo@48.0.10)
+ expo-file-system: 15.2.2(expo@48.0.10)
+ expo-font: 11.1.1(expo@48.0.10)
+ expo-keep-awake: 12.0.1(expo@48.0.10)
+ expo-modules-autolinking: 1.1.2
+ expo-modules-core: 1.2.6
+ fbemitter: 3.0.0
+ getenv: 1.0.0
+ invariant: 2.2.4
+ md5-file: 3.2.3
+ node-fetch: 2.6.9
+ pretty-format: 26.6.2
+ uuid: 3.4.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - bluebird
+ - encoding
+ - supports-color
dev: false
optional: true
- /express/4.18.2:
+ /express@4.18.2:
resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
engines: {node: '>= 0.10.0'}
dependencies:
@@ -12187,43 +13721,77 @@ packages:
transitivePeerDependencies:
- supports-color
- /ext/1.7.0:
+ /ext@1.7.0:
resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
dependencies:
type: 2.7.2
dev: false
- /extend-shallow/2.0.1:
+ /extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
- /extend/3.0.2:
+ /extend-shallow@3.0.2:
+ resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: false
+ optional: true
+
+ /extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- /extension-port-stream/2.0.1:
+ /extension-port-stream@2.0.1:
resolution: {integrity: sha512-ltrv4Dh/979I04+D4Te6TFygfRSOc5EBzzlHRldWMS8v73V80qWluxH88hqF0qyUsBXTb8NmzlmSipcre6a+rg==}
engines: {node: '>=12.0.0'}
dependencies:
webextension-polyfill-ts: 0.22.0
- /extsprintf/1.3.0:
+ /extglob@2.0.4:
+ resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /extsprintf@1.3.0:
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
dev: false
- /fast-deep-equal/2.0.1:
- resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
-
- /fast-deep-equal/3.1.3:
- resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+ /factory.ts@0.5.2:
+ resolution: {integrity: sha512-I4YDKuyMW+s2PocnWh/Ekv9wSStt/MNN1ZRb1qhy0Kv056ndlzbLHDsW9KEmTAqMpLI3BtjSqEdZ7ZfdnaXn9w==}
+ engines: {node: '>= 14'}
+ dependencies:
+ clone-deep: 4.0.1
+ source-map-support: 0.5.21
+ dev: false
+
+ /fast-deep-equal@2.0.1:
+ resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
+
+ /fast-deep-equal@3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-diff/1.2.0:
+ /fast-diff@1.2.0:
resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
dev: true
- /fast-glob/3.2.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -12233,7 +13801,7 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-glob/3.2.7:
+ /fast-glob@3.2.7:
resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==}
engines: {node: '>=8'}
dependencies:
@@ -12244,49 +13812,57 @@ packages:
micromatch: 4.0.5
dev: true
- /fast-json-patch/3.1.1:
+ /fast-json-patch@3.1.1:
resolution: {integrity: sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==}
dev: false
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- /fast-safe-stringify/2.1.1:
+ /fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
- /fast-text-encoding/1.0.6:
+ /fast-text-encoding@1.0.6:
resolution: {integrity: sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==}
dev: false
- /fast-url-parser/1.1.3:
+ /fast-url-parser@1.1.3:
resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
dependencies:
punycode: 1.4.1
- /fastest-levenshtein/1.0.16:
+ /fast-xml-parser@4.1.3:
+ resolution: {integrity: sha512-LsNDahCiCcJPe8NO7HijcnukHB24tKbfDDA5IILx9dmW3Frb52lhbeX6MPNUSvyGNfav2VTYpJ/OqkRoVLrh2Q==}
+ hasBin: true
+ dependencies:
+ strnum: 1.0.5
+ dev: false
+ optional: true
+
+ /fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
engines: {node: '>= 4.9.1'}
- /fastq/1.15.0:
+ /fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
- /faye-websocket/0.11.4:
+ /faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
dependencies:
websocket-driver: 0.7.4
- /fb-watchman/2.0.2:
+ /fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
- /fbemitter/3.0.0:
+ /fbemitter@3.0.0:
resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==}
dependencies:
fbjs: 3.0.4
@@ -12294,14 +13870,14 @@ packages:
- encoding
dev: false
- /fbjs-css-vars/1.0.2:
+ /fbjs-css-vars@1.0.2:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
dev: false
- /fbjs/3.0.4:
+ /fbjs@3.0.4:
resolution: {integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==}
dependencies:
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
fbjs-css-vars: 1.0.2
loose-envify: 1.4.0
object-assign: 4.1.1
@@ -12312,14 +13888,14 @@ packages:
- encoding
dev: false
- /feed/4.2.2:
+ /feed@4.2.2:
resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
engines: {node: '>=0.4.0'}
dependencies:
xml-js: 1.6.11
dev: false
- /fetch-blob/2.1.2:
+ /fetch-blob@2.1.2:
resolution: {integrity: sha512-YKqtUDwqLyfyMnmbw8XD6Q8j9i/HggKtPEI+pZ1+8bvheBu78biSmNaXWusx1TauGqtUUGx/cBb1mKdq2rLYow==}
engines: {node: ^10.17.0 || >=12.3.0}
peerDependencies:
@@ -12329,20 +13905,25 @@ packages:
optional: true
dev: false
- /figures/3.2.0:
+ /fetch-retry@4.1.1:
+ resolution: {integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==}
+ dev: false
+ optional: true
+
+ /figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
dependencies:
escape-string-regexp: 1.0.5
dev: true
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
- /file-loader/6.2.0_webpack@5.76.3:
+ /file-loader@6.2.0(webpack@5.76.3):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -12350,30 +13931,62 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.1.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
+
+ /file-uri-to-path@1.0.0:
+ resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
+ dev: false
+ optional: true
- /filelist/1.0.4:
+ /filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
minimatch: 5.1.6
dev: true
- /filesize/8.0.7:
+ /filesize@8.0.7:
resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==}
engines: {node: '>= 0.4.0'}
- /fill-range/7.0.1:
+ /fill-range@4.0.0:
+ resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: false
+ optional: true
+
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- /filter-obj/1.1.0:
+ /filter-obj@1.1.0:
resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
engines: {node: '>=0.10.0'}
dev: false
- /finalhandler/1.2.0:
+ /finalhandler@1.1.2:
+ resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ debug: 2.6.9
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.3.0
+ parseurl: 1.3.3
+ statuses: 1.5.0
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
dependencies:
@@ -12387,7 +14000,26 @@ packages:
transitivePeerDependencies:
- supports-color
- /find-cache-dir/3.3.2:
+ /find-babel-config@1.2.0:
+ resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ json5: 0.5.1
+ path-exists: 3.0.0
+ dev: false
+ optional: true
+
+ /find-cache-dir@2.1.0:
+ resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+ dev: false
+ optional: true
+
+ /find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
dependencies:
@@ -12395,45 +14027,58 @@ packages:
make-dir: 3.1.0
pkg-dir: 4.2.0
- /find-root/1.1.0:
+ /find-root@1.1.0:
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
dev: false
- /find-up/3.0.0:
+ /find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
engines: {node: '>=6'}
dependencies:
locate-path: 3.0.0
- /find-up/4.1.0:
+ /find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
dependencies:
locate-path: 5.0.0
path-exists: 4.0.0
- /find-up/5.0.0:
+ /find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
dependencies:
locate-path: 6.0.0
path-exists: 4.0.0
- /flat-cache/3.0.4:
+ /find-yarn-workspace-root@2.0.0:
+ resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==}
+ dependencies:
+ micromatch: 4.0.5
+ dev: false
+ optional: true
+
+ /flat-cache@3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flatted: 3.2.7
rimraf: 3.0.2
- /flat/5.0.2:
+ /flat@5.0.2:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- /flatted/3.2.7:
+ /flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- /flux/4.0.4_react@18.2.0:
+ /flow-parser@0.185.2:
+ resolution: {integrity: sha512-2hJ5ACYeJCzNtiVULov6pljKOLygy0zddoqSI1fFetM+XRPpRshFdGEijtqlamA1XwyZ+7rhryI6FQFzvtLWUQ==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+ optional: true
+
+ /flux@4.0.4(react@18.2.0):
resolution: {integrity: sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==}
peerDependencies:
react: ^15.0.2 || ^16.0.0 || ^17.0.0
@@ -12445,7 +14090,7 @@ packages:
- encoding
dev: false
- /follow-redirects/1.15.2:
+ /follow-redirects@1.15.2:
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -12454,20 +14099,31 @@ packages:
debug:
optional: true
- /for-each/0.3.3:
+ /fontfaceobserver@2.3.0:
+ resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==}
+ dev: false
+ optional: true
+
+ /for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
is-callable: 1.2.7
- /foreach/2.0.6:
+ /for-in@1.0.2:
+ resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /foreach@2.0.6:
resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==}
dev: false
- /forever-agent/0.6.1:
+ /forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
dev: false
- /fork-ts-checker-webpack-plugin/6.5.3_wjtuovir4bgaqcifkekrkmozri:
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.36.0)(typescript@4.9.5)(webpack@5.76.3):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -12496,9 +14152,9 @@ packages:
semver: 7.3.8
tapable: 1.1.3
typescript: 4.9.5
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /fork-ts-checker-webpack-plugin/8.0.0_t37drsge5fnqkss6ynqsf64hyi:
+ /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.76.3):
resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==}
engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
@@ -12518,14 +14174,14 @@ packages:
semver: 7.3.8
tapable: 2.2.1
typescript: 4.9.5
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
dev: true
- /form-data-encoder/1.7.1:
+ /form-data-encoder@1.7.1:
resolution: {integrity: sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg==}
dev: false
- /form-data/2.3.3:
+ /form-data@2.3.3:
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
engines: {node: '>= 0.12'}
dependencies:
@@ -12534,35 +14190,58 @@ packages:
mime-types: 2.1.35
dev: false
- /form-data/4.0.0:
+ /form-data@3.0.1:
+ resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
+ engines: {node: '>= 6'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: false
+ optional: true
+
+ /form-data@4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- dev: true
- /forwarded/0.2.0:
+ /forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- /fraction.js/4.2.0:
+ /fraction.js@4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
- /fresh/0.5.2:
+ /fragment-cache@0.2.1:
+ resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-cache: 0.2.2
+ dev: false
+ optional: true
+
+ /freeport-async@2.0.0:
+ resolution: {integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==}
+ engines: {node: '>=8'}
+ dev: false
+ optional: true
+
+ /fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- /from/0.1.7:
+ /from@0.1.7:
resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
dev: true
- /fs-constants/1.0.0:
+ /fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
dev: true
- /fs-extra/10.1.0:
+ /fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
@@ -12570,7 +14249,7 @@ packages:
jsonfile: 6.1.0
universalify: 2.0.0
- /fs-extra/11.1.1:
+ /fs-extra@11.1.1:
resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
engines: {node: '>=14.14'}
dependencies:
@@ -12579,7 +14258,7 @@ packages:
universalify: 2.0.0
dev: true
- /fs-extra/4.0.3:
+ /fs-extra@4.0.3:
resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==}
dependencies:
graceful-fs: 4.2.11
@@ -12587,7 +14266,28 @@ packages:
universalify: 0.1.2
dev: false
- /fs-extra/9.1.0:
+ /fs-extra@8.1.0:
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: false
+ optional: true
+
+ /fs-extra@9.0.0:
+ resolution: {integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==}
+ engines: {node: '>=10'}
+ dependencies:
+ at-least-node: 1.0.0
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 1.0.0
+ dev: false
+ optional: true
+
+ /fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
dependencies:
@@ -12596,36 +14296,35 @@ packages:
jsonfile: 6.1.0
universalify: 2.0.0
- /fs-minipass/1.2.7:
+ /fs-minipass@1.2.7:
resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==}
dependencies:
minipass: 2.9.0
dev: false
- /fs-minipass/2.1.0:
+ /fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
- dev: true
- /fs-monkey/1.0.3:
+ /fs-monkey@1.0.3:
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
- /function.prototype.name/1.1.5:
+ /function.prototype.name@1.1.5:
resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -12635,53 +14334,63 @@ packages:
functions-have-names: 1.2.3
dev: true
- /functions-have-names/1.2.3:
+ /functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
dev: true
- /gensync/1.0.0-beta.2:
+ /genson-js@0.0.5:
+ resolution: {integrity: sha512-1i1y9MIGzTRkn4TusWQwLWLu8IJGHgSE+fbQRt1fy68ZKEq2GjDZI/7NUSZFOfTbHz8bgjP4iCIOcdYrgEsMBA==}
+ dev: false
+
+ /gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- /get-assigned-identifiers/1.2.0:
+ /get-assigned-identifiers@1.2.0:
resolution: {integrity: sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==}
dev: true
- /get-caller-file/2.0.5:
+ /get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- /get-intrinsic/1.2.0:
+ /get-intrinsic@1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
has-symbols: 1.0.3
- /get-own-enumerable-property-symbols/3.0.2:
+ /get-own-enumerable-property-symbols@3.0.2:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
- /get-package-type/0.1.0:
+ /get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- /get-stream/4.1.0:
+ /get-port@3.2.0:
+ resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /get-stream@4.1.0:
resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
engines: {node: '>=6'}
dependencies:
pump: 3.0.0
- /get-stream/5.2.0:
+ /get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
dependencies:
pump: 3.0.0
- /get-stream/6.0.1:
+ /get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- /get-symbol-description/1.0.0:
+ /get-symbol-description@1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -12689,21 +14398,33 @@ packages:
get-intrinsic: 1.2.0
dev: true
- /get-tsconfig/4.5.0:
+ /get-tsconfig@4.5.0:
resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==}
dev: true
- /getpass/0.1.7:
+ /get-value@2.0.6:
+ resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /getenv@1.0.0:
+ resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==}
+ engines: {node: '>=6'}
+ dev: false
+ optional: true
+
+ /getpass@0.1.7:
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
dependencies:
assert-plus: 1.0.0
dev: false
- /git-hooks-list/3.1.0:
+ /git-hooks-list@3.1.0:
resolution: {integrity: sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==}
dev: true
- /git-raw-commits/2.0.11:
+ /git-raw-commits@2.0.11:
resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==}
engines: {node: '>=10'}
hasBin: true
@@ -12715,25 +14436,36 @@ packages:
through2: 4.0.2
dev: true
- /github-slugger/1.5.0:
+ /github-slugger@1.5.0:
resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- /glob-parent/6.0.2:
+ /glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
- /glob-to-regexp/0.4.1:
+ /glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- /glob/7.1.4:
+ /glob@6.0.4:
+ resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==}
+ dependencies:
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: false
+ optional: true
+
+ /glob@7.1.4:
resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==}
dependencies:
fs.realpath: 1.0.0
@@ -12744,7 +14476,7 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /glob/7.1.6:
+ /glob@7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
dependencies:
fs.realpath: 1.0.0
@@ -12753,9 +14485,8 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- dev: true
- /glob/7.1.7:
+ /glob@7.1.7:
resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
dependencies:
fs.realpath: 1.0.0
@@ -12766,7 +14497,7 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /glob/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -12776,7 +14507,7 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /glob/9.3.2:
+ /glob@9.3.2:
resolution: {integrity: sha512-BTv/JhKXFEHsErMte/AnfiSv8yYOLLiyH2lTg8vn02O21zWFgHPTfxtgn1QRe7NRgggUhC8hacR2Re94svHqeA==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
@@ -12786,26 +14517,26 @@ packages:
path-scurry: 1.6.3
dev: true
- /global-dirs/0.1.1:
+ /global-dirs@0.1.1:
resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==}
engines: {node: '>=4'}
dependencies:
ini: 1.3.8
dev: true
- /global-dirs/3.0.1:
+ /global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
engines: {node: '>=10'}
dependencies:
ini: 2.0.0
- /global-modules/2.0.0:
+ /global-modules@2.0.0:
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
engines: {node: '>=6'}
dependencies:
global-prefix: 3.0.0
- /global-prefix/3.0.0:
+ /global-prefix@3.0.0:
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
engines: {node: '>=6'}
dependencies:
@@ -12813,35 +14544,35 @@ packages:
kind-of: 6.0.3
which: 1.3.1
- /global/4.4.0:
+ /global@4.4.0:
resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==}
dependencies:
min-document: 2.19.0
process: 0.11.10
dev: false
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.20.0:
+ /globals@13.20.0:
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
- /globalthis/1.0.3:
+ /globalthis@1.0.3:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
dependencies:
define-properties: 1.2.0
dev: true
- /globalyzer/0.1.0:
+ /globalyzer@0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
dev: true
- /globby/11.1.0:
+ /globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
dependencies:
@@ -12852,7 +14583,7 @@ packages:
merge2: 1.4.1
slash: 3.0.0
- /globby/13.1.3:
+ /globby@13.1.3:
resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -12862,20 +14593,20 @@ packages:
merge2: 1.4.1
slash: 4.0.0
- /globjoin/0.1.4:
+ /globjoin@0.1.4:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
dev: true
- /globrex/0.1.2:
+ /globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
dev: true
- /gopd/1.0.1:
+ /gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
get-intrinsic: 1.2.0
- /got/11.8.6:
+ /got@11.8.6:
resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
engines: {node: '>=10.19.0'}
dependencies:
@@ -12892,7 +14623,7 @@ packages:
responselike: 2.0.1
dev: false
- /got/12.1.0:
+ /got@12.1.0:
resolution: {integrity: sha512-hBv2ty9QN2RdbJJMK3hesmSkFTjVIHyIDDbssCKnSmq62edGgImJWD10Eb1k77TiV1bxloxqcFAVK8+9pkhOig==}
engines: {node: '>=14.16'}
dependencies:
@@ -12911,7 +14642,7 @@ packages:
responselike: 2.0.1
dev: false
- /got/9.6.0:
+ /got@9.6.0:
resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==}
engines: {node: '>=8.6'}
dependencies:
@@ -12929,13 +14660,30 @@ packages:
to-readable-stream: 1.0.0
url-parse-lax: 3.0.0
- /graceful-fs/4.2.11:
+ /graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- /grapheme-splitter/1.0.4:
+ /grapheme-splitter@1.0.4:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
- /gray-matter/4.0.3:
+ /graphql-tag@2.12.6(graphql@15.8.0):
+ resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ dependencies:
+ graphql: 15.8.0
+ tslib: 2.5.0
+ dev: false
+ optional: true
+
+ /graphql@15.8.0:
+ resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==}
+ engines: {node: '>= 10.x'}
+ dev: false
+ optional: true
+
+ /gray-matter@4.0.3:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
dependencies:
@@ -12944,21 +14692,21 @@ packages:
section-matter: 1.0.0
strip-bom-string: 1.0.0
- /gzip-size/6.0.0:
+ /gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
dependencies:
duplexer: 0.1.2
- /handle-thing/2.0.1:
+ /handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
- /har-schema/2.0.0:
+ /har-schema@2.0.0:
resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
engines: {node: '>=4'}
dev: false
- /har-validator/5.1.5:
+ /har-validator@5.1.5:
resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==}
engines: {node: '>=6'}
deprecated: this library is no longer supported
@@ -12967,58 +14715,93 @@ packages:
har-schema: 2.0.0
dev: false
- /hard-rejection/2.1.0:
+ /hard-rejection@2.1.0:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
dev: true
- /harmony-reflect/1.6.2:
+ /harmony-reflect@1.6.2:
resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==}
dev: true
- /has-bigints/1.0.2:
+ /has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
dev: true
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-property-descriptors/1.0.0:
+ /has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
get-intrinsic: 1.2.0
- /has-proto/1.0.1:
+ /has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
dev: true
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
- /has-tostringtag/1.0.0:
+ /has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
- /has-yarn/2.1.0:
+ /has-value@0.3.1:
+ resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: false
+ optional: true
+
+ /has-value@1.0.0:
+ resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: false
+ optional: true
+
+ /has-values@0.1.4:
+ resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /has-values@1.0.0:
+ resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: false
+ optional: true
+
+ /has-yarn@2.1.0:
resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==}
engines: {node: '>=8'}
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- /hash-base/3.1.0:
+ /hash-base@3.1.0:
resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
engines: {node: '>=4'}
dependencies:
@@ -13026,13 +14809,13 @@ packages:
readable-stream: 3.6.2
safe-buffer: 5.2.1
- /hash.js/1.1.7:
+ /hash.js@1.1.7:
resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
dependencies:
inherits: 2.0.4
minimalistic-assert: 1.0.1
- /hast-to-hyperscript/9.0.1:
+ /hast-to-hyperscript@9.0.1:
resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==}
dependencies:
'@types/unist': 2.0.6
@@ -13043,7 +14826,7 @@ packages:
unist-util-is: 4.1.0
web-namespaces: 1.1.4
- /hast-util-from-parse5/6.0.1:
+ /hast-util-from-parse5@6.0.1:
resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==}
dependencies:
'@types/parse5': 5.0.3
@@ -13053,10 +14836,10 @@ packages:
vfile-location: 3.2.0
web-namespaces: 1.1.4
- /hast-util-parse-selector/2.2.5:
+ /hast-util-parse-selector@2.2.5:
resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
- /hast-util-raw/6.0.1:
+ /hast-util-raw@6.0.1:
resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==}
dependencies:
'@types/hast': 2.3.4
@@ -13070,7 +14853,7 @@ packages:
xtend: 4.0.2
zwitch: 1.0.5
- /hast-util-to-parse5/6.0.0:
+ /hast-util-to-parse5@6.0.0:
resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==}
dependencies:
hast-to-hyperscript: 9.0.1
@@ -13079,7 +14862,7 @@ packages:
xtend: 4.0.2
zwitch: 1.0.5
- /hastscript/6.0.0:
+ /hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
dependencies:
'@types/hast': 2.3.4
@@ -13088,11 +14871,31 @@ packages:
property-information: 5.6.0
space-separated-tokens: 1.1.5
- /he/1.2.0:
+ /he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- /history/4.10.1:
+ /hermes-estree@0.8.0:
+ resolution: {integrity: sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==}
+ dev: false
+ optional: true
+
+ /hermes-parser@0.8.0:
+ resolution: {integrity: sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==}
+ dependencies:
+ hermes-estree: 0.8.0
+ dev: false
+ optional: true
+
+ /hermes-profile-transformer@0.0.6:
+ resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ source-map: 0.7.4
+ dev: false
+ optional: true
+
+ /history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
'@babel/runtime': 7.21.0
@@ -13102,34 +14905,42 @@ packages:
tiny-warning: 1.0.3
value-equal: 1.0.1
- /hmac-drbg/1.0.1:
+ /hmac-drbg@1.0.1:
resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
dependencies:
hash.js: 1.1.7
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
- /hoist-non-react-statics/3.3.2:
+ /hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
react-is: 16.13.1
- /hook-shell-script-webpack-plugin/0.2.0:
+ /hook-shell-script-webpack-plugin@0.2.0:
resolution: {integrity: sha512-1QcokG2yn0YPc+1GhanoYkHlWdDujC+AlLtk1ebekBQNhNwA0bu3mA6GPjF2nJk5I5MgYSFLLZXihKnm0+dlbQ==}
dev: true
- /hosted-git-info/2.8.9:
+ /hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
- /hosted-git-info/4.1.0:
+ /hosted-git-info@3.0.8:
+ resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==}
+ engines: {node: '>=10'}
+ dependencies:
+ lru-cache: 6.0.0
+ dev: false
+ optional: true
+
+ /hosted-git-info@4.1.0:
resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
engines: {node: '>=10'}
dependencies:
lru-cache: 6.0.0
dev: true
- /hpack.js/2.1.6:
+ /hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
dependencies:
inherits: 2.0.4
@@ -13137,13 +14948,13 @@ packages:
readable-stream: 2.3.8
wbuf: 1.7.3
- /html-entities/2.3.3:
+ /html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
- /html-escaper/2.0.2:
+ /html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- /html-minifier-terser/6.1.0:
+ /html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
engines: {node: '>=12'}
hasBin: true
@@ -13156,14 +14967,14 @@ packages:
relateurl: 0.2.7
terser: 5.16.8
- /html-tags/3.2.0:
+ /html-tags@3.2.0:
resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==}
engines: {node: '>=8'}
- /html-void-elements/1.0.5:
+ /html-void-elements@1.0.5:
resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
- /html-webpack-plugin/5.5.0_webpack@5.76.3:
+ /html-webpack-plugin@5.5.0(webpack@5.76.3):
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -13174,14 +14985,14 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /htmlescape/1.1.1:
+ /htmlescape@1.1.1:
resolution: {integrity: sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg==}
engines: {node: '>=0.10'}
dev: true
- /htmlparser2/6.1.0:
+ /htmlparser2@6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
domelementtype: 2.3.0
@@ -13189,7 +15000,7 @@ packages:
domutils: 2.8.0
entities: 2.2.0
- /htmlparser2/8.0.2:
+ /htmlparser2@8.0.2:
resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
dependencies:
domelementtype: 2.3.0
@@ -13198,13 +15009,13 @@ packages:
entities: 4.4.0
dev: false
- /http-cache-semantics/4.1.1:
+ /http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
- /http-deceiver/1.2.7:
+ /http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
- /http-errors/1.6.3:
+ /http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
dependencies:
@@ -13213,7 +15024,7 @@ packages:
setprototypeof: 1.1.0
statuses: 1.5.0
- /http-errors/1.8.1:
+ /http-errors@1.8.1:
resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
engines: {node: '>= 0.6'}
dependencies:
@@ -13224,7 +15035,7 @@ packages:
toidentifier: 1.0.1
dev: false
- /http-errors/2.0.0:
+ /http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
@@ -13234,14 +15045,14 @@ packages:
statuses: 2.0.1
toidentifier: 1.0.1
- /http-https/1.0.0:
+ /http-https@1.0.0:
resolution: {integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==}
dev: false
- /http-parser-js/0.5.8:
+ /http-parser-js@0.5.8:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
- /http-proxy-middleware/2.0.6_@types+express@4.17.17:
+ /http-proxy-middleware@2.0.6(@types/express@4.17.17):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -13259,7 +15070,7 @@ packages:
transitivePeerDependencies:
- debug
- /http-proxy/1.18.1:
+ /http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -13269,7 +15080,7 @@ packages:
transitivePeerDependencies:
- debug
- /http-signature/1.2.0:
+ /http-signature@1.2.0:
resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==}
engines: {node: '>=0.8', npm: '>=1.3.7'}
dependencies:
@@ -13278,7 +15089,7 @@ packages:
sshpk: 1.17.0
dev: false
- /http2-wrapper/1.0.3:
+ /http2-wrapper@1.0.3:
resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==}
engines: {node: '>=10.19.0'}
dependencies:
@@ -13286,7 +15097,7 @@ packages:
resolve-alpn: 1.2.1
dev: false
- /http2-wrapper/2.2.0:
+ /http2-wrapper@2.2.0:
resolution: {integrity: sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==}
engines: {node: '>=10.19.0'}
dependencies:
@@ -13294,32 +15105,43 @@ packages:
resolve-alpn: 1.2.1
dev: false
- /https-browserify/1.0.0:
+ /https-browserify@1.0.0:
resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
dev: true
- /human-signals/2.1.0:
+ /https-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- /human-signals/4.3.1:
+ /human-signals@4.3.1:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
dev: true
- /husky/8.0.3:
+ /husky@8.0.3:
resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
engines: {node: '>=14'}
hasBin: true
dev: true
- /iconv-lite/0.4.24:
+ /iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- /icss-utils/5.1.0_postcss@8.4.21:
+ /icss-utils@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -13327,57 +15149,73 @@ packages:
dependencies:
postcss: 8.4.21
- /identity-obj-proxy/3.0.0:
+ /identity-obj-proxy@3.0.0:
resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==}
engines: {node: '>=4'}
dependencies:
harmony-reflect: 1.6.2
dev: true
- /idna-uts46-hx/2.3.1:
+ /idna-uts46-hx@2.3.1:
resolution: {integrity: sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==}
engines: {node: '>=4.0.0'}
dependencies:
punycode: 2.1.0
dev: false
- /ieee754/1.2.1:
+ /ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /ignore/5.2.4:
+ /ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
- /image-size/1.0.2:
+ /image-size@0.6.3:
+ resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==}
+ engines: {node: '>=4.0'}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /image-size@1.0.2:
resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
queue: 6.0.2
- /immer/9.0.21:
+ /immer@9.0.21:
resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
- /immutable/4.3.0:
+ /immutable@4.3.0:
resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==}
- /import-fresh/3.3.0:
+ /import-fresh@2.0.0:
+ resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+ dev: false
+ optional: true
+
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- /import-lazy/2.1.0:
+ /import-lazy@2.1.0:
resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==}
engines: {node: '>=4'}
- /import-lazy/4.0.0:
+ /import-lazy@4.0.0:
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
engines: {node: '>=8'}
dev: true
- /import-local/3.1.0:
+ /import-local@3.1.0:
resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
hasBin: true
@@ -13385,52 +15223,57 @@ packages:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
- /imurmurhash/0.1.4:
+ /imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- /indent-string/4.0.0:
+ /indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- /infima/0.2.0-alpha.42:
+ /infer-owner@1.0.4:
+ resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
+ dev: false
+ optional: true
+
+ /infima@0.2.0-alpha.42:
resolution: {integrity: sha512-ift8OXNbQQwtbIt6z16KnSWP7uJ/SysSMFI4F87MNRTicypfl4Pv3E2OGVv6N3nSZFJvA8imYulCBS64iyHYww==}
engines: {node: '>=12'}
dev: false
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
- /inherits/2.0.1:
+ /inherits@2.0.1:
resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==}
dev: true
- /inherits/2.0.3:
+ /inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini/1.3.8:
+ /ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- /ini/2.0.0:
+ /ini@2.0.0:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
- /inline-source-map/0.6.2:
+ /inline-source-map@0.6.2:
resolution: {integrity: sha512-0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA==}
dependencies:
source-map: 0.5.7
dev: true
- /inline-style-parser/0.1.1:
+ /inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- /insert-module-globals/7.2.1:
+ /insert-module-globals@7.2.1:
resolution: {integrity: sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg==}
hasBin: true
dependencies:
@@ -13446,7 +15289,16 @@ packages:
xtend: 4.0.2
dev: true
- /internal-slot/1.0.5:
+ /internal-ip@4.3.0:
+ resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==}
+ engines: {node: '>=6'}
+ dependencies:
+ default-gateway: 4.2.0
+ ipaddr.js: 1.9.1
+ dev: false
+ optional: true
+
+ /internal-slot@1.0.5:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13455,15 +15307,15 @@ packages:
side-channel: 1.0.4
dev: true
- /interpret/1.4.0:
+ /interpret@1.4.0:
resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
engines: {node: '>= 0.10'}
- /interpret/3.1.1:
+ /interpret@3.1.1:
resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==}
engines: {node: '>=10.13.0'}
- /intl-messageformat/9.13.0:
+ /intl-messageformat@9.13.0:
resolution: {integrity: sha512-7sGC7QnSQGa5LZP7bXLDhVDtQOeKGeBFGHF2Y8LVBwYZoQZCgWeKoPGTa5GMG8g/TzDgeXuYJQis7Ggiw2xTOw==}
dependencies:
'@formatjs/ecma402-abstract': 1.11.4
@@ -13472,36 +15324,63 @@ packages:
tslib: 2.5.0
dev: false
- /invariant/2.2.4:
+ /invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
- /ipaddr.js/1.9.1:
+ /ip-regex@2.1.0:
+ resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /ip@1.1.8:
+ resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
+ dev: false
+ optional: true
+
+ /ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- /ipaddr.js/2.0.1:
+ /ipaddr.js@2.0.1:
resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
engines: {node: '>= 10'}
- /is-alphabetical/1.0.4:
+ /is-accessor-descriptor@0.1.6:
+ resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ optional: true
+
+ /is-accessor-descriptor@1.0.0:
+ resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: false
+ optional: true
+
+ /is-alphabetical@1.0.4:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
- /is-alphanumerical/1.0.4:
+ /is-alphanumerical@1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
dependencies:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
- /is-arguments/1.1.1:
+ /is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-array-buffer/3.0.2:
+ /is-array-buffer@3.0.2:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
dependencies:
call-bind: 1.0.2
@@ -13509,22 +15388,22 @@ packages:
is-typed-array: 1.1.10
dev: true
- /is-arrayish/0.2.1:
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- /is-bigint/1.0.4:
+ /is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
has-bigints: 1.0.2
dev: true
- /is-binary-path/2.1.0:
+ /is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
- /is-boolean-object/1.1.2:
+ /is-boolean-object@1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13532,173 +15411,264 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-buffer/1.1.6:
+ /is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- dev: true
- /is-buffer/2.0.5:
+ /is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
- /is-callable/1.2.7:
+ /is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- /is-ci/2.0.0:
+ /is-ci@2.0.0:
resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
hasBin: true
dependencies:
ci-info: 2.0.0
- /is-ci/3.0.1:
+ /is-ci@3.0.1:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
dependencies:
ci-info: 3.8.0
dev: true
- /is-core-module/2.11.0:
+ /is-core-module@2.11.0:
resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
dependencies:
has: 1.0.3
- /is-date-object/1.0.5:
+ /is-data-descriptor@0.1.4:
+ resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ optional: true
+
+ /is-data-descriptor@1.0.0:
+ resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: false
+ optional: true
+
+ /is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
dev: true
- /is-decimal/1.0.4:
+ /is-decimal@1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
- /is-docker/2.2.1:
+ /is-descriptor@0.1.6:
+ resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 0.1.6
+ is-data-descriptor: 0.1.4
+ kind-of: 5.1.0
+ dev: false
+ optional: true
+
+ /is-descriptor@1.0.2:
+ resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 1.0.0
+ is-data-descriptor: 1.0.0
+ kind-of: 6.0.3
+ dev: false
+ optional: true
+
+ /is-directory@0.3.1:
+ resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
- /is-extendable/0.1.1:
+ /is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
- /is-extglob/2.1.1:
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ /is-extendable@1.0.1:
+ resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: false
+ optional: true
- /is-fullwidth-code-point/3.0.0:
- resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
- engines: {node: '>=8'}
+ /is-extglob@1.0.0:
+ resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
- /is-fullwidth-code-point/4.0.0:
+ /is-extglob@2.1.1:
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
+
+ /is-fullwidth-code-point@2.0.0:
+ resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /is-fullwidth-code-point@3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+
+ /is-fullwidth-code-point@4.0.0:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
dev: true
- /is-function/1.0.2:
+ /is-function@1.0.2:
resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==}
dev: false
- /is-generator-fn/2.1.0:
+ /is-generator-fn@2.1.0:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- /is-generator-function/1.0.10:
+ /is-generator-function@1.0.10:
resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- /is-glob/4.0.3:
+ /is-glob@2.0.1:
+ resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 1.0.0
+ dev: false
+ optional: true
+
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- /is-hex-prefixed/1.0.0:
+ /is-hex-prefixed@1.0.0:
resolution: {integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==}
engines: {node: '>=6.5.0', npm: '>=3'}
dev: false
- /is-hexadecimal/1.0.4:
+ /is-hexadecimal@1.0.4:
resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
- /is-installed-globally/0.4.0:
+ /is-installed-globally@0.4.0:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
engines: {node: '>=10'}
dependencies:
global-dirs: 3.0.1
is-path-inside: 3.0.3
- /is-map/2.0.2:
+ /is-interactive@1.0.0:
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
+ dev: false
+ optional: true
+
+ /is-invalid-path@0.1.0:
+ resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-glob: 2.0.1
+ dev: false
+ optional: true
+
+ /is-map@2.0.2:
resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
dev: true
- /is-negative-zero/2.0.2:
+ /is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
dev: true
- /is-npm/5.0.0:
+ /is-npm@5.0.0:
resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==}
engines: {node: '>=10'}
- /is-number-object/1.0.7:
+ /is-number-object@1.0.7:
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
dev: true
- /is-number/7.0.0:
+ /is-number@3.0.0:
+ resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ optional: true
+
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-obj/1.0.1:
+ /is-obj@1.0.1:
resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
- /is-obj/2.0.0:
+ /is-obj@2.0.0:
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
engines: {node: '>=8'}
- /is-path-cwd/2.2.0:
+ /is-path-cwd@2.2.0:
resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
engines: {node: '>=6'}
- /is-path-inside/3.0.3:
+ /is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
- /is-plain-obj/1.1.0:
+ /is-plain-obj@1.1.0:
resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
engines: {node: '>=0.10.0'}
dev: true
- /is-plain-obj/2.1.0:
+ /is-plain-obj@2.1.0:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
- /is-plain-obj/3.0.0:
+ /is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
- /is-plain-obj/4.1.0:
+ /is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
dev: true
- /is-plain-object/2.0.4:
+ /is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- /is-plain-object/5.0.0:
+ /is-plain-object@5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
dev: true
- /is-regex/1.1.4:
+ /is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13706,55 +15676,61 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-regexp/1.0.0:
+ /is-regexp@1.0.0:
resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
- /is-root/2.1.0:
+ /is-root@2.1.0:
resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
engines: {node: '>=6'}
- /is-set/2.0.2:
+ /is-set@2.0.2:
resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
dev: true
- /is-shared-array-buffer/1.0.2:
+ /is-shared-array-buffer@1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
call-bind: 1.0.2
dev: true
- /is-stream/2.0.1:
+ /is-stream@1.1.0:
+ resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- /is-stream/3.0.0:
+ /is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /is-string/1.0.7:
+ /is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
dev: true
- /is-symbol/1.0.4:
+ /is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
dev: true
- /is-text-path/1.0.1:
+ /is-text-path@1.0.1:
resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
engines: {node: '>=0.10.0'}
dependencies:
text-extensions: 1.9.0
dev: true
- /is-typed-array/1.1.10:
+ /is-typed-array@1.1.10:
resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13764,63 +15740,97 @@ packages:
gopd: 1.0.1
has-tostringtag: 1.0.0
- /is-typedarray/1.0.0:
+ /is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
- /is-url/1.2.4:
+ /is-unicode-supported@0.1.0:
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
+ dev: false
+ optional: true
+
+ /is-url@1.2.4:
resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
dev: true
- /is-weakmap/2.0.1:
+ /is-valid-path@0.1.1:
+ resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-invalid-path: 0.1.0
+ dev: false
+ optional: true
+
+ /is-weakmap@2.0.1:
resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
dev: true
- /is-weakref/1.0.2:
+ /is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
dev: true
- /is-weakset/2.0.2:
+ /is-weakset@2.0.2:
resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.0
dev: true
- /is-whitespace-character/1.0.4:
+ /is-whitespace-character@1.0.4:
resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
- /is-word-character/1.0.4:
+ /is-windows@1.0.2:
+ resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /is-word-character@1.0.4:
resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==}
- /is-wsl/2.2.0:
+ /is-wsl@1.1.0:
+ resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
- /is-yarn-global/0.3.0:
+ /is-yarn-global@0.3.0:
resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==}
- /isarray/0.0.1:
+ /isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
- /isarray/1.0.0:
+ /isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- /isarray/2.0.5:
+ /isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
dev: true
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- /isobject/3.0.1:
+ /isobject@2.1.0:
+ resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isarray: 1.0.0
+ dev: false
+ optional: true
+
+ /isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- /isomorphic-webcrypto/2.3.8:
+ /isomorphic-webcrypto@2.3.8(expo@48.0.10)(react-native@0.71.6):
resolution: {integrity: sha512-XddQSI0WYlSCjxtm1AI8kWQOulf7hAN3k3DclF1sxDJZqOe0pcsOt675zvWW91cZH9hYs3nlA3Ev8QK5i80SxQ==}
dependencies:
'@peculiar/webcrypto': 1.4.3
@@ -13833,22 +15843,22 @@ packages:
optionalDependencies:
'@unimodules/core': 7.1.2
'@unimodules/react-native-adapter': 6.3.9
- expo-random: 13.1.1
- react-native-securerandom: 0.1.1
+ expo-random: 13.1.1(expo@48.0.10)
+ react-native-securerandom: 0.1.1(react-native@0.71.6)
transitivePeerDependencies:
- expo
- react-native
dev: false
- /isstream/0.1.2:
+ /isstream@0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
dev: false
- /istanbul-lib-coverage/3.2.0:
+ /istanbul-lib-coverage@3.2.0:
resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
engines: {node: '>=8'}
- /istanbul-lib-instrument/5.2.1:
+ /istanbul-lib-instrument@5.2.1:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
@@ -13860,7 +15870,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /istanbul-lib-report/3.0.0:
+ /istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
engines: {node: '>=8'}
dependencies:
@@ -13868,7 +15878,7 @@ packages:
make-dir: 3.1.0
supports-color: 7.2.0
- /istanbul-lib-source-maps/4.0.1:
+ /istanbul-lib-source-maps@4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
dependencies:
@@ -13878,18 +15888,18 @@ packages:
transitivePeerDependencies:
- supports-color
- /istanbul-reports/3.1.5:
+ /istanbul-reports@3.1.5:
resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.0
- /it-first/1.0.7:
+ /it-first@1.0.7:
resolution: {integrity: sha512-nvJKZoBpZD/6Rtde6FXqwDqDZGF1sCADmr2Zoc0hZsIvnE449gRFnGctxDf09Bzc/FWnHXAdaHVIetY6lrE0/g==}
dev: false
- /jake/10.8.5:
+ /jake@10.8.5:
resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
engines: {node: '>=10'}
hasBin: true
@@ -13900,17 +15910,17 @@ packages:
minimatch: 3.1.2
dev: true
- /javascript-natural-sort/0.7.1:
+ /javascript-natural-sort@0.7.1:
resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
- /jest-changed-files/29.5.0:
+ /jest-changed-files@29.5.0:
resolution: {integrity: sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
execa: 5.1.1
p-limit: 3.1.0
- /jest-circus/28.1.3:
+ /jest-circus@28.1.3:
resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -13937,7 +15947,7 @@ packages:
- supports-color
dev: true
- /jest-circus/29.5.0:
+ /jest-circus@29.5.0:
resolution: {integrity: sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -13964,7 +15974,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-cli/29.5.0:
+ /jest-cli@29.5.0(@types/node@18.15.10)(ts-node@10.9.1):
resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -13974,14 +15984,14 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.5.0
+ '@jest/core': 29.5.0(ts-node@10.9.1)
'@jest/test-result': 29.5.0
'@jest/types': 29.5.0
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 29.5.0
+ jest-config: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
jest-util: 29.5.0
jest-validate: 29.5.0
prompts: 2.4.2
@@ -13990,36 +16000,8 @@ packages:
- '@types/node'
- supports-color
- ts-node
- dev: true
- /jest-cli/29.5.0_m54q5dse6x3xfnwbnypkikpaee:
- resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.5.0_ts-node@10.9.1
- '@jest/test-result': 29.5.0
- '@jest/types': 29.5.0
- chalk: 4.1.2
- exit: 0.1.2
- graceful-fs: 4.2.11
- import-local: 3.1.0
- jest-config: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
- jest-util: 29.5.0
- jest-validate: 29.5.0
- prompts: 2.4.2
- yargs: 17.7.1
- transitivePeerDependencies:
- - '@types/node'
- - supports-color
- - ts-node
-
- /jest-config/28.1.1_m54q5dse6x3xfnwbnypkikpaee:
+ /jest-config@28.1.1(@types/node@18.15.10)(ts-node@10.9.1):
resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -14035,7 +16017,7 @@ packages:
'@jest/test-sequencer': 28.1.3
'@jest/types': 28.1.3
'@types/node': 18.15.10
- babel-jest: 28.1.3_@babel+core@7.21.3
+ babel-jest: 28.1.3(@babel/core@7.21.3)
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.1
@@ -14054,50 +16036,12 @@ packages:
pretty-format: 28.1.3
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1_z3vu5dg2hu3jqyh3anri5tms2q
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /jest-config/29.5.0:
- resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
- dependencies:
- '@babel/core': 7.21.3
- '@jest/test-sequencer': 29.5.0
- '@jest/types': 29.5.0
- babel-jest: 29.5.0_@babel+core@7.21.3
- chalk: 4.1.2
- ci-info: 3.8.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.5.0
- jest-environment-node: 29.5.0
- jest-get-type: 29.4.3
- jest-regex-util: 29.4.3
- jest-resolve: 29.5.0
- jest-runner: 29.5.0
- jest-util: 29.5.0
- jest-validate: 29.5.0
- micromatch: 4.0.5
- parse-json: 5.2.0
- pretty-format: 29.5.0
- slash: 3.0.0
- strip-json-comments: 3.1.1
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5)
transitivePeerDependencies:
- supports-color
dev: true
- /jest-config/29.5.0_@types+node@18.15.10:
+ /jest-config@29.5.0(@types/node@18.15.10)(ts-node@10.9.1):
resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -14113,7 +16057,7 @@ packages:
'@jest/test-sequencer': 29.5.0
'@jest/types': 29.5.0
'@types/node': 18.15.10
- babel-jest: 29.5.0_@babel+core@7.21.3
+ babel-jest: 29.5.0(@babel/core@7.21.3)
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.1
@@ -14132,50 +16076,11 @@ packages:
pretty-format: 29.5.0
slash: 3.0.0
strip-json-comments: 3.1.1
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /jest-config/29.5.0_m54q5dse6x3xfnwbnypkikpaee:
- resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
- dependencies:
- '@babel/core': 7.21.3
- '@jest/test-sequencer': 29.5.0
- '@jest/types': 29.5.0
- '@types/node': 18.15.10
- babel-jest: 29.5.0_@babel+core@7.21.3
- chalk: 4.1.2
- ci-info: 3.8.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.5.0
- jest-environment-node: 29.5.0
- jest-get-type: 29.4.3
- jest-regex-util: 29.4.3
- jest-resolve: 29.5.0
- jest-runner: 29.5.0
- jest-util: 29.5.0
- jest-validate: 29.5.0
- micromatch: 4.0.5
- parse-json: 5.2.0
- pretty-format: 29.5.0
- slash: 3.0.0
- strip-json-comments: 3.1.1
- ts-node: 10.9.1_z3vu5dg2hu3jqyh3anri5tms2q
- transitivePeerDependencies:
- - supports-color
-
- /jest-diff/28.1.3:
+ /jest-diff@28.1.3:
resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14185,7 +16090,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-diff/29.5.0:
+ /jest-diff@29.5.0:
resolution: {integrity: sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14194,20 +16099,20 @@ packages:
jest-get-type: 29.4.3
pretty-format: 29.5.0
- /jest-docblock/28.1.1:
+ /jest-docblock@28.1.1:
resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
detect-newline: 3.1.0
dev: true
- /jest-docblock/29.4.3:
+ /jest-docblock@29.4.3:
resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
detect-newline: 3.1.0
- /jest-each/28.1.3:
+ /jest-each@28.1.3:
resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14218,7 +16123,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-each/29.5.0:
+ /jest-each@29.5.0:
resolution: {integrity: sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14228,7 +16133,7 @@ packages:
jest-util: 29.5.0
pretty-format: 29.5.0
- /jest-environment-node/28.1.3:
+ /jest-environment-node@28.1.3:
resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14240,7 +16145,7 @@ packages:
jest-util: 28.1.3
dev: true
- /jest-environment-node/29.5.0:
+ /jest-environment-node@29.5.0:
resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14251,7 +16156,7 @@ packages:
jest-mock: 29.5.0
jest-util: 29.5.0
- /jest-extended/3.2.4_jest@29.5.0:
+ /jest-extended@3.2.4(jest@29.5.0):
resolution: {integrity: sha512-lSEYhSmvXZG/7YXI7KO3LpiUiQ90gi5giwCJNDMMsX5a+/NZhdbQF2G4ALOBN+KcXVT3H6FPVPohAuMXooaLTQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -14260,21 +16165,27 @@ packages:
jest:
optional: true
dependencies:
- jest: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
+ jest: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
jest-diff: 29.5.0
jest-get-type: 29.4.3
dev: true
- /jest-get-type/28.0.2:
+ /jest-get-type@26.3.0:
+ resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
+ engines: {node: '>= 10.14.2'}
+ dev: false
+ optional: true
+
+ /jest-get-type@28.0.2:
resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dev: true
- /jest-get-type/29.4.3:
+ /jest-get-type@29.4.3:
resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- /jest-haste-map/28.1.3:
+ /jest-haste-map@28.1.3:
resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14293,7 +16204,7 @@ packages:
fsevents: 2.3.2
dev: true
- /jest-haste-map/29.5.0:
+ /jest-haste-map@29.5.0:
resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14311,7 +16222,7 @@ packages:
optionalDependencies:
fsevents: 2.3.2
- /jest-leak-detector/28.1.3:
+ /jest-leak-detector@28.1.3:
resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14319,14 +16230,14 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-leak-detector/29.5.0:
+ /jest-leak-detector@29.5.0:
resolution: {integrity: sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
jest-get-type: 29.4.3
pretty-format: 29.5.0
- /jest-matcher-utils/28.1.3:
+ /jest-matcher-utils@28.1.3:
resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14336,7 +16247,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-matcher-utils/29.5.0:
+ /jest-matcher-utils@29.5.0:
resolution: {integrity: sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14345,7 +16256,7 @@ packages:
jest-get-type: 29.4.3
pretty-format: 29.5.0
- /jest-message-util/28.1.3:
+ /jest-message-util@28.1.3:
resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14360,7 +16271,7 @@ packages:
stack-utils: 2.0.6
dev: true
- /jest-message-util/29.5.0:
+ /jest-message-util@29.5.0:
resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14374,7 +16285,7 @@ packages:
slash: 3.0.0
stack-utils: 2.0.6
- /jest-mock/28.1.3:
+ /jest-mock@28.1.3:
resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14382,7 +16293,7 @@ packages:
'@types/node': 18.15.10
dev: true
- /jest-mock/29.5.0:
+ /jest-mock@29.5.0:
resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14390,7 +16301,7 @@ packages:
'@types/node': 18.15.10
jest-util: 29.5.0
- /jest-pnp-resolver/1.2.3_jest-resolve@28.1.1:
+ /jest-pnp-resolver@1.2.3(jest-resolve@28.1.1):
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
@@ -14402,7 +16313,7 @@ packages:
jest-resolve: 28.1.1
dev: true
- /jest-pnp-resolver/1.2.3_jest-resolve@28.1.3:
+ /jest-pnp-resolver@1.2.3(jest-resolve@28.1.3):
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
@@ -14414,7 +16325,7 @@ packages:
jest-resolve: 28.1.3
dev: true
- /jest-pnp-resolver/1.2.3_jest-resolve@29.5.0:
+ /jest-pnp-resolver@1.2.3(jest-resolve@29.5.0):
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
@@ -14425,16 +16336,22 @@ packages:
dependencies:
jest-resolve: 29.5.0
- /jest-regex-util/28.0.2:
+ /jest-regex-util@27.5.1:
+ resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dev: false
+ optional: true
+
+ /jest-regex-util@28.0.2:
resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dev: true
- /jest-regex-util/29.4.3:
+ /jest-regex-util@29.4.3:
resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- /jest-resolve-dependencies/29.5.0:
+ /jest-resolve-dependencies@29.5.0:
resolution: {integrity: sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14443,14 +16360,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-resolve/28.1.1:
+ /jest-resolve@28.1.1:
resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.11
jest-haste-map: 28.1.3
- jest-pnp-resolver: 1.2.3_jest-resolve@28.1.1
+ jest-pnp-resolver: 1.2.3(jest-resolve@28.1.1)
jest-util: 28.1.1
jest-validate: 28.1.3
resolve: 1.22.1
@@ -14458,14 +16375,14 @@ packages:
slash: 3.0.0
dev: true
- /jest-resolve/28.1.3:
+ /jest-resolve@28.1.3:
resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.11
jest-haste-map: 28.1.3
- jest-pnp-resolver: 1.2.3_jest-resolve@28.1.3
+ jest-pnp-resolver: 1.2.3(jest-resolve@28.1.3)
jest-util: 28.1.3
jest-validate: 28.1.3
resolve: 1.22.1
@@ -14473,21 +16390,21 @@ packages:
slash: 3.0.0
dev: true
- /jest-resolve/29.5.0:
+ /jest-resolve@29.5.0:
resolution: {integrity: sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.11
jest-haste-map: 29.5.0
- jest-pnp-resolver: 1.2.3_jest-resolve@29.5.0
+ jest-pnp-resolver: 1.2.3(jest-resolve@29.5.0)
jest-util: 29.5.0
jest-validate: 29.5.0
resolve: 1.22.1
resolve.exports: 2.0.2
slash: 3.0.0
- /jest-runner/28.1.3:
+ /jest-runner@28.1.3:
resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14516,7 +16433,7 @@ packages:
- supports-color
dev: true
- /jest-runner/29.5.0:
+ /jest-runner@29.5.0:
resolution: {integrity: sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14544,7 +16461,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-runtime/28.1.3:
+ /jest-runtime@28.1.3:
resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14574,7 +16491,7 @@ packages:
- supports-color
dev: true
- /jest-runtime/29.5.0:
+ /jest-runtime@29.5.0:
resolution: {integrity: sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14603,13 +16520,22 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-snapshot/28.1.3:
+ /jest-serializer@27.5.1:
+ resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@types/node': 18.15.10
+ graceful-fs: 4.2.11
+ dev: false
+ optional: true
+
+ /jest-snapshot@28.1.3:
resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@babel/core': 7.21.3
'@babel/generator': 7.21.3
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.3)
'@babel/traverse': 7.21.3
'@babel/types': 7.21.3
'@jest/expect-utils': 28.1.3
@@ -14617,7 +16543,7 @@ packages:
'@jest/types': 28.1.3
'@types/babel__traverse': 7.18.3
'@types/prettier': 2.7.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.3
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.3)
chalk: 4.1.2
expect: 28.1.3
graceful-fs: 4.2.11
@@ -14634,14 +16560,14 @@ packages:
- supports-color
dev: true
- /jest-snapshot/29.5.0:
+ /jest-snapshot@29.5.0:
resolution: {integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/core': 7.21.3
'@babel/generator': 7.21.3
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.3)
'@babel/traverse': 7.21.3
'@babel/types': 7.21.3
'@jest/expect-utils': 29.5.0
@@ -14649,7 +16575,7 @@ packages:
'@jest/types': 29.5.0
'@types/babel__traverse': 7.18.3
'@types/prettier': 2.7.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.3
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.3)
chalk: 4.1.2
expect: 29.5.0
graceful-fs: 4.2.11
@@ -14664,7 +16590,20 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-util/28.1.1:
+ /jest-util@27.5.1:
+ resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dependencies:
+ '@jest/types': 27.5.1
+ '@types/node': 18.15.10
+ chalk: 4.1.2
+ ci-info: 3.8.0
+ graceful-fs: 4.2.11
+ picomatch: 2.3.1
+ dev: false
+ optional: true
+
+ /jest-util@28.1.1:
resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14676,7 +16615,7 @@ packages:
picomatch: 2.3.1
dev: true
- /jest-util/28.1.3:
+ /jest-util@28.1.3:
resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14688,7 +16627,7 @@ packages:
picomatch: 2.3.1
dev: true
- /jest-util/29.5.0:
+ /jest-util@29.5.0:
resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14699,7 +16638,20 @@ packages:
graceful-fs: 4.2.11
picomatch: 2.3.1
- /jest-validate/28.1.3:
+ /jest-validate@26.6.2:
+ resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ camelcase: 6.3.0
+ chalk: 4.1.2
+ jest-get-type: 26.3.0
+ leven: 3.1.0
+ pretty-format: 26.6.2
+ dev: false
+ optional: true
+
+ /jest-validate@28.1.3:
resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14711,7 +16663,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-validate/29.5.0:
+ /jest-validate@29.5.0:
resolution: {integrity: sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14722,7 +16674,7 @@ packages:
leven: 3.1.0
pretty-format: 29.5.0
- /jest-watcher/28.1.3:
+ /jest-watcher@28.1.3:
resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14736,7 +16688,7 @@ packages:
string-length: 4.0.2
dev: true
- /jest-watcher/29.5.0:
+ /jest-watcher@29.5.0:
resolution: {integrity: sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14749,7 +16701,7 @@ packages:
jest-util: 29.5.0
string-length: 4.0.2
- /jest-worker/27.5.1:
+ /jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
@@ -14757,7 +16709,7 @@ packages:
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest-worker/28.1.3:
+ /jest-worker@28.1.3:
resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14766,7 +16718,7 @@ packages:
supports-color: 8.1.1
dev: true
- /jest-worker/29.5.0:
+ /jest-worker@29.5.0:
resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -14775,7 +16727,7 @@ packages:
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest/29.5.0:
+ /jest@29.5.0(@types/node@18.15.10)(ts-node@10.9.1):
resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -14785,46 +16737,31 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.5.0
+ '@jest/core': 29.5.0(ts-node@10.9.1)
'@jest/types': 29.5.0
import-local: 3.1.0
- jest-cli: 29.5.0
+ jest-cli: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
transitivePeerDependencies:
- '@types/node'
- supports-color
- ts-node
- dev: true
- /jest/29.5.0_m54q5dse6x3xfnwbnypkikpaee:
- resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.5.0_ts-node@10.9.1
- '@jest/types': 29.5.0
- import-local: 3.1.0
- jest-cli: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
- transitivePeerDependencies:
- - '@types/node'
- - supports-color
- - ts-node
-
- /jet-logger/1.2.2:
+ /jet-logger@1.2.2:
resolution: {integrity: sha512-Kbw4G3BC45+Umz5XBnsE50pHplruJTVKGRy5X1YfCu3Te7f8ggTL8Tm10YegAD2QP41MVQ3o/Y9MFAZzfythqw==}
dependencies:
colors: 1.3.0
dev: false
- /jju/1.4.0:
+ /jimp-compact@0.16.1:
+ resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==}
+ dev: false
+ optional: true
+
+ /jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
dev: true
- /joi/17.9.1:
+ /joi@17.9.1:
resolution: {integrity: sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==}
dependencies:
'@hapi/hoek': 9.3.0
@@ -14833,152 +16770,231 @@ packages:
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- /jose/4.13.1:
+ /join-component@1.1.0:
+ resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==}
+ dev: false
+ optional: true
+
+ /jose@4.13.1:
resolution: {integrity: sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ==}
dev: false
- /joycon/3.1.1:
+ /joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
dev: true
- /js-sdsl/4.4.0:
+ /js-sdsl@4.4.0:
resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==}
- /js-sha256/0.9.0:
+ /js-sha256@0.9.0:
resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==}
dev: false
- /js-sha3/0.5.7:
+ /js-sha3@0.5.7:
resolution: {integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==}
dev: false
- /js-sha3/0.8.0:
+ /js-sha3@0.8.0:
resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==}
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml/3.14.1:
+ /js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
- /jsbn/0.1.1:
+ /jsbn@0.1.1:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
dev: false
- /jsesc/0.5.0:
+ /jsc-android@250231.0.0:
+ resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==}
+ dev: false
+ optional: true
+
+ /jscodeshift@0.13.1(@babel/preset-env@7.20.2):
+ resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
+ hasBin: true
+ peerDependencies:
+ '@babel/preset-env': ^7.1.6
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-flow': 7.21.4(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
+ '@babel/register': 7.21.0(@babel/core@7.21.3)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.21.3)
+ chalk: 4.1.2
+ flow-parser: 0.185.2
+ graceful-fs: 4.2.11
+ micromatch: 3.1.10
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ recast: 0.20.5
+ temp: 0.8.4
+ write-file-atomic: 2.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
- /json-buffer/3.0.0:
+ /json-buffer@3.0.0:
resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==}
- /json-buffer/3.0.1:
+ /json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
dev: false
- /json-canonicalize/1.0.4:
+ /json-canonicalize@1.0.4:
resolution: {integrity: sha512-YNr/ePzgReHwlnAm3EVV1pcimwesI+1DZr5v7WBKOc1zE1t7pjxWAPRxJFT3ll6flLIdRe0DPia/8cl2FLAZNA==}
dev: false
- /json-loader/0.5.7:
+ /json-loader@0.5.7:
resolution: {integrity: sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==}
dev: false
- /json-parse-even-better-errors/2.3.1:
+ /json-parse-better-errors@1.0.2:
+ resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+ dev: false
+ optional: true
+
+ /json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- /json-pointer/0.6.2:
+ /json-pointer@0.6.2:
resolution: {integrity: sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==}
dependencies:
foreach: 2.0.6
dev: false
- /json-rpc-engine/6.1.0:
+ /json-rpc-engine@6.1.0:
resolution: {integrity: sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==}
engines: {node: '>=10.0.0'}
dependencies:
'@metamask/safe-event-emitter': 2.0.0
eth-rpc-errors: 4.0.3
- /json-rpc-middleware-stream/4.2.1:
+ /json-rpc-middleware-stream@4.2.1:
resolution: {integrity: sha512-6QKayke/8lg0nTjOpRCq4JCgRx7bVybldmloIfY21HSDV0GUevcV9i8DJNvuKTJx4KR9EDIf6HTStAnEovGUvA==}
engines: {node: '>=14.0.0'}
dependencies:
'@metamask/safe-event-emitter': 2.0.0
readable-stream: 2.3.8
- /json-schema-traverse/0.4.1:
+ /json-schema-deref-sync@0.13.0:
+ resolution: {integrity: sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ clone: 2.1.2
+ dag-map: 1.0.2
+ is-valid-path: 0.1.1
+ lodash: 4.17.21
+ md5: 2.2.1
+ memory-cache: 0.2.0
+ traverse: 0.6.7
+ valid-url: 1.0.9
+ dev: false
+ optional: true
+
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- /json-schema-traverse/1.0.0:
+ /json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- /json-schema-typed/8.0.1:
+ /json-schema-typed@8.0.1:
resolution: {integrity: sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==}
dev: false
- /json-schema/0.4.0:
+ /json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
dev: false
- /json-stable-stringify-without-jsonify/1.0.1:
+ /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- /json-stringify-deterministic/1.0.8:
+ /json-stringify-deterministic@1.0.8:
resolution: {integrity: sha512-rkJID3qeigo3VCrEcxX1333fTBBxW89YrdYcZexMnL/WdB8u0zctyG63e/DpahRJyrWCDhh7IQhiR7u2XEDQ4Q==}
engines: {node: '>= 4'}
dev: false
- /json-stringify-safe/5.0.1:
+ /json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
dev: false
- /json5/1.0.2:
+ /json5@0.5.1:
+ resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
dependencies:
minimist: 1.2.8
dev: true
- /json5/2.2.3:
+ /json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- /jsonc-parser/3.2.0:
+ /jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
dev: true
- /jsonfile/4.0.0:
+ /jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
graceful-fs: 4.2.11
dev: false
- /jsonfile/6.1.0:
+ /jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
universalify: 2.0.0
optionalDependencies:
graceful-fs: 4.2.11
- /jsonld/5.2.0:
+ /jsonld-checker@0.1.8:
+ resolution: {integrity: sha512-jclmnPRrm5SEpaIV6IiSTJxplRAqIWHduQLsUfrYpZM41Ng48m1RN2/aUyHze/ynfO0D2UhlJBt8SdObsH5GBw==}
+ engines: {node: '>=10'}
+ dependencies:
+ jsonld: 5.2.0
+ node-fetch: 2.6.9
+ transitivePeerDependencies:
+ - domexception
+ - encoding
+ - web-streams-polyfill
+ dev: false
+
+ /jsonld@5.2.0:
resolution: {integrity: sha512-JymgT6Xzk5CHEmHuEyvoTNviEPxv6ihLWSPu1gFdtjSAyM6cFqNrv02yS/SIur3BBIkCf0HjizRc24d8/FfQKw==}
engines: {node: '>=12'}
dependencies:
@@ -14991,12 +17007,12 @@ packages:
- web-streams-polyfill
dev: false
- /jsonparse/1.3.1:
+ /jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
dev: true
- /jsonpath/1.1.1:
+ /jsonpath@1.1.1:
resolution: {integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==}
dependencies:
esprima: 1.2.2
@@ -15004,7 +17020,7 @@ packages:
underscore: 1.12.1
dev: false
- /jsontokens/4.0.1:
+ /jsontokens@4.0.1:
resolution: {integrity: sha512-+MO415LEN6M+3FGsRz4wU20g7N2JA+2j9d9+pGaNJHviG4L8N0qzavGyENw6fJqsq9CcrHOIL6iWX5yeTZ86+Q==}
dependencies:
'@noble/hashes': 1.3.0
@@ -15012,7 +17028,7 @@ packages:
base64-js: 1.5.1
dev: false
- /jsprim/1.4.2:
+ /jsprim@1.4.2:
resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
engines: {node: '>=0.6.0'}
dependencies:
@@ -15022,7 +17038,7 @@ packages:
verror: 1.10.0
dev: false
- /jsx-ast-utils/3.3.3:
+ /jsx-ast-utils@3.3.3:
resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
engines: {node: '>=4.0'}
dependencies:
@@ -15030,7 +17046,7 @@ packages:
object.assign: 4.1.4
dev: true
- /keccak/3.0.3:
+ /keccak@3.0.3:
resolution: {integrity: sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==}
engines: {node: '>=10.0.0'}
requiresBuild: true
@@ -15040,7 +17056,7 @@ packages:
readable-stream: 3.6.2
dev: false
- /key-did-provider-ed25519/2.0.1:
+ /key-did-provider-ed25519@2.0.1:
resolution: {integrity: sha512-FaB2g7zUAeN/bLaFl2YSNQx9NsxgDd/3TR1YGvoXLhENsvZBdyA2V7hX8/MZhZ5jm82wL5lRw3O4UXuz/pJANQ==}
engines: {node: '>=14.14'}
dependencies:
@@ -15051,7 +17067,7 @@ packages:
uint8arrays: 3.1.1
dev: false
- /key-did-resolver/2.3.0:
+ /key-did-resolver@2.3.0:
resolution: {integrity: sha512-q3ChQILPe+u8qkpWP196fEoxsygEyjM3K25qrGaMSolVaUdfgj7qwMz2DE/GRIlfNK2HgKW6KXA8RZMy8aL4MA==}
dependencies:
'@stablelib/ed25519': 1.0.3
@@ -15062,34 +17078,65 @@ packages:
varint: 6.0.0
dev: false
- /keyv/3.1.0:
+ /key-encoder@2.0.3:
+ resolution: {integrity: sha512-fgBtpAGIr/Fy5/+ZLQZIPPhsZEcbSlYu/Wu96tNDFNSjSACw5lEIOFeaVdQ/iwrb8oxjlWi6wmWdH76hV6GZjg==}
+ dependencies:
+ '@types/elliptic': 6.4.14
+ asn1.js: 5.4.1
+ bn.js: 4.12.0
+ elliptic: 6.5.4
+ dev: false
+
+ /keyv@3.1.0:
resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==}
dependencies:
json-buffer: 3.0.0
- /keyv/4.5.2:
+ /keyv@4.5.2:
resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==}
dependencies:
json-buffer: 3.0.1
dev: false
- /kind-of/6.0.3:
+ /kind-of@3.2.2:
+ resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: false
+ optional: true
+
+ /kind-of@4.0.0:
+ resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: false
+ optional: true
+
+ /kind-of@5.1.0:
+ resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- /klona/2.0.6:
+ /klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- /known-css-properties/0.27.0:
+ /known-css-properties@0.27.0:
resolution: {integrity: sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==}
dev: true
- /ky-universal/0.8.2_ky@0.25.1:
+ /ky-universal@0.8.2(ky@0.25.1):
resolution: {integrity: sha512-xe0JaOH9QeYxdyGLnzUOVGK4Z6FGvDVzcXFTdrYA1f33MZdEa45sUDaMBy98xQMcsd2XIBrTXRrRYnegcSdgVQ==}
engines: {node: '>=10.17'}
peerDependencies:
@@ -15106,45 +17153,45 @@ packages:
- domexception
dev: false
- /ky/0.25.1:
+ /ky@0.25.1:
resolution: {integrity: sha512-PjpCEWlIU7VpiMVrTwssahkYXX1by6NCT0fhTUX34F3DTinARlgMpriuroolugFPcMgpPWrOW4mTb984Qm1RXA==}
engines: {node: '>=10'}
dev: false
- /labeled-stream-splicer/2.0.2:
+ /labeled-stream-splicer@2.0.2:
resolution: {integrity: sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw==}
dependencies:
inherits: 2.0.4
stream-splicer: 2.0.1
dev: true
- /language-subtag-registry/0.3.22:
+ /language-subtag-registry@0.3.22:
resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
dev: true
- /language-tags/1.0.5:
+ /language-tags@1.0.5:
resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
dependencies:
language-subtag-registry: 0.3.22
dev: true
- /latest-version/5.1.0:
+ /latest-version@5.1.0:
resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==}
engines: {node: '>=8'}
dependencies:
package-json: 6.5.0
- /launch-editor/2.6.0:
+ /launch-editor@2.6.0:
resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==}
dependencies:
picocolors: 1.0.0
shell-quote: 1.8.0
- /leven/3.1.0:
+ /leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
- /levn/0.3.0:
+ /levn@0.3.0:
resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -15152,30 +17199,30 @@ packages:
type-check: 0.3.2
dev: false
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- /libphonenumber-js/1.10.24:
+ /libphonenumber-js@1.10.24:
resolution: {integrity: sha512-3Dk8f5AmrcWqg+oHhmm9hwSTqpWHBdSqsHmjCJGroULFubi0+x7JEIGmRZCuL3TI8Tx39xaKqfnhsDQ4ALa/Nw==}
dev: false
- /lilconfig/2.1.0:
+ /lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- /lines-and-columns/1.2.4:
+ /lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- /lines-and-columns/2.0.3:
+ /lines-and-columns@2.0.3:
resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /lint-staged/13.2.0:
+ /lint-staged@13.2.0:
resolution: {integrity: sha512-GbyK5iWinax5Dfw5obm2g2ccUiZXNGtAS4mCbJ0Lv4rq6iEtfBSjOYdcbOtAIFtM114t0vdpViDDetjVTSd8Vw==}
engines: {node: ^14.13.1 || >=16.0.0}
hasBin: true
@@ -15198,7 +17245,7 @@ packages:
- supports-color
dev: true
- /listr2/5.0.8:
+ /listr2@5.0.8:
resolution: {integrity: sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==}
engines: {node: ^14.13.1 || >=16.0.0}
peerDependencies:
@@ -15217,16 +17264,16 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /load-tsconfig/0.2.5:
+ /load-tsconfig@0.2.5:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /loader-runner/4.3.0:
+ /loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- /loader-utils/2.0.4:
+ /loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
dependencies:
@@ -15234,111 +17281,132 @@ packages:
emojis-list: 3.0.0
json5: 2.2.3
- /loader-utils/3.2.1:
+ /loader-utils@3.2.1:
resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
engines: {node: '>= 12.13.0'}
- /locate-path/3.0.0:
+ /locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
dependencies:
p-locate: 3.0.0
path-exists: 3.0.0
- /locate-path/5.0.0:
+ /locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
dependencies:
p-locate: 4.1.0
- /locate-path/6.0.0:
+ /locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
dependencies:
p-locate: 5.0.0
- /lodash.camelcase/4.3.0:
+ /lodash.camelcase@4.3.0:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
dev: true
- /lodash.clone/4.5.0:
+ /lodash.clone@4.5.0:
resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==}
- /lodash.clonedeep/4.5.0:
+ /lodash.clonedeep@4.5.0:
resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
dev: false
- /lodash.curry/4.1.1:
+ /lodash.curry@4.1.1:
resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
dev: false
- /lodash.debounce/4.0.8:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- /lodash.flow/3.5.0:
+ /lodash.flow@3.5.0:
resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==}
dev: false
- /lodash.get/4.4.2:
+ /lodash.get@4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
dev: false
- /lodash.isequal/4.5.0:
+ /lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
- /lodash.isfunction/3.0.9:
+ /lodash.isfunction@3.0.9:
resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
dev: true
- /lodash.isplainobject/4.0.6:
+ /lodash.isplainobject@4.0.6:
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
- dev: true
- /lodash.kebabcase/4.1.1:
+ /lodash.kebabcase@4.1.1:
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
dev: true
- /lodash.memoize/3.0.4:
+ /lodash.memoize@3.0.4:
resolution: {integrity: sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A==}
dev: true
- /lodash.memoize/4.1.2:
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- /lodash.mergewith/4.6.2:
+ /lodash.mergewith@4.6.2:
resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
dev: true
- /lodash.snakecase/4.1.1:
+ /lodash.snakecase@4.1.1:
resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
dev: true
- /lodash.sortby/4.7.0:
+ /lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
dev: true
- /lodash.startcase/4.4.0:
+ /lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
dev: true
- /lodash.truncate/4.4.2:
+ /lodash.throttle@4.1.1:
+ resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
+ dev: false
+ optional: true
+
+ /lodash.truncate@4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
dev: true
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- /lodash.upperfirst/4.3.1:
+ /lodash.upperfirst@4.3.1:
resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==}
dev: true
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-update/4.0.0:
+ /log-symbols@2.2.0:
+ resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
+ engines: {node: '>=4'}
+ dependencies:
+ chalk: 2.4.2
+ dev: false
+ optional: true
+
+ /log-symbols@4.1.0:
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ is-unicode-supported: 0.1.0
+ dev: false
+ optional: true
+
+ /log-update@4.0.0:
resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
engines: {node: '>=10'}
dependencies:
@@ -15348,7 +17416,7 @@ packages:
wrap-ansi: 6.2.0
dev: true
- /logfmt/1.3.2:
+ /logfmt@1.3.2:
resolution: {integrity: sha512-U0lelcaGWEfEITZQXs8y5HrJp2xa0BJ+KDfkkLJRmuKbQIEVGNv145FbaNekY4ZYHJSBBx8NLJitaPtRqLEkxQ==}
hasBin: true
dependencies:
@@ -15356,108 +17424,180 @@ packages:
through: 2.3.8
dev: false
- /loose-envify/1.4.0:
+ /logkitty@0.7.1:
+ resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
+ hasBin: true
+ dependencies:
+ ansi-fragments: 0.2.1
+ dayjs: 1.11.7
+ yargs: 15.4.1
+ dev: false
+ optional: true
+
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
- /lower-case/2.0.2:
+ /lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.5.0
- /lowercase-keys/1.0.1:
+ /lowercase-keys@1.0.1:
resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
engines: {node: '>=0.10.0'}
- /lowercase-keys/2.0.0:
+ /lowercase-keys@2.0.0:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
- /lowercase-keys/3.0.0:
+ /lowercase-keys@3.0.0:
resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: false
- /lru-cache/5.1.1:
+ /lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
yallist: 3.1.1
- /lru-cache/6.0.0:
+ /lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
- /lru-cache/7.18.3:
+ /lru-cache@7.18.3:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
dev: true
- /luxon/3.3.0:
+ /luxon@3.3.0:
resolution: {integrity: sha512-An0UCfG/rSiqtAIiBPO0Y9/zAnHUZxAMiCpTd5h2smgsj7GGmcenvrvww2cqNA8/4A5ZrD1gJpHN2mIHZQF+Mg==}
engines: {node: '>=12'}
- /make-dir/3.1.0:
+ /make-dir@2.1.0:
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.1
+ dev: false
+ optional: true
+
+ /make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
- /make-error/1.3.6:
+ /make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- /makeerror/1.0.12:
+ /makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
tmpl: 1.0.5
- /map-obj/1.0.1:
+ /map-age-cleaner@0.1.3:
+ resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-defer: 1.0.0
+ dev: false
+
+ /map-cache@0.2.2:
+ resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /map-obj@1.0.1:
resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
engines: {node: '>=0.10.0'}
dev: true
- /map-obj/4.3.0:
+ /map-obj@4.3.0:
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
engines: {node: '>=8'}
dev: true
- /map-stream/0.0.7:
+ /map-stream@0.0.7:
resolution: {integrity: sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==}
dev: true
- /mapmoize/1.2.1:
+ /map-visit@1.0.0:
+ resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ object-visit: 1.0.1
+ dev: false
+ optional: true
+
+ /mapmoize@1.2.1:
resolution: {integrity: sha512-LK8ArSM1wbfRPTnl+LpdxW1pwkfY6GxtM9p+STr6aDtM7ImR8jLuf4ekei43/AN0f7XDSrohzwwK57eGHSDAuA==}
engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0}
dev: false
- /markdown-escapes/1.0.4:
+ /markdown-escapes@1.0.4:
resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
- /mathml-tag-names/2.1.3:
+ /mathml-tag-names@2.1.3:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
dev: true
- /md5.js/1.3.5:
+ /md5-file@3.2.3:
+ resolution: {integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==}
+ engines: {node: '>=0.10'}
+ hasBin: true
+ dependencies:
+ buffer-alloc: 1.2.0
+ dev: false
+ optional: true
+
+ /md5.js@1.3.5:
resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
dependencies:
hash-base: 3.1.0
inherits: 2.0.4
safe-buffer: 5.2.1
- /mdast-squeeze-paragraphs/4.0.0:
+ /md5@2.2.1:
+ resolution: {integrity: sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==}
+ dependencies:
+ charenc: 0.0.2
+ crypt: 0.0.2
+ is-buffer: 1.1.6
+ dev: false
+ optional: true
+
+ /md5@2.3.0:
+ resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
+ dependencies:
+ charenc: 0.0.2
+ crypt: 0.0.2
+ is-buffer: 1.1.6
+ dev: false
+ optional: true
+
+ /md5hex@1.0.0:
+ resolution: {integrity: sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==}
+ dev: false
+ optional: true
+
+ /mdast-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==}
dependencies:
unist-util-remove: 2.1.0
- /mdast-util-definitions/4.0.0:
+ /mdast-util-definitions@4.0.0:
resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==}
dependencies:
unist-util-visit: 2.0.3
- /mdast-util-to-hast/10.0.1:
+ /mdast-util-to-hast@10.0.1:
resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==}
dependencies:
'@types/mdast': 3.0.11
@@ -15469,34 +17609,52 @@ packages:
unist-util-position: 3.1.0
unist-util-visit: 2.0.3
- /mdast-util-to-string/2.0.0:
+ /mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
- /mdn-data/2.0.14:
+ /mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
- /mdn-data/2.0.28:
+ /mdn-data@2.0.28:
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
dev: true
- /mdn-data/2.0.30:
+ /mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
dev: true
- /mdurl/1.0.1:
+ /mdurl@1.0.1:
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
- /media-typer/0.3.0:
+ /media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- /memfs/3.4.13:
+ /mem@8.1.1:
+ resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==}
+ engines: {node: '>=10'}
+ dependencies:
+ map-age-cleaner: 0.1.3
+ mimic-fn: 3.1.0
+ dev: false
+
+ /memfs@3.4.13:
resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==}
engines: {node: '>= 4.0.0'}
dependencies:
fs-monkey: 1.0.3
- /meow/8.1.2:
+ /memoize-one@5.2.1:
+ resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
+ dev: false
+ optional: true
+
+ /memory-cache@0.2.0:
+ resolution: {integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==}
+ dev: false
+ optional: true
+
+ /meow@8.1.2:
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
engines: {node: '>=10'}
dependencies:
@@ -15513,147 +17671,505 @@ packages:
yargs-parser: 20.2.9
dev: true
- /meow/9.0.0:
- resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==}
- engines: {node: '>=10'}
+ /meow@9.0.0:
+ resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@types/minimist': 1.2.2
+ camelcase-keys: 6.2.2
+ decamelize: 1.2.0
+ decamelize-keys: 1.1.1
+ hard-rejection: 2.1.0
+ minimist-options: 4.1.0
+ normalize-package-data: 3.0.3
+ read-pkg-up: 7.0.1
+ redent: 3.0.0
+ trim-newlines: 3.0.1
+ type-fest: 0.18.1
+ yargs-parser: 20.2.9
+ dev: true
+
+ /merge-descriptors@1.0.1:
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+
+ /merge-stream@2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+
+ /merge2@1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ /methods@1.1.2:
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
+ engines: {node: '>= 0.6'}
+
+ /metro-babel-transformer@0.73.9:
+ resolution: {integrity: sha512-DlYwg9wwYIZTHtic7dyD4BP0SDftoltZ3clma76nHu43blMWsCnrImHeHsAVne3XsQ+RJaSRxhN5nkG2VyVHwA==}
+ dependencies:
+ '@babel/core': 7.21.3
+ hermes-parser: 0.8.0
+ metro-source-map: 0.73.9
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /metro-cache-key@0.73.9:
+ resolution: {integrity: sha512-uJg+6Al7UoGIuGfoxqPBy6y1Ewq7Y8/YapGYIDh6sohInwt/kYKnPZgLDYHIPvY2deORnQ/2CYo4tOeBTnhCXQ==}
+ dev: false
+ optional: true
+
+ /metro-cache@0.73.9:
+ resolution: {integrity: sha512-upiRxY8rrQkUWj7ieACD6tna7xXuXdu2ZqrheksT79ePI0aN/t0memf6WcyUtJUMHZetke3j+ppELNvlmp3tOw==}
+ dependencies:
+ metro-core: 0.73.9
+ rimraf: 3.0.2
+ dev: false
+ optional: true
+
+ /metro-config@0.73.9:
+ resolution: {integrity: sha512-NiWl1nkYtjqecDmw77tbRbXnzIAwdO6DXGZTuKSkH+H/c1NKq1eizO8Fe+NQyFtwR9YLqn8Q0WN1nmkwM1j8CA==}
+ dependencies:
+ cosmiconfig: 5.2.1
+ jest-validate: 26.6.2
+ metro: 0.73.9
+ metro-cache: 0.73.9
+ metro-core: 0.73.9
+ metro-runtime: 0.73.9
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
+
+ /metro-core@0.73.9:
+ resolution: {integrity: sha512-1NTs0IErlKcFTfYyRT3ljdgrISWpl1nys+gaHkXapzTSpvtX9F1NQNn5cgAuE+XIuTJhbsCdfIJiM2JXbrJQaQ==}
+ dependencies:
+ lodash.throttle: 4.1.1
+ metro-resolver: 0.73.9
+ dev: false
+ optional: true
+
+ /metro-file-map@0.73.9:
+ resolution: {integrity: sha512-R/Wg3HYeQhYY3ehWtfedw8V0ne4lpufG7a21L3GWer8tafnC9pmjoCKEbJz9XZkVj9i1FtxE7UTbrtZNeIILxQ==}
+ dependencies:
+ abort-controller: 3.0.0
+ anymatch: 3.1.3
+ debug: 2.6.9
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ invariant: 2.2.4
+ jest-regex-util: 27.5.1
+ jest-serializer: 27.5.1
+ jest-util: 27.5.1
+ jest-worker: 27.5.1
+ micromatch: 4.0.5
+ nullthrows: 1.1.1
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /metro-hermes-compiler@0.73.9:
+ resolution: {integrity: sha512-5B3vXIwQkZMSh3DQQY23XpTCpX9kPLqZbA3rDuAcbGW0tzC3f8dCenkyBb0GcCzyTDncJeot/A7oVCVK6zapwg==}
+ dev: false
+ optional: true
+
+ /metro-inspector-proxy@0.73.9:
+ resolution: {integrity: sha512-B3WrWZnlYhtTrv0IaX3aUAhi2qVILPAZQzb5paO1e+xrz4YZHk9c7dXv7qe7B/IQ132e3w46y3AL7rFo90qVjA==}
+ hasBin: true
+ dependencies:
+ connect: 3.7.0
+ debug: 2.6.9
+ ws: 7.5.9
+ yargs: 17.7.1
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
+
+ /metro-minify-terser@0.73.9:
+ resolution: {integrity: sha512-MTGPu2qV5qtzPJ2SqH6s58awHDtZ4jd7lmmLR+7TXDwtZDjIBA0YVfI0Zak2Haby2SqoNKrhhUns/b4dPAQAVg==}
+ dependencies:
+ terser: 5.16.8
+ dev: false
+ optional: true
+
+ /metro-minify-uglify@0.73.9:
+ resolution: {integrity: sha512-gzxD/7WjYcnCNGiFJaA26z34rjOp+c/Ft++194Wg91lYep3TeWQ0CnH8t2HRS7AYDHU81SGWgvD3U7WV0g4LGA==}
+ dependencies:
+ uglify-es: 3.3.9
+ dev: false
+ optional: true
+
+ /metro-react-native-babel-preset@0.73.9(@babel/core@7.21.3):
+ resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==}
+ peerDependencies:
+ '@babel/core': '*'
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/template': 7.20.7
+ react-refresh: 0.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /metro-react-native-babel-transformer@0.73.9(@babel/core@7.21.3):
+ resolution: {integrity: sha512-DSdrEHuQ22ixY7DyipyKkIcqhOJrt5s6h6X7BYJCP9AMUfXOwLe2biY3BcgJz5GOXv8/Akry4vTCvQscVS1otQ==}
+ peerDependencies:
+ '@babel/core': '*'
+ dependencies:
+ '@babel/core': 7.21.3
+ babel-preset-fbjs: 3.4.0(@babel/core@7.21.3)
+ hermes-parser: 0.8.0
+ metro-babel-transformer: 0.73.9
+ metro-react-native-babel-preset: 0.73.9(@babel/core@7.21.3)
+ metro-source-map: 0.73.9
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /metro-resolver@0.73.9:
+ resolution: {integrity: sha512-Ej3wAPOeNRPDnJmkK0zk7vJ33iU07n+oPhpcf5L0NFkWneMmSM2bflMPibI86UjzZGmRfn0AhGhs8yGeBwQ/Xg==}
+ dependencies:
+ absolute-path: 0.0.0
+ dev: false
+ optional: true
+
+ /metro-runtime@0.73.9:
+ resolution: {integrity: sha512-d5Hs83FpKB9r8q8Vb95+fa6ESpwysmPr4lL1I2rM2qXAFiO7OAPT9Bc23WmXgidkBtD0uUFdB2lG+H1ATz8rZg==}
+ dependencies:
+ '@babel/runtime': 7.21.0
+ react-refresh: 0.4.3
+ dev: false
+ optional: true
+
+ /metro-source-map@0.73.9:
+ resolution: {integrity: sha512-l4VZKzdqafipriETYR6lsrwtavCF1+CMhCOY9XbyWeTrpGSNgJQgdeJpttzEZTHQQTLR0csQo0nD1ef3zEP6IQ==}
+ dependencies:
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
+ invariant: 2.2.4
+ metro-symbolicate: 0.73.9
+ nullthrows: 1.1.1
+ ob1: 0.73.9
+ source-map: 0.5.7
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /metro-symbolicate@0.73.9:
+ resolution: {integrity: sha512-4TUOwxRHHqbEHxRqRJ3wZY5TA8xq7AHMtXrXcjegMH9FscgYztsrIG9aNBUBS+VLB6g1qc6BYbfIgoAnLjCDyw==}
+ engines: {node: '>=8.3'}
+ hasBin: true
dependencies:
- '@types/minimist': 1.2.2
- camelcase-keys: 6.2.2
- decamelize: 1.2.0
- decamelize-keys: 1.1.1
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 3.0.3
- read-pkg-up: 7.0.1
- redent: 3.0.0
- trim-newlines: 3.0.1
- type-fest: 0.18.1
- yargs-parser: 20.2.9
- dev: true
+ invariant: 2.2.4
+ metro-source-map: 0.73.9
+ nullthrows: 1.1.1
+ source-map: 0.5.7
+ through2: 2.0.5
+ vlq: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
- /merge-descriptors/1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ /metro-transform-plugins@0.73.9:
+ resolution: {integrity: sha512-r9NeiqMngmooX2VOKLJVQrMuV7PAydbqst5bFhdVBPcFpZkxxqyzjzo+kzrszGy2UpSQBZr2P1L6OMjLHwQwfQ==}
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
- /merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+ /metro-transform-worker@0.73.9:
+ resolution: {integrity: sha512-Rq4b489sIaTUENA+WCvtu9yvlT/C6zFMWhU4sq+97W29Zj0mPBjdk+qGT5n1ZBgtBIJzZWt1KxeYuc17f4aYtQ==}
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
+ babel-preset-fbjs: 3.4.0(@babel/core@7.21.3)
+ metro: 0.73.9
+ metro-babel-transformer: 0.73.9
+ metro-cache: 0.73.9
+ metro-cache-key: 0.73.9
+ metro-hermes-compiler: 0.73.9
+ metro-source-map: 0.73.9
+ metro-transform-plugins: 0.73.9
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
- /merge2/1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
- engines: {node: '>= 8'}
+ /metro@0.73.9:
+ resolution: {integrity: sha512-BlYbPmTF60hpetyNdKhdvi57dSqutb+/oK0u3ni4emIh78PiI0axGo7RfdsZ/mn3saASXc94tDbpC5yn7+NpEg==}
+ hasBin: true
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
+ absolute-path: 0.0.0
+ accepts: 1.3.8
+ async: 3.2.4
+ chalk: 4.1.2
+ ci-info: 2.0.0
+ connect: 3.7.0
+ debug: 2.6.9
+ denodeify: 1.2.1
+ error-stack-parser: 2.1.4
+ graceful-fs: 4.2.11
+ hermes-parser: 0.8.0
+ image-size: 0.6.3
+ invariant: 2.2.4
+ jest-worker: 27.5.1
+ lodash.throttle: 4.1.1
+ metro-babel-transformer: 0.73.9
+ metro-cache: 0.73.9
+ metro-cache-key: 0.73.9
+ metro-config: 0.73.9
+ metro-core: 0.73.9
+ metro-file-map: 0.73.9
+ metro-hermes-compiler: 0.73.9
+ metro-inspector-proxy: 0.73.9
+ metro-minify-terser: 0.73.9
+ metro-minify-uglify: 0.73.9
+ metro-react-native-babel-preset: 0.73.9(@babel/core@7.21.3)
+ metro-resolver: 0.73.9
+ metro-runtime: 0.73.9
+ metro-source-map: 0.73.9
+ metro-symbolicate: 0.73.9
+ metro-transform-plugins: 0.73.9
+ metro-transform-worker: 0.73.9
+ mime-types: 2.1.35
+ node-fetch: 2.6.9
+ nullthrows: 1.1.1
+ rimraf: 3.0.2
+ serialize-error: 2.1.0
+ source-map: 0.5.7
+ strip-ansi: 6.0.1
+ temp: 0.8.3
+ throat: 5.0.0
+ ws: 7.5.9
+ yargs: 17.7.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
- /methods/1.1.2:
- resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
- engines: {node: '>= 0.6'}
+ /micromatch@3.1.10:
+ resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- /miller-rabin/4.0.1:
+ /miller-rabin@4.0.1:
resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
hasBin: true
dependencies:
bn.js: 4.12.0
brorand: 1.1.0
- /mime-db/1.33.0:
+ /mime-db@1.33.0:
resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==}
engines: {node: '>= 0.6'}
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- /mime-types/2.1.18:
+ /mime-types@2.1.18:
resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.33.0
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- /mime/1.6.0:
+ /mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- /mimic-fn/2.1.0:
+ /mime@2.6.0:
+ resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
+ engines: {node: '>=4.0.0'}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /mimic-fn@1.2.0:
+ resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- /mimic-fn/4.0.0:
+ /mimic-fn@3.1.0:
+ resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==}
+ engines: {node: '>=8'}
+ dev: false
+
+ /mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
dev: true
- /mimic-response/1.0.1:
+ /mimic-response@1.0.1:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
- /mimic-response/3.1.0:
+ /mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
dev: false
- /min-document/2.19.0:
+ /min-document@2.19.0:
resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==}
dependencies:
dom-walk: 0.1.2
dev: false
- /min-indent/1.0.1:
+ /min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
dev: true
- /mini-css-extract-plugin/2.7.5_webpack@5.76.3:
+ /mini-css-extract-plugin@2.7.5(webpack@5.76.3):
resolution: {integrity: sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
schema-utils: 4.0.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /minimalistic-assert/1.0.1:
+ /minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- /minimalistic-crypto-utils/1.0.1:
+ /minimalistic-crypto-utils@1.0.1:
resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
- /minimatch/3.0.5:
+ /minimatch@3.0.5:
resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
dependencies:
brace-expansion: 1.1.11
dev: true
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
- /minimatch/5.1.6:
+ /minimatch@5.1.6:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
dev: true
- /minimatch/7.4.3:
+ /minimatch@7.4.3:
resolution: {integrity: sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
dev: true
- /minimist-options/4.1.0:
+ /minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
dependencies:
@@ -15662,47 +18178,86 @@ packages:
kind-of: 6.0.3
dev: true
- /minimist/1.2.8:
+ /minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- /minipass/2.9.0:
+ /minipass-collect@1.0.2:
+ resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+ optional: true
+
+ /minipass-flush@1.0.5:
+ resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+ optional: true
+
+ /minipass-pipeline@1.2.4:
+ resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
+ engines: {node: '>=8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+ optional: true
+
+ /minipass@2.9.0:
resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==}
dependencies:
safe-buffer: 5.2.1
yallist: 3.1.1
dev: false
- /minipass/3.3.6:
+ /minipass@3.1.6:
+ resolution: {integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ yallist: 4.0.0
+ dev: false
+ optional: true
+
+ /minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
- dev: true
- /minipass/4.2.5:
+ /minipass@4.2.5:
resolution: {integrity: sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==}
engines: {node: '>=8'}
dev: true
- /minizlib/1.3.3:
+ /minizlib@1.3.3:
resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==}
dependencies:
minipass: 2.9.0
dev: false
- /minizlib/2.1.2:
+ /minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
yallist: 4.0.0
- dev: true
- /mkdirp-classic/0.5.3:
+ /mixin-deep@1.3.2:
+ resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: false
+ optional: true
+
+ /mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
dev: true
- /mkdirp-promise/5.0.1:
+ /mkdirp-promise@5.0.1:
resolution: {integrity: sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==}
engines: {node: '>=4'}
deprecated: This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that.
@@ -15710,30 +18265,29 @@ packages:
mkdirp: 2.1.6
dev: false
- /mkdirp/0.5.6:
+ /mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
minimist: 1.2.8
dev: false
- /mkdirp/1.0.4:
+ /mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- dev: true
- /mkdirp/2.1.6:
+ /mkdirp@2.1.6:
resolution: {integrity: sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A==}
engines: {node: '>=10'}
hasBin: true
dev: false
- /mock-fs/4.14.0:
+ /mock-fs@4.14.0:
resolution: {integrity: sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==}
dev: false
- /module-deps/6.2.3:
+ /module-deps@6.2.3:
resolution: {integrity: sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA==}
engines: {node: '>= 0.8.0'}
hasBin: true
@@ -15755,24 +18309,28 @@ packages:
xtend: 4.0.2
dev: true
- /mrmime/1.0.1:
+ /moment@2.29.4:
+ resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==}
+ dev: false
+
+ /mrmime@1.0.1:
resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
engines: {node: '>=10'}
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- /msrcrypto/1.5.8:
+ /msrcrypto@1.5.8:
resolution: {integrity: sha512-ujZ0TRuozHKKm6eGbKHfXef7f+esIhEckmThVnz7RNyiOJd7a6MXj2JGBoL9cnPDW+JMG16MoTUh5X+XXjI66Q==}
dev: false
- /multibase/0.6.1:
+ /multibase@0.6.1:
resolution: {integrity: sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==}
deprecated: This module has been superseded by the multiformats module
dependencies:
@@ -15780,7 +18338,7 @@ packages:
buffer: 5.7.1
dev: false
- /multibase/0.7.0:
+ /multibase@0.7.0:
resolution: {integrity: sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==}
deprecated: This module has been superseded by the multiformats module
dependencies:
@@ -15788,7 +18346,7 @@ packages:
buffer: 5.7.1
dev: false
- /multibase/4.0.6:
+ /multibase@4.0.6:
resolution: {integrity: sha512-x23pDe5+svdLz/k5JPGCVdfn7Q5mZVMBETiC+ORfO+sor9Sgs0smJzAjfTbM5tckeCqnaUuMYoz+k3RXMmJClQ==}
engines: {node: '>=12.0.0', npm: '>=6.0.0'}
deprecated: This module has been superseded by the multiformats module
@@ -15796,21 +18354,21 @@ packages:
'@multiformats/base-x': 4.0.1
dev: false
- /multicast-dns/7.2.5:
+ /multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
dependencies:
dns-packet: 5.5.0
thunky: 1.1.0
- /multicodec/0.5.7:
+ /multicodec@0.5.7:
resolution: {integrity: sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==}
deprecated: This module has been superseded by the multiformats module
dependencies:
varint: 5.0.2
dev: false
- /multicodec/1.0.4:
+ /multicodec@1.0.4:
resolution: {integrity: sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==}
deprecated: This module has been superseded by the multiformats module
dependencies:
@@ -15818,16 +18376,16 @@ packages:
varint: 5.0.2
dev: false
- /multiformats/11.0.2:
+ /multiformats@11.0.2:
resolution: {integrity: sha512-b5mYMkOkARIuVZCpvijFj9a6m5wMVLC7cf/jIPd5D/ARDOfLC5+IFkbgDXQgcU2goIsTD/O9NY4DI/Mt4OGvlg==}
engines: {node: '>=16.0.0', npm: '>=7.0.0'}
dev: false
- /multiformats/9.9.0:
+ /multiformats@9.9.0:
resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==}
dev: false
- /multihashes/0.4.21:
+ /multihashes@0.4.21:
resolution: {integrity: sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==}
dependencies:
buffer: 5.7.1
@@ -15835,7 +18393,7 @@ packages:
varint: 5.0.2
dev: false
- /multihashes/4.0.3:
+ /multihashes@4.0.3:
resolution: {integrity: sha512-0AhMH7Iu95XjDLxIeuCOOE4t9+vQZsACyKZ9Fxw2pcsRmlX4iCn1mby0hS0bb+nQOVpdQYWPpnyusw4da5RPhA==}
engines: {node: '>=12.0.0', npm: '>=6.0.0'}
dependencies:
@@ -15844,36 +18402,76 @@ packages:
varint: 5.0.2
dev: false
- /mustache/4.2.0:
+ /mustache@4.2.0:
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
hasBin: true
dev: false
- /mz/2.7.0:
+ /mv@2.1.1:
+ resolution: {integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==}
+ engines: {node: '>=0.8.0'}
+ requiresBuild: true
+ dependencies:
+ mkdirp: 0.5.6
+ ncp: 2.0.0
+ rimraf: 2.4.5
+ dev: false
+ optional: true
+
+ /mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
dependencies:
any-promise: 1.3.0
object-assign: 4.1.1
thenify-all: 1.6.0
- dev: true
- /nano-json-stream-parser/0.1.2:
+ /nan@2.14.0:
+ resolution: {integrity: sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==}
+ dev: false
+
+ /nano-json-stream-parser@0.1.2:
resolution: {integrity: sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==}
dev: false
- /nanoid/3.3.6:
+ /nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /natural-compare-lite/1.4.0:
+ /nanomatch@1.2.13:
+ resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
dev: true
- /natural-compare/1.4.0:
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- /near-api-js/0.44.2:
+ /ncp@2.0.0:
+ resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /near-api-js@0.44.2:
resolution: {integrity: sha512-eMnc4V+geggapEUa3nU2p8HSHn/njtloI4P2mceHQWO8vDE1NGpnAw8FuTBrLmXSgIv9m6oocgFc9t3VNf5zwg==}
dependencies:
bn.js: 5.2.0
@@ -15891,14 +18489,19 @@ packages:
- encoding
dev: false
- /negotiator/0.6.3:
+ /negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- /neo-async/2.6.2:
+ /neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- /next-intl/2.12.0_next@13.2.4+react@18.2.0:
+ /nested-error-stacks@2.0.1:
+ resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==}
+ dev: false
+ optional: true
+
+ /next-intl@2.12.0(next@13.2.4)(react@18.2.0):
resolution: {integrity: sha512-UWKLA3BIsezFo/OJelGYmJL3BsztApo2mgvmwHMDbTsuBJx0x4SaIIPapnPHPzMhUbppZIbY70xNIULHwn++hg==}
engines: {node: '>=10'}
peerDependencies:
@@ -15906,28 +18509,28 @@ packages:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
accept-language-parser: 1.5.0
- next: 13.2.4_5y7qh6ykubtj2qr2evk3di7hpa
+ next: 13.2.4(@babel/core@7.21.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.60.0)
react: 18.2.0
- use-intl: 2.12.0_react@18.2.0
+ use-intl: 2.12.0(react@18.2.0)
dev: false
- /next-themes/0.2.1_ld2jel3hspngo3u5lti2kgl2sq:
+ /next-themes@0.2.1(next@13.2.4)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
peerDependencies:
next: '*'
react: '*'
react-dom: '*'
dependencies:
- next: 13.2.4_5y7qh6ykubtj2qr2evk3di7hpa
+ next: 13.2.4(@babel/core@7.21.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.60.0)
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /next-tick/1.1.0:
+ /next-tick@1.1.0:
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
dev: false
- /next/13.2.4_5y7qh6ykubtj2qr2evk3di7hpa:
+ /next@13.2.4(@babel/core@7.21.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.60.0):
resolution: {integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==}
engines: {node: '>=14.6.0'}
hasBin: true
@@ -15953,9 +18556,9 @@ packages:
caniuse-lite: 1.0.30001472
postcss: 8.4.14
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
sass: 1.60.0
- styled-jsx: 5.1.1_react@18.2.0
+ styled-jsx: 5.1.1(@babel/core@7.21.3)(react@18.2.0)
optionalDependencies:
'@next/swc-android-arm-eabi': 13.2.4
'@next/swc-android-arm64': 13.2.4
@@ -15975,37 +18578,60 @@ packages:
- babel-plugin-macros
dev: false
- /nist-weierstrauss/1.6.1:
+ /nice-try@1.0.5:
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
+ dev: false
+ optional: true
+
+ /nist-weierstrauss@1.6.1:
resolution: {integrity: sha512-FpjCOnPV/s3ZVIkeldCVSml2K4lruabPbBgoEitpCK1JL0KTVoWb56CFTU6rZn5i6VqAjdwcOp0FDwJACPmeFA==}
dependencies:
multiformats: 9.9.0
uint8arrays: 2.1.10
dev: false
- /no-case/3.0.4:
+ /no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
tslib: 2.5.0
- /node-abort-controller/3.1.1:
+ /nocache@3.0.4:
+ resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==}
+ engines: {node: '>=12.0.0'}
+ dev: false
+ optional: true
+
+ /node-abort-controller@3.1.1:
resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
dev: true
- /node-addon-api/2.0.2:
+ /node-addon-api@2.0.2:
resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==}
dev: false
- /node-addon-api/3.2.1:
+ /node-addon-api@3.2.1:
resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
dev: true
- /node-emoji/1.11.0:
+ /node-addon-api@5.1.0:
+ resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==}
+ dev: false
+
+ /node-dir@0.1.17:
+ resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
+ engines: {node: '>= 0.10.5'}
+ dependencies:
+ minimatch: 3.1.2
+ dev: false
+ optional: true
+
+ /node-emoji@1.11.0:
resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==}
dependencies:
lodash: 4.17.21
- /node-fetch/2.6.7:
+ /node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -16017,7 +18643,7 @@ packages:
whatwg-url: 5.0.0
dev: false
- /node-fetch/2.6.9:
+ /node-fetch@2.6.9:
resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -16029,7 +18655,7 @@ packages:
whatwg-url: 5.0.0
dev: false
- /node-fetch/3.0.0-beta.9:
+ /node-fetch@3.0.0-beta.9:
resolution: {integrity: sha512-RdbZCEynH2tH46+tj0ua9caUHVWrd/RHnRfvly2EVdqGmI3ndS1Vn/xjm5KuGejDt2RNDQsVRLPNd2QPwcewVg==}
engines: {node: ^10.17 || >=12.3}
dependencies:
@@ -16039,25 +18665,31 @@ packages:
- domexception
dev: false
- /node-forge/1.3.1:
+ /node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- /node-gyp-build/4.6.0:
+ /node-gyp-build@4.6.0:
resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==}
hasBin: true
- /node-int64/0.4.0:
+ /node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- /node-machine-id/1.1.12:
+ /node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
dev: true
- /node-releases/2.0.10:
+ /node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
- /normalize-package-data/2.5.0:
+ /node-stream-zip@1.15.0:
+ resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
+ engines: {node: '>=0.12.0'}
+ dev: false
+ optional: true
+
+ /normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
@@ -16066,7 +18698,7 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-package-data/3.0.3:
+ /normalize-package-data@3.0.3:
resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
engines: {node: '>=10'}
dependencies:
@@ -16076,45 +18708,68 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-path/3.0.0:
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /normalize-range/0.1.2:
+ /normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- /normalize-url/4.5.1:
+ /normalize-url@4.5.1:
resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
engines: {node: '>=8'}
- /normalize-url/6.1.0:
+ /normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
- /npm-run-path/4.0.1:
+ /npm-package-arg@7.0.0:
+ resolution: {integrity: sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==}
+ dependencies:
+ hosted-git-info: 3.0.8
+ osenv: 0.1.5
+ semver: 5.7.1
+ validate-npm-package-name: 3.0.0
+ dev: false
+ optional: true
+
+ /npm-run-path@2.0.2:
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
+ engines: {node: '>=4'}
+ dependencies:
+ path-key: 2.0.1
+ dev: false
+ optional: true
+
+ /npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
dependencies:
path-key: 3.1.1
- /npm-run-path/5.1.0:
+ /npm-run-path@5.1.0:
resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
dev: true
- /nprogress/0.2.0:
+ /nprogress@0.2.0:
resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
dev: false
- /nth-check/2.1.1:
+ /nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
- /number-to-bn/1.7.0:
+ /nullthrows@1.1.1:
+ resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
+ dev: false
+ optional: true
+
+ /number-to-bn@1.7.0:
resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==}
engines: {node: '>=6.5.0', npm: '>=3'}
dependencies:
@@ -16122,7 +18777,7 @@ packages:
strip-hex-prefix: 1.0.0
dev: false
- /nx/15.8.9:
+ /nx@15.8.9:
resolution: {integrity: sha512-wUrOx320IMDNQ6WIB4Sm5BbsPDpgp661pmlQZzacsulHq38D+LeSZM96Zaj0RZPVlGZU0l3X/cZP9ACzAQwdTw==}
hasBin: true
requiresBuild: true
@@ -16184,28 +18839,43 @@ packages:
- debug
dev: true
- /o3/1.0.3:
+ /o3@1.0.3:
resolution: {integrity: sha512-f+4n+vC6s4ysy7YO7O2gslWZBUu8Qj2i2OUJOvjRxQva7jVjYjB29jrr9NCjmxZQR0gzrOcv1RnqoYOeMs5VRQ==}
dependencies:
capability: 0.2.5
dev: false
- /oauth-sign/0.9.0:
+ /oauth-sign@0.9.0:
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
dev: false
- /object-assign/4.1.1:
+ /ob1@0.73.9:
+ resolution: {integrity: sha512-kHOzCOFXmAM26fy7V/YuXNKne2TyRiXbFAvPBIbuedJCZZWQZHLdPzMeXJI4Egt6IcfDttRzN3jQ90wOwq1iNw==}
+ dev: false
+ optional: true
+
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-hash/3.0.0:
+ /object-copy@0.1.0:
+ resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: false
+ optional: true
+
+ /object-hash@3.0.0:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- /object-inspect/1.12.3:
+ /object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
- /object-is/1.1.5:
+ /object-is@1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -16213,17 +18883,25 @@ packages:
define-properties: 1.2.0
dev: true
- /object-keys/1.1.1:
+ /object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- /object-sizeof/2.6.1:
+ /object-sizeof@2.6.1:
resolution: {integrity: sha512-a7VJ1Zx7ZuHceKwjgfsSqzV/X0PVGvpZz7ho3Dn4Cs0LLcR5e5WuV+gsbizmplD8s0nAXMJmckKB2rkSiPm/Gg==}
dependencies:
buffer: 6.0.3
dev: false
- /object.assign/4.1.4:
+ /object-visit@1.0.1:
+ resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+ optional: true
+
+ /object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -16232,7 +18910,7 @@ packages:
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries/1.1.6:
+ /object.entries@1.1.6:
resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
engines: {node: '>= 0.4'}
dependencies:
@@ -16241,7 +18919,7 @@ packages:
es-abstract: 1.21.2
dev: true
- /object.fromentries/2.0.6:
+ /object.fromentries@2.0.6:
resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -16250,14 +18928,22 @@ packages:
es-abstract: 1.21.2
dev: true
- /object.hasown/1.1.2:
+ /object.hasown@1.1.2:
resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
dependencies:
define-properties: 1.2.0
es-abstract: 1.21.2
dev: true
- /object.values/1.1.6:
+ /object.pick@1.3.0:
+ resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: false
+ optional: true
+
+ /object.values@1.1.6:
resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -16266,44 +18952,68 @@ packages:
es-abstract: 1.21.2
dev: true
- /oboe/2.1.5:
+ /oboe@2.1.5:
resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==}
dependencies:
http-https: 1.0.0
dev: false
- /obuf/1.1.2:
+ /obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- /on-finished/2.4.1:
+ /on-finished@2.3.0:
+ resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ ee-first: 1.1.1
+ dev: false
+ optional: true
+
+ /on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
- /on-headers/1.0.2:
+ /on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- /onetime/5.1.2:
+ /onetime@2.0.1:
+ resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ mimic-fn: 1.2.0
+ dev: false
+ optional: true
+
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
- /onetime/6.0.0:
+ /onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
dependencies:
mimic-fn: 4.0.0
dev: true
- /open/8.4.2:
+ /open@6.4.0:
+ resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
+ engines: {node: '>=8'}
+ dependencies:
+ is-wsl: 1.1.0
+ dev: false
+ optional: true
+
+ /open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
dependencies:
@@ -16311,11 +19021,11 @@ packages:
is-docker: 2.2.1
is-wsl: 2.2.0
- /opener/1.5.2:
+ /opener@1.5.2:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
hasBin: true
- /optionator/0.8.3:
+ /optionator@0.8.3:
resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -16327,7 +19037,7 @@ packages:
word-wrap: 1.2.3
dev: false
- /optionator/0.9.1:
+ /optionator@0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -16338,72 +19048,132 @@ packages:
type-check: 0.4.0
word-wrap: 1.2.3
- /os-browserify/0.3.0:
- resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
- dev: true
+ /ora@3.4.0:
+ resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
+ engines: {node: '>=6'}
+ dependencies:
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ cli-spinners: 2.6.1
+ log-symbols: 2.2.0
+ strip-ansi: 5.2.0
+ wcwidth: 1.0.1
+ dev: false
+ optional: true
+
+ /ora@5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ bl: 4.1.0
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-spinners: 2.6.1
+ is-interactive: 1.0.0
+ is-unicode-supported: 0.1.0
+ log-symbols: 4.1.0
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ dev: false
+ optional: true
+
+ /os-browserify@0.3.0:
+ resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
+ dev: true
+
+ /os-homedir@1.0.2:
+ resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /os-tmpdir@1.0.2:
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /osenv@0.1.5:
+ resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==}
+ dependencies:
+ os-homedir: 1.0.2
+ os-tmpdir: 1.0.2
+ dev: false
+ optional: true
- /p-cancelable/1.1.0:
+ /p-cancelable@1.1.0:
resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==}
engines: {node: '>=6'}
- /p-cancelable/2.1.1:
+ /p-cancelable@2.1.1:
resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
engines: {node: '>=8'}
dev: false
- /p-cancelable/3.0.0:
+ /p-cancelable@3.0.0:
resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
engines: {node: '>=12.20'}
dev: false
- /p-limit/2.3.0:
+ /p-defer@1.0.0:
+ resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==}
+ engines: {node: '>=4'}
+ dev: false
+
+ /p-finally@1.0.0:
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
- /p-limit/3.1.0:
+ /p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
- /p-locate/3.0.0:
+ /p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
dependencies:
p-limit: 2.3.0
- /p-locate/4.1.0:
+ /p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
dependencies:
p-limit: 2.3.0
- /p-locate/5.0.0:
+ /p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
- /p-map/4.0.0:
+ /p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
- /p-retry/4.6.2:
+ /p-retry@4.6.2:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
dependencies:
'@types/retry': 0.12.0
retry: 0.13.1
- /p-try/2.2.0:
+ /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- /package-json/6.5.0:
+ /package-json@6.5.0:
resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==}
engines: {node: '>=8'}
dependencies:
@@ -16412,29 +19182,33 @@ packages:
registry-url: 5.1.0
semver: 6.3.0
- /pako/1.0.11:
+ /pako@1.0.11:
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
dev: true
- /param-case/3.0.4:
+ /pako@2.1.0:
+ resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
+ dev: false
+
+ /param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
tslib: 2.5.0
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
- /parents/1.0.1:
+ /parents@1.0.1:
resolution: {integrity: sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg==}
dependencies:
path-platform: 0.11.15
dev: true
- /parse-asn1/5.1.6:
+ /parse-asn1@5.1.6:
resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==}
dependencies:
asn1.js: 5.4.1
@@ -16443,7 +19217,7 @@ packages:
pbkdf2: 3.1.2
safe-buffer: 5.2.1
- /parse-entities/2.0.0:
+ /parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
dependencies:
character-entities: 1.2.4
@@ -16453,11 +19227,20 @@ packages:
is-decimal: 1.0.4
is-hexadecimal: 1.0.4
- /parse-headers/2.0.5:
+ /parse-headers@2.0.5:
resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==}
dev: false
- /parse-json/5.2.0:
+ /parse-json@4.0.0:
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+ engines: {node: '>=4'}
+ dependencies:
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: false
+ optional: true
+
+ /parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
@@ -16466,73 +19249,100 @@ packages:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- /parse-numeric-range/1.3.0:
+ /parse-numeric-range@1.3.0:
resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
dev: false
- /parse5-htmlparser2-tree-adapter/7.0.0:
+ /parse-png@2.1.0:
+ resolution: {integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ pngjs: 3.4.0
+ dev: false
+ optional: true
+
+ /parse5-htmlparser2-tree-adapter@7.0.0:
resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
dependencies:
domhandler: 5.0.3
parse5: 7.1.2
dev: false
- /parse5/6.0.1:
+ /parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- /parse5/7.1.2:
+ /parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
dependencies:
entities: 4.4.0
dev: false
- /parseurl/1.3.3:
+ /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- /pascal-case/3.1.2:
+ /pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
- /path-browserify/1.0.1:
+ /pascalcase@0.1.1:
+ resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /password-prompt@1.1.2:
+ resolution: {integrity: sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==}
+ dependencies:
+ ansi-escapes: 3.2.0
+ cross-spawn: 6.0.5
+ dev: false
+ optional: true
+
+ /path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- dev: true
- /path-exists/3.0.0:
+ /path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
- /path-exists/4.0.0:
+ /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- /path-is-absolute/1.0.1:
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-is-inside/1.0.2:
+ /path-is-inside@1.0.2:
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
- /path-key/3.1.1:
+ /path-key@2.0.1:
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- /path-key/4.0.0:
+ /path-key@4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
engines: {node: '>=12'}
dev: true
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-platform/0.11.15:
+ /path-platform@0.11.15:
resolution: {integrity: sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg==}
engines: {node: '>= 0.8.0'}
dev: true
- /path-scurry/1.6.3:
+ /path-scurry@1.6.3:
resolution: {integrity: sha512-RAmB+n30SlN+HnNx6EbcpoDy9nwdpcGPnEKrJnu6GZoDWBdIjo1UQMVtW2ybtC7LC2oKLcMq8y5g8WnKLiod9g==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
@@ -16540,28 +19350,28 @@ packages:
minipass: 4.2.5
dev: true
- /path-to-regexp/0.1.7:
+ /path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
- /path-to-regexp/1.8.0:
+ /path-to-regexp@1.8.0:
resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==}
dependencies:
isarray: 0.0.1
- /path-to-regexp/2.2.1:
+ /path-to-regexp@2.2.1:
resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==}
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- /pause-stream/0.0.11:
+ /pause-stream@0.0.11:
resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
dependencies:
through: 2.3.8
dev: true
- /pbkdf2/3.1.2:
+ /pbkdf2@3.1.2:
resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
engines: {node: '>=0.12'}
dependencies:
@@ -16571,44 +19381,79 @@ packages:
safe-buffer: 5.2.1
sha.js: 2.4.11
- /performance-now/2.1.0:
+ /performance-now@2.1.0:
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
dev: false
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pidtree/0.6.0:
+ /pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
hasBin: true
dev: true
- /pify/2.3.0:
+ /pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- /pirates/4.0.5:
+ /pify@4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+ dev: false
+ optional: true
+
+ /pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
- /pkg-dir/4.2.0:
+ /pkg-dir@3.0.0:
+ resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
+ engines: {node: '>=6'}
+ dependencies:
+ find-up: 3.0.0
+ dev: false
+ optional: true
+
+ /pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
dependencies:
find-up: 4.1.0
- /pkg-up/3.1.0:
+ /pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
dependencies:
find-up: 3.0.0
- /postcss-calc/8.2.4_postcss@8.4.21:
+ /plist@3.0.6:
+ resolution: {integrity: sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==}
+ engines: {node: '>=6'}
+ dependencies:
+ base64-js: 1.5.1
+ xmlbuilder: 15.1.1
+ dev: false
+ optional: true
+
+ /pngjs@3.4.0:
+ resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
+ engines: {node: '>=4.0.0'}
+ dev: false
+ optional: true
+
+ /posix-character-classes@0.1.1:
+ resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /postcss-calc@8.2.4(postcss@8.4.21):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
@@ -16617,7 +19462,7 @@ packages:
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
- /postcss-colormin/5.3.1_postcss@8.4.21:
+ /postcss-colormin@5.3.1(postcss@8.4.21):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16629,7 +19474,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-convert-values/5.1.3_postcss@8.4.21:
+ /postcss-convert-values@5.1.3(postcss@8.4.21):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16639,7 +19484,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-discard-comments/5.1.2_postcss@8.4.21:
+ /postcss-discard-comments@5.1.2(postcss@8.4.21):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16647,7 +19492,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-discard-duplicates/5.1.0_postcss@8.4.21:
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16655,7 +19500,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-discard-empty/5.1.1_postcss@8.4.21:
+ /postcss-discard-empty@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16663,7 +19508,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-discard-overridden/5.1.0_postcss@8.4.21:
+ /postcss-discard-overridden@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16671,7 +19516,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-discard-unused/5.1.0_postcss@8.4.21:
+ /postcss-discard-unused@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16680,7 +19525,7 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-import/14.1.0_postcss@8.4.21:
+ /postcss-import@14.1.0(postcss@8.4.21):
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -16691,7 +19536,7 @@ packages:
read-cache: 1.0.0
resolve: 1.22.1
- /postcss-js/4.0.1_postcss@8.4.21:
+ /postcss-js@4.0.1(postcss@8.4.21):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
@@ -16700,23 +19545,7 @@ packages:
camelcase-css: 2.0.1
postcss: 8.4.21
- /postcss-load-config/3.1.4:
- resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
- engines: {node: '>= 10'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
- dependencies:
- lilconfig: 2.1.0
- yaml: 1.10.2
- dev: true
-
- /postcss-load-config/3.1.4_postcss@8.4.21:
+ /postcss-load-config@3.1.4(postcss@8.4.21)(ts-node@10.9.1):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -16730,9 +19559,10 @@ packages:
dependencies:
lilconfig: 2.1.0
postcss: 8.4.21
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5)
yaml: 1.10.2
- /postcss-loader/7.1.0_twwyhqqim6liv4fz2ggv7g4m5a:
+ /postcss-loader@7.1.0(postcss@8.4.21)(webpack@5.76.3):
resolution: {integrity: sha512-vTD2DJ8vJD0Vr1WzMQkRZWRjcynGh3t7NeoLg+Sb1TeuK7etiZfL/ZwHbaVa3M+Qni7Lj/29voV9IggnIUjlIw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -16743,23 +19573,23 @@ packages:
klona: 2.0.6
postcss: 8.4.21
semver: 7.3.8
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /postcss-media-query-parser/0.2.3:
+ /postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
dev: true
- /postcss-merge-idents/5.1.1_postcss@8.4.21:
+ /postcss-merge-idents@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-merge-longhand/5.1.7_postcss@8.4.21:
+ /postcss-merge-longhand@5.1.7(postcss@8.4.21):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16767,9 +19597,9 @@ packages:
dependencies:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.21
+ stylehacks: 5.1.1(postcss@8.4.21)
- /postcss-merge-rules/5.1.4_postcss@8.4.21:
+ /postcss-merge-rules@5.1.4(postcss@8.4.21):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16777,11 +19607,11 @@ packages:
dependencies:
browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-minify-font-values/5.1.0_postcss@8.4.21:
+ /postcss-minify-font-values@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16790,29 +19620,29 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-minify-gradients/5.1.1_postcss@8.4.21:
+ /postcss-minify-gradients@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-minify-params/5.1.4_postcss@8.4.21:
+ /postcss-minify-params@5.1.4(postcss@8.4.21):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-minify-selectors/5.2.1_postcss@8.4.21:
+ /postcss-minify-selectors@5.2.1(postcss@8.4.21):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16821,7 +19651,7 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.21:
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -16829,18 +19659,18 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.21:
+ /postcss-modules-local-by-default@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
- /postcss-modules-scope/3.0.0_postcss@8.4.21:
+ /postcss-modules-scope@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -16849,16 +19679,16 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-modules-values/4.0.0_postcss@8.4.21:
+ /postcss-modules-values@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
- /postcss-nested/6.0.0_postcss@8.4.21:
+ /postcss-nested@6.0.0(postcss@8.4.21):
resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
engines: {node: '>=12.0'}
peerDependencies:
@@ -16867,7 +19697,7 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-normalize-charset/5.1.0_postcss@8.4.21:
+ /postcss-normalize-charset@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16875,7 +19705,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-normalize-display-values/5.1.0_postcss@8.4.21:
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16884,7 +19714,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-positions/5.1.1_postcss@8.4.21:
+ /postcss-normalize-positions@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16893,7 +19723,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21:
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16902,7 +19732,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-string/5.1.0_postcss@8.4.21:
+ /postcss-normalize-string@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16911,7 +19741,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21:
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16920,7 +19750,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-unicode/5.1.1_postcss@8.4.21:
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16930,7 +19760,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-url/5.1.0_postcss@8.4.21:
+ /postcss-normalize-url@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16940,7 +19770,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.21:
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16949,17 +19779,17 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-ordered-values/5.1.3_postcss@8.4.21:
+ /postcss-ordered-values@5.1.3(postcss@8.4.21):
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-reduce-idents/5.2.0_postcss@8.4.21:
+ /postcss-reduce-idents@5.2.0(postcss@8.4.21):
resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16968,7 +19798,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-reduce-initial/5.1.2_postcss@8.4.21:
+ /postcss-reduce-initial@5.1.2(postcss@8.4.21):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16978,7 +19808,7 @@ packages:
caniuse-api: 3.0.0
postcss: 8.4.21
- /postcss-reduce-transforms/5.1.0_postcss@8.4.21:
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -16987,11 +19817,11 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-resolve-nested-selector/0.1.1:
+ /postcss-resolve-nested-selector@0.1.1:
resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==}
dev: true
- /postcss-safe-parser/6.0.0_postcss@8.4.21:
+ /postcss-safe-parser@6.0.0(postcss@8.4.21):
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
engines: {node: '>=12.0'}
peerDependencies:
@@ -17000,7 +19830,7 @@ packages:
postcss: 8.4.21
dev: true
- /postcss-scss/4.0.6_postcss@8.4.21:
+ /postcss-scss@4.0.6(postcss@8.4.21):
resolution: {integrity: sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==}
engines: {node: '>=12.0'}
peerDependencies:
@@ -17009,14 +19839,14 @@ packages:
postcss: 8.4.21
dev: true
- /postcss-selector-parser/6.0.11:
+ /postcss-selector-parser@6.0.11:
resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-sort-media-queries/4.3.0_postcss@8.4.21:
+ /postcss-sort-media-queries@4.3.0(postcss@8.4.21):
resolution: {integrity: sha512-jAl8gJM2DvuIJiI9sL1CuiHtKM4s5aEIomkU8G3LFvbP+p8i7Sz8VV63uieTgoewGqKbi+hxBTiOKJlB35upCg==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -17025,7 +19855,7 @@ packages:
postcss: 8.4.21
sort-css-media-queries: 2.1.0
- /postcss-svgo/5.1.0_postcss@8.4.21:
+ /postcss-svgo@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -17035,7 +19865,7 @@ packages:
postcss-value-parser: 4.2.0
svgo: 2.8.0
- /postcss-unique-selectors/5.1.1_postcss@8.4.21:
+ /postcss-unique-selectors@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -17044,10 +19874,10 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss-zindex/5.1.0_postcss@8.4.21:
+ /postcss-zindex@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -17055,7 +19885,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss/8.4.14:
+ /postcss@8.4.14:
resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -17064,7 +19894,7 @@ packages:
source-map-js: 1.0.2
dev: false
- /postcss/8.4.21:
+ /postcss@8.4.21:
resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -17072,50 +19902,38 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
- /postinstall-postinstall/2.1.0:
+ /postinstall-postinstall@2.1.0:
resolution: {integrity: sha512-7hQX6ZlZXIoRiWNrbMQaLzUUfH+sSx39u8EJ9HYuDc1kLo9IXKWjM5RSquZN1ad5GnH8CGFM78fsAAQi3OKEEQ==}
requiresBuild: true
dev: true
- /precompress/10.0.2:
+ /precompress@10.0.2:
resolution: {integrity: sha512-KDuSJZltWTirvvl08CZHKC3e/6sK0FXb8YVx1Tqec2LioC2Z4FXWFeNn7zberCQ5ZZs6KcU2Q7BDrwkFI5urtw==}
engines: {node: '>= 16'}
hasBin: true
dev: true
- /prelude-ls/1.1.2:
+ /prelude-ls@1.1.2:
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
engines: {node: '>= 0.8.0'}
dev: false
- /prelude-ls/1.2.1:
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- /prepend-http/2.0.0:
+ /prepend-http@2.0.0:
resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
engines: {node: '>=4'}
- /prettier-linter-helpers/1.0.0:
+ /prettier-linter-helpers@1.0.0:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
dependencies:
fast-diff: 1.2.0
dev: true
- /prettier-plugin-packagejson/2.4.3:
- resolution: {integrity: sha512-kPeeviJiwy0BgOSk7No8NmzzXfW4R9FYWni6ziA5zc1kGVVrKnBzMZdu2TUhI+I7h8/5Htt3vARYOk7KKJTTNQ==}
- peerDependencies:
- prettier: '>= 1.16.0'
- peerDependenciesMeta:
- prettier:
- optional: true
- dependencies:
- sort-package-json: 2.4.1
- synckit: 0.8.5
- dev: true
-
- /prettier-plugin-packagejson/2.4.3_prettier@2.8.7:
+ /prettier-plugin-packagejson@2.4.3(prettier@2.8.7):
resolution: {integrity: sha512-kPeeviJiwy0BgOSk7No8NmzzXfW4R9FYWni6ziA5zc1kGVVrKnBzMZdu2TUhI+I7h8/5Htt3vARYOk7KKJTTNQ==}
peerDependencies:
prettier: '>= 1.16.0'
@@ -17128,7 +19946,7 @@ packages:
synckit: 0.8.5
dev: true
- /prettier-plugin-tailwindcss/0.2.5_it6dmlw7gffs35k5m3t3bb3la4:
+ /prettier-plugin-tailwindcss@0.2.5(@ianvs/prettier-plugin-sort-imports@3.7.2)(prettier@2.8.7):
resolution: {integrity: sha512-vZ/iKieyCx0WTxHbkf5E1rBlv/ybFk8WTT4hL5W2jlVxum2Zbe0jMUpuQdDrpa4z2vnPiJ5KIWCqL/kd16fKYg==}
engines: {node: '>=12.17.0'}
peerDependencies:
@@ -17180,21 +19998,38 @@ packages:
prettier-plugin-twig-melody:
optional: true
dependencies:
- '@ianvs/prettier-plugin-sort-imports': 3.7.2_prettier@2.8.7
+ '@ianvs/prettier-plugin-sort-imports': 3.7.2(prettier@2.8.7)
prettier: 2.8.7
- /prettier/2.8.7:
+ /prettier@2.8.7:
resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==}
engines: {node: '>=10.13.0'}
hasBin: true
- /pretty-error/4.0.0:
+ /pretty-bytes@5.6.0:
+ resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
+ engines: {node: '>=6'}
+ dev: false
+ optional: true
+
+ /pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
dependencies:
lodash: 4.17.21
renderkid: 3.0.0
- /pretty-format/28.1.3:
+ /pretty-format@26.6.2:
+ resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-regex: 5.0.1
+ ansi-styles: 4.3.0
+ react-is: 17.0.2
+ dev: false
+ optional: true
+
+ /pretty-format@28.1.3:
resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -17204,7 +20039,7 @@ packages:
react-is: 18.2.0
dev: true
- /pretty-format/29.5.0:
+ /pretty-format@29.5.0:
resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -17212,11 +20047,11 @@ packages:
ansi-styles: 5.2.0
react-is: 18.2.0
- /pretty-time/1.1.0:
+ /pretty-time@1.1.0:
resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==}
engines: {node: '>=4'}
- /prism-react-renderer/1.3.5_react@18.2.0:
+ /prism-react-renderer@1.3.5(react@18.2.0):
resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
peerDependencies:
react: '>=0.14.9'
@@ -17224,59 +20059,81 @@ packages:
react: 18.2.0
dev: false
- /prismjs/1.29.0:
+ /prismjs@1.29.0:
resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
engines: {node: '>=6'}
dev: false
- /process-nextick-args/2.0.1:
+ /process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- /process/0.11.10:
+ /process@0.11.10:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
- /promise/7.3.1:
+ /progress@2.0.3:
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
+ dev: false
+ optional: true
+
+ /promise-inflight@1.0.1:
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
+ peerDependencies:
+ bluebird: '*'
+ peerDependenciesMeta:
+ bluebird:
+ optional: true
+ dev: false
+ optional: true
+
+ /promise@7.3.1:
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
dependencies:
asap: 2.0.6
dev: false
- /prompts/2.4.2:
+ /promise@8.3.0:
+ resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
+ dependencies:
+ asap: 2.0.6
+ dev: false
+ optional: true
+
+ /prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
dependencies:
kleur: 3.0.3
sisteransi: 1.0.5
- /prop-types/15.8.1:
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- /property-information/5.6.0:
+ /property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
dependencies:
xtend: 4.0.2
- /proxy-addr/2.0.7:
+ /proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
dependencies:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- /proxy-from-env/1.1.0:
+ /proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- dev: true
- /psl/1.9.0:
+ /psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: false
- /public-encrypt/4.0.3:
+ /public-encrypt@4.0.3:
resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
dependencies:
bn.js: 4.12.0
@@ -17286,69 +20143,75 @@ packages:
randombytes: 2.1.0
safe-buffer: 5.2.1
- /pump/3.0.0:
+ /pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- /punycode/1.3.2:
+ /punycode@1.3.2:
resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==}
dev: true
- /punycode/1.4.1:
+ /punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
- /punycode/2.1.0:
+ /punycode@2.1.0:
resolution: {integrity: sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==}
engines: {node: '>=6'}
dev: false
- /punycode/2.3.0:
+ /punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
- /pupa/2.1.1:
+ /pupa@2.1.1:
resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==}
engines: {node: '>=8'}
dependencies:
escape-goat: 2.1.1
- /pure-color/1.3.0:
+ /pure-color@1.3.0:
resolution: {integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==}
dev: false
- /pure-rand/6.0.1:
+ /pure-rand@6.0.1:
resolution: {integrity: sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==}
- /pvtsutils/1.3.2:
+ /pvtsutils@1.3.2:
resolution: {integrity: sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==}
dependencies:
tslib: 2.5.0
dev: false
- /pvutils/1.1.3:
+ /pvutils@1.1.3:
resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==}
engines: {node: '>=6.0.0'}
dev: false
- /q/1.5.1:
+ /q@1.5.1:
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
dev: true
- /qs/6.11.0:
+ /qrcode-terminal@0.11.0:
+ resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /qs@6.11.0:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.4
- /qs/6.5.3:
+ /qs@6.5.3:
resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
engines: {node: '>=0.6'}
dev: false
- /query-string/5.1.1:
+ /query-string@5.1.1:
resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -17357,7 +20220,7 @@ packages:
strict-uri-encode: 1.1.0
dev: false
- /query-string/7.1.3:
+ /query-string@7.1.3:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
engines: {node: '>=6'}
dependencies:
@@ -17367,54 +20230,59 @@ packages:
strict-uri-encode: 2.0.0
dev: false
- /querystring-es3/0.2.1:
+ /querystring-es3@0.2.1:
resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
engines: {node: '>=0.4.x'}
dev: true
- /querystring/0.2.0:
+ /querystring@0.2.0:
resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==}
engines: {node: '>=0.4.x'}
deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
dev: true
- /queue-microtask/1.2.3:
+ /querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+ dev: false
+ optional: true
+
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /queue/6.0.2:
+ /queue@6.0.2:
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
dependencies:
inherits: 2.0.4
- /quick-lru/4.0.1:
+ /quick-lru@4.0.1:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
dev: true
- /quick-lru/5.1.1:
+ /quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
- /randombytes/2.1.0:
+ /randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
- /randomfill/1.0.4:
+ /randomfill@1.0.4:
resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
dependencies:
randombytes: 2.1.0
safe-buffer: 5.2.1
- /range-parser/1.2.0:
+ /range-parser@1.2.0:
resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==}
engines: {node: '>= 0.6'}
- /range-parser/1.2.1:
+ /range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- /raw-body/2.5.1:
+ /raw-body@2.5.1:
resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'}
dependencies:
@@ -17423,7 +20291,7 @@ packages:
iconv-lite: 0.4.24
unpipe: 1.0.0
- /raw-body/2.5.2:
+ /raw-body@2.5.2:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
dependencies:
@@ -17433,7 +20301,7 @@ packages:
unpipe: 1.0.0
dev: false
- /rc/1.2.8:
+ /rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
dependencies:
@@ -17442,14 +20310,14 @@ packages:
minimist: 1.2.8
strip-json-comments: 2.0.1
- /rdf-canonize/3.3.0:
+ /rdf-canonize@3.3.0:
resolution: {integrity: sha512-gfSNkMua/VWC1eYbSkVaL/9LQhFeOh0QULwv7Or0f+po8pMgQ1blYQFe1r9Mv2GJZXw88Cz/drnAnB9UlNnHfQ==}
engines: {node: '>=12'}
dependencies:
setimmediate: 1.0.5
dev: false
- /react-base16-styling/0.6.0:
+ /react-base16-styling@0.6.0:
resolution: {integrity: sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==}
dependencies:
base16: 1.0.0
@@ -17458,7 +20326,7 @@ packages:
pure-color: 1.3.0
dev: false
- /react-dev-utils/12.0.1_wjtuovir4bgaqcifkekrkmozri:
+ /react-dev-utils@12.0.1(eslint@8.36.0)(typescript@4.9.5)(webpack@5.76.3):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -17477,7 +20345,7 @@ packages:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3_wjtuovir4bgaqcifkekrkmozri
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.36.0)(typescript@4.9.5)(webpack@5.76.3)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -17493,13 +20361,24 @@ packages:
strip-ansi: 6.0.1
text-table: 0.2.0
typescript: 4.9.5
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
transitivePeerDependencies:
- eslint
- supports-color
- vue-template-compiler
- /react-dom/18.2.0_react@18.2.0:
+ /react-devtools-core@4.27.4:
+ resolution: {integrity: sha512-dvZjrAJjahd6NNl7dDwEk5TyHsWJxDpYL7VnD9jdEr98EEEsVhw9G8JDX54Nrb3XIIOBlJDpjo3AuBuychX9zg==}
+ dependencies:
+ shell-quote: 1.8.0
+ ws: 7.5.9
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ dev: false
+ optional: true
+
+ /react-dom@18.2.0(react@18.2.0):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
react: ^18.2.0
@@ -17508,13 +20387,13 @@ packages:
react: 18.2.0
scheduler: 0.23.0
- /react-error-overlay/6.0.11:
+ /react-error-overlay@6.0.11:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
- /react-fast-compare/3.2.1:
+ /react-fast-compare@3.2.1:
resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
- /react-helmet-async/1.3.0_biqbaboplfbrettd7655fr4n2y:
+ /react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
peerDependencies:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
@@ -17524,38 +20403,43 @@ packages:
invariant: 2.2.4
prop-types: 15.8.1
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
react-fast-compare: 3.2.1
shallowequal: 1.1.0
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- /react-is/18.2.0:
+ /react-is@17.0.2:
+ resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
+ dev: false
+ optional: true
+
+ /react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- /react-json-view/1.21.3_4qaawyptjkcgzqorucvhm3koke:
+ /react-json-view@1.21.3(@types/react@18.0.30)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
peerDependencies:
react: ^17.0.0 || ^16.3.0 || ^15.5.4
react-dom: ^17.0.0 || ^16.3.0 || ^15.5.4
dependencies:
- flux: 4.0.4_react@18.2.0
+ flux: 4.0.4(react@18.2.0)
react: 18.2.0
react-base16-styling: 0.6.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.4.1_2thlp7g7odiqm7dwhn3rlhxaa4
+ react-textarea-autosize: 8.4.1(@types/react@18.0.30)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- encoding
dev: false
- /react-lifecycles-compat/3.0.4:
+ /react-lifecycles-compat@3.0.4:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-loadable-ssr-addon-v5-slorber/1.0.1_r7pi7vlw6nkfjbr5epugnhqe3u:
+ /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.76.3):
resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -17563,20 +20447,97 @@ packages:
webpack: '>=4.41.1 || 5.x'
dependencies:
'@babel/runtime': 7.21.0
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@18.2.0
- webpack: 5.76.3
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
+
+ /react-native-codegen@0.71.5(@babel/preset-env@7.20.2):
+ resolution: {integrity: sha512-rfsuc0zkuUuMjFnrT55I1mDZ+pBRp2zAiRwxck3m6qeGJBGK5OV5JH66eDQ4aa+3m0of316CqrJDRzVlYufzIg==}
+ dependencies:
+ '@babel/parser': 7.21.3
+ flow-parser: 0.185.2
+ jscodeshift: 0.13.1(@babel/preset-env@7.20.2)
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+ dev: false
+ optional: true
- /react-native-securerandom/0.1.1:
+ /react-native-gradle-plugin@0.71.17:
+ resolution: {integrity: sha512-OXXYgpISEqERwjSlaCiaQY6cTY5CH6j73gdkWpK0hedxtiWMWgH+i5TOi4hIGYitm9kQBeyDu+wim9fA8ROFJA==}
+ dev: false
+ optional: true
+
+ /react-native-securerandom@0.1.1(react-native@0.71.6):
resolution: {integrity: sha512-CozcCx0lpBLevxiXEb86kwLRalBCHNjiGPlw3P7Fi27U6ZLdfjOCNRHD1LtBKcvPvI3TvkBXB3GOtLvqaYJLGw==}
requiresBuild: true
peerDependencies:
react-native: '*'
dependencies:
base64-js: 1.5.1
+ react-native: 0.71.6(@babel/core@7.21.3)(@babel/preset-env@7.20.2)(react@18.2.0)
+ dev: false
+ optional: true
+
+ /react-native@0.71.6(@babel/core@7.21.3)(@babel/preset-env@7.20.2)(react@18.2.0):
+ resolution: {integrity: sha512-gHrDj7qaAaiE41JwaFCh3AtvOqOLuRgZtHKzNiwxakG/wvPAYmG73ECfWHGxjxIx/QT17Hp37Da3ipCei/CayQ==}
+ engines: {node: '>=14'}
+ hasBin: true
+ peerDependencies:
+ react: 18.2.0
+ dependencies:
+ '@jest/create-cache-key-function': 29.5.0
+ '@react-native-community/cli': 10.2.2(@babel/core@7.21.3)
+ '@react-native-community/cli-platform-android': 10.2.0
+ '@react-native-community/cli-platform-ios': 10.2.1
+ '@react-native/assets': 1.0.0
+ '@react-native/normalize-color': 2.1.0
+ '@react-native/polyfills': 2.0.0
+ abort-controller: 3.0.0
+ anser: 1.4.10
+ base64-js: 1.5.1
+ deprecated-react-native-prop-types: 3.0.1
+ event-target-shim: 5.0.1
+ invariant: 2.2.4
+ jest-environment-node: 29.5.0
+ jsc-android: 250231.0.0
+ memoize-one: 5.2.1
+ metro-react-native-babel-transformer: 0.73.9(@babel/core@7.21.3)
+ metro-runtime: 0.73.9
+ metro-source-map: 0.73.9
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.3.0
+ react: 18.2.0
+ react-devtools-core: 4.27.4
+ react-native-codegen: 0.71.5(@babel/preset-env@7.20.2)
+ react-native-gradle-plugin: 0.71.17
+ react-refresh: 0.4.3
+ react-shallow-renderer: 16.15.0(react@18.2.0)
+ regenerator-runtime: 0.13.11
+ scheduler: 0.23.0
+ stacktrace-parser: 0.1.10
+ use-sync-external-store: 1.2.0(react@18.2.0)
+ whatwg-fetch: 3.6.2
+ ws: 6.2.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+ optional: true
+
+ /react-refresh@0.4.3:
+ resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==}
+ engines: {node: '>=0.10.0'}
dev: false
optional: true
- /react-router-config/5.1.1_rlw3ibuvnpt5jvejeevjcf4ije:
+ /react-router-config@5.1.1(react-router@5.3.4)(react@18.2.0):
resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==}
peerDependencies:
react: '>=15'
@@ -17584,9 +20545,9 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
react: 18.2.0
- react-router: 5.3.4_react@18.2.0
+ react-router: 5.3.4(react@18.2.0)
- /react-router-dom/5.3.4_react@18.2.0:
+ /react-router-dom@5.3.4(react@18.2.0):
resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==}
peerDependencies:
react: '>=15'
@@ -17596,11 +20557,11 @@ packages:
loose-envify: 1.4.0
prop-types: 15.8.1
react: 18.2.0
- react-router: 5.3.4_react@18.2.0
+ react-router: 5.3.4(react@18.2.0)
tiny-invariant: 1.3.1
tiny-warning: 1.0.3
- /react-router/5.3.4_react@18.2.0:
+ /react-router@5.3.4(react@18.2.0):
resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==}
peerDependencies:
react: '>=15'
@@ -17616,7 +20577,18 @@ packages:
tiny-invariant: 1.3.1
tiny-warning: 1.0.3
- /react-textarea-autosize/8.4.1_2thlp7g7odiqm7dwhn3rlhxaa4:
+ /react-shallow-renderer@16.15.0(react@18.2.0):
+ resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
+ peerDependencies:
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ object-assign: 4.1.1
+ react: 18.2.0
+ react-is: 18.2.0
+ dev: false
+ optional: true
+
+ /react-textarea-autosize@8.4.1(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-aD2C+qK6QypknC+lCMzteOdIjoMbNlgSFmJjCV+DrfTPwp59i/it9mMNf2HDzvRjQgKAyBDPyLJhcrzElf2U4Q==}
engines: {node: '>=10'}
peerDependencies:
@@ -17624,13 +20596,13 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
react: 18.2.0
- use-composed-ref: 1.3.0_react@18.2.0
- use-latest: 1.2.1_2thlp7g7odiqm7dwhn3rlhxaa4
+ use-composed-ref: 1.3.0(react@18.2.0)
+ use-latest: 1.2.1(@types/react@18.0.30)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
- /react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y:
+ /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
@@ -17641,27 +20613,27 @@ packages:
loose-envify: 1.4.0
prop-types: 15.8.1
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /react/18.2.0:
+ /react@18.2.0:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
- /read-cache/1.0.0:
+ /read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
dependencies:
pify: 2.3.0
- /read-only-stream/2.0.0:
+ /read-only-stream@2.0.0:
resolution: {integrity: sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w==}
dependencies:
readable-stream: 2.3.8
dev: true
- /read-pkg-up/7.0.1:
+ /read-pkg-up@7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
dependencies:
@@ -17670,7 +20642,7 @@ packages:
type-fest: 0.8.1
dev: true
- /read-pkg/5.2.0:
+ /read-pkg@5.2.0:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
dependencies:
@@ -17680,7 +20652,7 @@ packages:
type-fest: 0.6.0
dev: true
- /readable-stream/2.3.8:
+ /readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
@@ -17691,7 +20663,7 @@ packages:
string_decoder: 1.1.1
util-deprecate: 1.0.2
- /readable-stream/3.6.2:
+ /readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
@@ -17699,40 +20671,56 @@ packages:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- /readdirp/3.6.0:
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- /reading-time/1.5.0:
+ /reading-time@1.5.0:
resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
dev: false
- /readline-transform/1.0.0:
+ /readline-transform@1.0.0:
resolution: {integrity: sha512-7KA6+N9IGat52d83dvxnApAWN+MtVb1MiVuMR/cf1O4kYsJG+g/Aav0AHcHKsb6StinayfPLne0+fMX2sOzAKg==}
engines: {node: '>=6'}
dev: true
- /rechoir/0.6.2:
+ /readline@1.3.0:
+ resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
+ dev: false
+ optional: true
+
+ /recast@0.20.5:
+ resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==}
+ engines: {node: '>= 4'}
+ dependencies:
+ ast-types: 0.14.2
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.5.0
+ dev: false
+ optional: true
+
+ /rechoir@0.6.2:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
dependencies:
resolve: 1.22.1
- /rechoir/0.8.0:
+ /rechoir@0.8.0:
resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==}
engines: {node: '>= 10.13.0'}
dependencies:
resolve: 1.22.1
- /recursive-readdir/2.2.3:
+ /recursive-readdir@2.2.3:
resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
engines: {node: '>=6.0.0'}
dependencies:
minimatch: 3.1.2
- /redent/3.0.0:
+ /redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
dependencies:
@@ -17740,24 +20728,33 @@ packages:
strip-indent: 3.0.0
dev: true
- /regenerate-unicode-properties/10.1.0:
+ /regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- /regenerator-transform/0.15.1:
+ /regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
'@babel/runtime': 7.21.0
- /regexp.prototype.flags/1.4.3:
+ /regex-not@1.0.2:
+ resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
+ dev: false
+ optional: true
+
+ /regexp.prototype.flags@1.4.3:
resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -17766,7 +20763,7 @@ packages:
functions-have-names: 1.2.3
dev: true
- /regexpu-core/5.3.2:
+ /regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
@@ -17777,45 +20774,45 @@ packages:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
- /registry-auth-token/4.2.2:
+ /registry-auth-token@4.2.2:
resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==}
engines: {node: '>=6.0.0'}
dependencies:
rc: 1.2.8
- /registry-url/5.1.0:
+ /registry-url@5.1.0:
resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==}
engines: {node: '>=8'}
dependencies:
rc: 1.2.8
- /regjsparser/0.9.1:
+ /regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
- /relateurl/0.2.7:
+ /relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
- /remark-emoji/2.2.0:
+ /remark-emoji@2.2.0:
resolution: {integrity: sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==}
dependencies:
emoticon: 3.2.0
node-emoji: 1.11.0
unist-util-visit: 2.0.3
- /remark-footnotes/2.0.0:
+ /remark-footnotes@2.0.0:
resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==}
- /remark-mdx/1.6.22:
+ /remark-mdx@1.6.22:
resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==}
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9)
+ '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
'@mdx-js/util': 1.6.22
is-alphabetical: 1.0.4
remark-parse: 8.0.3
@@ -17823,7 +20820,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /remark-parse/8.0.3:
+ /remark-parse@8.0.3:
resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==}
dependencies:
ccount: 1.1.0
@@ -17843,12 +20840,17 @@ packages:
vfile-location: 3.2.0
xtend: 4.0.2
- /remark-squeeze-paragraphs/4.0.0:
+ /remark-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==}
dependencies:
mdast-squeeze-paragraphs: 4.0.0
- /renderkid/3.0.0:
+ /remove-trailing-slash@0.1.1:
+ resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==}
+ dev: false
+ optional: true
+
+ /renderkid@3.0.0:
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
dependencies:
css-select: 4.3.0
@@ -17857,11 +20859,17 @@ packages:
lodash: 4.17.21
strip-ansi: 6.0.1
- /repeat-string/1.6.1:
+ /repeat-element@1.1.4:
+ resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
- /request/2.88.2:
+ /request@2.88.2:
resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==}
engines: {node: '>= 6'}
deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
@@ -17888,58 +20896,90 @@ packages:
uuid: 3.4.0
dev: false
- /require-directory/2.1.1:
+ /require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- /require-from-string/2.0.2:
+ /require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- /require-like/0.1.2:
+ /require-like@0.1.2:
resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==}
- /requires-port/1.0.0:
+ /require-main-filename@2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+ dev: false
+ optional: true
+
+ /requireg@0.2.2:
+ resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==}
+ engines: {node: '>= 4.0.0'}
+ dependencies:
+ nested-error-stacks: 2.0.1
+ rc: 1.2.8
+ resolve: 1.7.1
+ dev: false
+ optional: true
+
+ /requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- /resolve-alpn/1.2.1:
+ /reselect@4.1.7:
+ resolution: {integrity: sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==}
+ dev: false
+ optional: true
+
+ /resolve-alpn@1.2.1:
resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
dev: false
- /resolve-cwd/3.0.0:
+ /resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
dependencies:
resolve-from: 5.0.0
- /resolve-from/4.0.0:
+ /resolve-from@3.0.0:
+ resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- /resolve-from/5.0.0:
+ /resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- /resolve-global/1.0.0:
+ /resolve-global@1.0.0:
resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==}
engines: {node: '>=8'}
dependencies:
global-dirs: 0.1.1
dev: true
- /resolve-pathname/3.0.0:
+ /resolve-pathname@3.0.0:
resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==}
- /resolve.exports/1.1.0:
+ /resolve-url@0.2.1:
+ resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
+ deprecated: https://github.com/lydell/resolve-url#deprecated
+ dev: false
+ optional: true
+
+ /resolve.exports@1.1.0:
resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==}
engines: {node: '>=10'}
dev: true
- /resolve.exports/2.0.2:
+ /resolve.exports@2.0.2:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
- /resolve/1.22.1:
+ /resolve@1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
dependencies:
@@ -17947,7 +20987,14 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.4:
+ /resolve@1.7.1:
+ resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==}
+ dependencies:
+ path-parse: 1.0.7
+ dev: false
+ optional: true
+
+ /resolve@2.0.0-next.4:
resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
hasBin: true
dependencies:
@@ -17956,43 +21003,87 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
- /responselike/1.0.2:
+ /responselike@1.0.2:
resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
dependencies:
lowercase-keys: 1.0.1
- /responselike/2.0.1:
+ /responselike@2.0.1:
resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
dependencies:
lowercase-keys: 2.0.0
dev: false
- /restore-cursor/3.1.0:
+ /restore-cursor@2.0.0:
+ resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
+ engines: {node: '>=4'}
+ dependencies:
+ onetime: 2.0.1
+ signal-exit: 3.0.7
+ dev: false
+ optional: true
+
+ /restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
- dev: true
- /retry/0.13.1:
+ /ret@0.1.15:
+ resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
+ engines: {node: '>=0.12'}
+ dev: false
+ optional: true
+
+ /retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rfdc/1.3.0:
- resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
+ /rfdc@1.3.0:
+ resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
+
+ /rimraf@2.2.8:
+ resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /rimraf@2.4.5:
+ resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==}
+ hasBin: true
+ dependencies:
+ glob: 6.0.4
+ dev: false
+ optional: true
+
+ /rimraf@2.6.3:
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: false
+ optional: true
+
+ /rimraf@2.7.1:
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
+ hasBin: true
+ dependencies:
+ glob: 7.2.3
+ dev: false
+ optional: true
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
- /rimraf/4.4.1:
+ /rimraf@4.4.1:
resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==}
engines: {node: '>=14'}
hasBin: true
@@ -18000,25 +21091,25 @@ packages:
glob: 9.3.2
dev: true
- /ripemd160-min/0.0.6:
+ /ripemd160-min@0.0.6:
resolution: {integrity: sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A==}
engines: {node: '>=8'}
dev: false
- /ripemd160/2.0.2:
+ /ripemd160@2.0.2:
resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
dependencies:
hash-base: 3.1.0
inherits: 2.0.4
- /rlp/2.2.7:
+ /rlp@2.2.7:
resolution: {integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==}
hasBin: true
dependencies:
bn.js: 5.2.1
dev: false
- /rollup/3.20.2:
+ /rollup@3.20.2:
resolution: {integrity: sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
@@ -18026,17 +21117,17 @@ packages:
fsevents: 2.3.2
dev: true
- /rpc-utils/0.6.2:
+ /rpc-utils@0.6.2:
resolution: {integrity: sha512-kzk1OflbBckfDBAo8JwsmtQSHzj+6hxRt5G+u8A8ZSmunBw1nhWvRkSq8j1+EvWBqBRLy1aiGLUW5644CZqQtA==}
engines: {node: '>=14.14'}
dependencies:
nanoid: 3.3.6
dev: false
- /rtl-detect/1.0.4:
+ /rtl-detect@1.0.4:
resolution: {integrity: sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==}
- /rtlcss/3.5.0:
+ /rtlcss@3.5.0:
resolution: {integrity: sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==}
hasBin: true
dependencies:
@@ -18046,30 +21137,36 @@ packages:
strip-json-comments: 3.1.1
dev: false
- /run-parallel/1.2.0:
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- /rxjs/6.6.7:
+ /rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
dependencies:
tslib: 1.14.1
dev: true
- /rxjs/7.8.0:
+ /rxjs@7.8.0:
resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
tslib: 2.5.0
- /safe-buffer/5.1.2:
+ /safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- /safe-regex-test/1.0.0:
+ /safe-json-stringify@1.2.0:
+ resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /safe-regex-test@1.0.0:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
@@ -18077,10 +21174,17 @@ packages:
is-regex: 1.1.4
dev: true
- /safer-buffer/2.1.2:
+ /safe-regex@1.1.0:
+ resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
+ dependencies:
+ ret: 0.1.15
+ dev: false
+ optional: true
+
+ /safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- /sass/1.60.0:
+ /sass@1.60.0:
resolution: {integrity: sha512-updbwW6fNb5gGm8qMXzVO7V4sWf7LMXnMly/JEyfbfERbVH46Fn6q02BX7/eHTdKpE7d+oTkMMQpFWNUMfFbgQ==}
engines: {node: '>=12.0.0'}
hasBin: true
@@ -18089,53 +21193,69 @@ packages:
immutable: 4.3.0
source-map-js: 1.0.2
- /sax/1.2.4:
+ /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
dev: false
- /scheduler/0.23.0:
+ /scheduler@0.23.0:
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
dependencies:
loose-envify: 1.4.0
- /schema-utils/2.7.0:
+ /schema-utils@2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
engines: {node: '>= 8.9.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/2.7.1:
+ /schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/3.1.1:
+ /schema-utils@3.1.1:
resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/4.0.0:
+ /schema-utils@4.0.0:
resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 8.12.0
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.12.0
+ ajv-formats: 2.1.1(ajv@8.12.0)
+ ajv-keywords: 5.1.0(ajv@8.12.0)
- /scrypt-js/3.0.1:
+ /scrypt-js@3.0.1:
resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==}
dev: false
- /secp256k1/4.0.3:
+ /secp256k1@3.7.1:
+ resolution: {integrity: sha512-1cf8sbnRreXrQFdH6qsg2H71Xw91fCCS9Yp021GnUNJzWJS/py96fS4lHbnTnouLp08Xj6jBoBB6V78Tdbdu5g==}
+ engines: {node: '>=4.0.0'}
+ requiresBuild: true
+ dependencies:
+ bindings: 1.5.0
+ bip66: 1.1.5
+ bn.js: 4.12.0
+ create-hash: 1.2.0
+ drbg.js: 1.0.1
+ elliptic: 6.5.4
+ nan: 2.14.0
+ safe-buffer: 5.2.1
+ dev: false
+ optional: true
+
+ /secp256k1@4.0.3:
resolution: {integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==}
engines: {node: '>=10.0.0'}
requiresBuild: true
@@ -18145,37 +21265,54 @@ packages:
node-gyp-build: 4.6.0
dev: false
- /section-matter/1.0.0:
+ /secp256k1@5.0.0:
+ resolution: {integrity: sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==}
+ engines: {node: '>=14.0.0'}
+ requiresBuild: true
+ dependencies:
+ elliptic: 6.5.4
+ node-addon-api: 5.1.0
+ node-gyp-build: 4.6.0
+ dev: false
+
+ /section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
engines: {node: '>=4'}
dependencies:
extend-shallow: 2.0.1
kind-of: 6.0.3
- /select-hose/2.0.0:
+ /select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
- /selfsigned/2.1.1:
+ /selfsigned@2.1.1:
resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
engines: {node: '>=10'}
dependencies:
node-forge: 1.3.1
- /semver-diff/3.1.1:
+ /semver-diff@3.1.1:
resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
- /semver/5.7.1:
+ /semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
- /semver/7.3.4:
+ /semver@7.3.2:
+ resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /semver@7.3.4:
resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==}
engines: {node: '>=10'}
hasBin: true
@@ -18183,14 +21320,14 @@ packages:
lru-cache: 6.0.0
dev: true
- /semver/7.3.8:
+ /semver@7.3.8:
resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
- /send/0.18.0:
+ /send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -18210,19 +21347,40 @@ packages:
transitivePeerDependencies:
- supports-color
- /serialize-error/8.1.0:
+ /serialize-error@2.1.0:
+ resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /serialize-error@6.0.0:
+ resolution: {integrity: sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==}
+ engines: {node: '>=10'}
+ dependencies:
+ type-fest: 0.12.0
+ dev: false
+ optional: true
+
+ /serialize-error@7.0.1:
+ resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==}
+ engines: {node: '>=10'}
+ dependencies:
+ type-fest: 0.13.1
+ dev: false
+
+ /serialize-error@8.1.0:
resolution: {integrity: sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==}
engines: {node: '>=10'}
dependencies:
type-fest: 0.20.2
dev: false
- /serialize-javascript/6.0.1:
+ /serialize-javascript@6.0.1:
resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
dependencies:
randombytes: 2.1.0
- /serve-handler/6.1.5:
+ /serve-handler@6.1.5:
resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
dependencies:
bytes: 3.0.0
@@ -18234,7 +21392,7 @@ packages:
path-to-regexp: 2.2.1
range-parser: 1.2.0
- /serve-index/1.9.1:
+ /serve-index@1.9.1:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -18248,7 +21406,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /serve-static/1.15.0:
+ /serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -18259,7 +21417,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /servify/0.1.12:
+ /servify@0.1.12:
resolution: {integrity: sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==}
engines: {node: '>=6'}
dependencies:
@@ -18272,55 +21430,85 @@ packages:
- supports-color
dev: false
- /ses/0.18.2:
+ /ses@0.18.2:
resolution: {integrity: sha512-AGoYxx1035q60uICxzkqMzzHf6bQuMtgTHWKnmv+qHjY/dAIKMgRT47HY/AdFquGbJCp17AEekBXFbITiS1YUA==}
- /setimmediate/1.0.5:
+ /set-blocking@2.0.0:
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ dev: false
+ optional: true
+
+ /set-value@2.0.1:
+ resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
+ dev: false
+ optional: true
+
+ /setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
dev: false
- /setprototypeof/1.1.0:
+ /setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
- /setprototypeof/1.2.0:
+ /setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- /sha.js/2.4.11:
+ /sha.js@2.4.11:
resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
hasBin: true
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
- /shallow-clone/3.0.1:
+ /shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
- /shallowequal/1.1.0:
+ /shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
- /shasum-object/1.0.0:
+ /shasum-object@1.0.0:
resolution: {integrity: sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg==}
dependencies:
fast-safe-stringify: 2.1.1
dev: true
- /shebang-command/2.0.0:
+ /shebang-command@1.2.0:
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ shebang-regex: 1.0.0
+ dev: false
+ optional: true
+
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- /shebang-regex/3.0.0:
+ /shebang-regex@1.0.0:
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shell-quote/1.8.0:
+ /shell-quote@1.8.0:
resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==}
- /shelljs/0.8.5:
+ /shelljs@0.8.5:
resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
engines: {node: '>=4'}
hasBin: true
@@ -18329,20 +21517,20 @@ packages:
interpret: 1.4.0
rechoir: 0.6.2
- /side-channel/1.0.4:
+ /side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.0
object-inspect: 1.12.3
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- /simple-concat/1.0.1:
+ /simple-concat@1.0.1:
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
- /simple-get/2.8.2:
+ /simple-get@2.8.2:
resolution: {integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==}
dependencies:
decompress-response: 3.3.0
@@ -18350,7 +21538,16 @@ packages:
simple-concat: 1.0.1
dev: false
- /sirv/1.0.19:
+ /simple-plist@1.3.1:
+ resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
+ dependencies:
+ bplist-creator: 0.1.0
+ bplist-parser: 0.3.1
+ plist: 3.0.6
+ dev: false
+ optional: true
+
+ /sirv@1.0.19:
resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
engines: {node: '>= 10'}
dependencies:
@@ -18358,10 +21555,10 @@ packages:
mrmime: 1.0.1
totalist: 1.1.0
- /sisteransi/1.0.5:
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- /sitemap/7.1.1:
+ /sitemap@7.1.1:
resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==}
engines: {node: '>=12.0.0', npm: '>=5.6.0'}
hasBin: true
@@ -18372,15 +21569,25 @@ packages:
sax: 1.2.4
dev: false
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- /slash/4.0.0:
+ /slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
- /slice-ansi/3.0.0:
+ /slice-ansi@2.1.0:
+ resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-styles: 3.2.1
+ astral-regex: 1.0.0
+ is-fullwidth-code-point: 2.0.0
+ dev: false
+ optional: true
+
+ /slice-ansi@3.0.0:
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
engines: {node: '>=8'}
dependencies:
@@ -18389,7 +21596,7 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
- /slice-ansi/4.0.0:
+ /slice-ansi@4.0.0:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
dependencies:
@@ -18398,7 +21605,7 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
- /slice-ansi/5.0.0:
+ /slice-ansi@5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
engines: {node: '>=12'}
dependencies:
@@ -18406,22 +21613,63 @@ packages:
is-fullwidth-code-point: 4.0.0
dev: true
- /sockjs/0.3.24:
+ /slugify@1.6.6:
+ resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
+ engines: {node: '>=8.0.0'}
+ dev: false
+ optional: true
+
+ /snapdragon-node@2.1.1:
+ resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
+ dev: false
+ optional: true
+
+ /snapdragon-util@3.0.1:
+ resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ optional: true
+
+ /snapdragon@0.8.2:
+ resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
faye-websocket: 0.11.4
uuid: 8.3.2
websocket-driver: 0.7.4
- /sort-css-media-queries/2.1.0:
+ /sort-css-media-queries@2.1.0:
resolution: {integrity: sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==}
engines: {node: '>= 6.3.0'}
- /sort-object-keys/1.1.3:
+ /sort-object-keys@1.1.3:
resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==}
dev: true
- /sort-package-json/2.4.1:
+ /sort-package-json@2.4.1:
resolution: {integrity: sha512-Nd3rgLBJcZ4iw7tpuOhwBupG6SvUDU0Fy1cZGAMorA2JmDUb+29Dg5phJK9gapa2Ak9d15w/RuMl/viwX+nKwQ==}
hasBin: true
dependencies:
@@ -18433,70 +21681,94 @@ packages:
sort-object-keys: 1.1.3
dev: true
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-support/0.5.13:
+ /source-map-resolve@0.5.3:
+ resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.2
+ resolve-url: 0.2.1
+ source-map-url: 0.4.1
+ urix: 0.1.0
+ dev: false
+ optional: true
+
+ /source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- /source-map-support/0.5.19:
+ /source-map-support@0.5.19:
resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
dev: true
- /source-map-support/0.5.21:
+ /source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- /source-map/0.5.7:
+ /source-map-url@0.4.1:
+ resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
+ deprecated: See https://github.com/lydell/source-map-url#deprecated
+ dev: false
+ optional: true
+
+ /source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- /source-map/0.8.0-beta.0:
+ /source-map@0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
+ dev: false
+ optional: true
+
+ /source-map@0.8.0-beta.0:
resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
engines: {node: '>= 8'}
dependencies:
whatwg-url: 7.1.0
dev: true
- /space-separated-tokens/1.1.5:
+ /space-separated-tokens@1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
- /spdx-correct/3.2.0:
+ /spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
spdx-license-ids: 3.0.13
dev: true
- /spdx-exceptions/2.3.0:
+ /spdx-exceptions@2.3.0:
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
dev: true
- /spdx-expression-parse/3.0.1:
+ /spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
spdx-license-ids: 3.0.13
dev: true
- /spdx-license-ids/3.0.13:
+ /spdx-license-ids@3.0.13:
resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==}
dev: true
- /spdy-transport/3.0.0:
+ /spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
debug: 4.3.4
@@ -18508,7 +21780,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /spdy/4.0.2:
+ /spdy@4.0.2:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -18520,33 +21792,40 @@ packages:
transitivePeerDependencies:
- supports-color
- /split-on-first/1.1.0:
+ /split-on-first@1.1.0:
resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
engines: {node: '>=6'}
dev: false
- /split/0.2.10:
+ /split-string@3.1.0:
+ resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
+ dev: false
+ optional: true
+
+ /split2@3.2.2:
+ resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
+ dependencies:
+ readable-stream: 3.6.2
+ dev: true
+
+ /split@0.2.10:
resolution: {integrity: sha512-e0pKq+UUH2Xq/sXbYpZBZc3BawsfDZ7dgv+JtRTUPNcvF5CMR4Y9cvJqkMY0MoxWzTHvZuz1beg6pNEKlszPiQ==}
dependencies:
through: 2.3.8
dev: false
- /split/1.0.1:
+ /split@1.0.1:
resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
dependencies:
through: 2.3.8
- dev: true
- /split2/3.2.2:
- resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
- dependencies:
- readable-stream: 3.6.2
- dev: true
-
- /sprintf-js/1.0.3:
+ /sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /sshpk/1.17.0:
+ /sshpk@1.17.0:
resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==}
engines: {node: '>=0.10.0'}
hasBin: true
@@ -18562,69 +21841,105 @@ packages:
tweetnacl: 0.14.5
dev: false
- /stable/0.1.8:
+ /ssri@8.0.1:
+ resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+ optional: true
+
+ /stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
- /stack-utils/2.0.6:
+ /stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
dependencies:
escape-string-regexp: 2.0.0
- /state-toggle/1.0.3:
+ /stackframe@1.3.4:
+ resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
+ dev: false
+ optional: true
+
+ /stacktrace-parser@0.1.10:
+ resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
+ engines: {node: '>=6'}
+ dependencies:
+ type-fest: 0.7.1
+ dev: false
+ optional: true
+
+ /state-toggle@1.0.3:
resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
- /static-eval/2.0.2:
+ /static-eval@2.0.2:
resolution: {integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==}
dependencies:
escodegen: 1.14.3
dev: false
- /statuses/1.5.0:
+ /static-extend@0.1.2:
+ resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
+ dev: false
+ optional: true
+
+ /statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- /statuses/2.0.1:
+ /statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- /std-env/3.3.2:
+ /std-env@3.3.2:
resolution: {integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==}
- /stop-iteration-iterator/1.0.0:
+ /stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
dependencies:
internal-slot: 1.0.5
dev: true
- /str2buf/1.3.0:
+ /str2buf@1.3.0:
resolution: {integrity: sha512-xIBmHIUHYZDP4HyoXGHYNVmxlXLXDrtFHYT0eV6IOdEj3VO9ccaF1Ejl9Oq8iFjITllpT8FhaXb4KsNmw+3EuA==}
dev: false
- /stream-browserify/3.0.0:
+ /stream-browserify@3.0.0:
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
dependencies:
inherits: 2.0.4
readable-stream: 3.6.2
dev: true
- /stream-combiner/0.2.2:
- resolution: {integrity: sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ==}
- dependencies:
- duplexer: 0.1.2
- through: 2.3.8
- dev: true
+ /stream-buffers@2.2.0:
+ resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
+ engines: {node: '>= 0.10.0'}
+ dev: false
+ optional: true
- /stream-combiner2/1.1.1:
+ /stream-combiner2@1.1.1:
resolution: {integrity: sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==}
dependencies:
duplexer2: 0.1.4
readable-stream: 2.3.8
dev: true
- /stream-http/3.2.0:
+ /stream-combiner@0.2.2:
+ resolution: {integrity: sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ==}
+ dependencies:
+ duplexer: 0.1.2
+ through: 2.3.8
+ dev: true
+
+ /stream-http@3.2.0:
resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==}
dependencies:
builtin-status-codes: 3.0.0
@@ -18633,36 +21948,36 @@ packages:
xtend: 4.0.2
dev: true
- /stream-splicer/2.0.1:
+ /stream-splicer@2.0.1:
resolution: {integrity: sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg==}
dependencies:
inherits: 2.0.4
readable-stream: 2.3.8
dev: true
- /strict-uri-encode/1.1.0:
+ /strict-uri-encode@1.1.0:
resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
engines: {node: '>=0.10.0'}
dev: false
- /strict-uri-encode/2.0.0:
+ /strict-uri-encode@2.0.0:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
engines: {node: '>=4'}
dev: false
- /string-argv/0.3.1:
+ /string-argv@0.3.1:
resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==}
engines: {node: '>=0.6.19'}
dev: true
- /string-length/4.0.2:
+ /string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
dependencies:
char-regex: 1.0.2
strip-ansi: 6.0.1
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
@@ -18670,7 +21985,7 @@ packages:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- /string-width/5.1.2:
+ /string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
dependencies:
@@ -18678,7 +21993,7 @@ packages:
emoji-regex: 9.2.2
strip-ansi: 7.0.1
- /string.prototype.matchall/4.0.8:
+ /string.prototype.matchall@4.0.8:
resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
@@ -18691,7 +22006,7 @@ packages:
side-channel: 1.0.4
dev: true
- /string.prototype.trim/1.2.7:
+ /string.prototype.trim@1.2.7:
resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -18700,7 +22015,7 @@ packages:
es-abstract: 1.21.2
dev: true
- /string.prototype.trimend/1.0.6:
+ /string.prototype.trimend@1.0.6:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
dependencies:
call-bind: 1.0.2
@@ -18708,7 +22023,7 @@ packages:
es-abstract: 1.21.2
dev: true
- /string.prototype.trimstart/1.0.6:
+ /string.prototype.trimstart@1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
call-bind: 1.0.2
@@ -18716,17 +22031,17 @@ packages:
es-abstract: 1.21.2
dev: true
- /string_decoder/1.1.1:
+ /string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
- /string_decoder/1.3.0:
+ /string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
- /stringify-object/3.3.0:
+ /stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
engines: {node: '>=4'}
dependencies:
@@ -18734,63 +22049,82 @@ packages:
is-obj: 1.0.1
is-regexp: 1.0.0
- /strip-ansi/6.0.1:
+ /strip-ansi@5.2.0:
+ resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-regex: 4.1.1
+ dev: false
+ optional: true
+
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- /strip-ansi/7.0.1:
+ /strip-ansi@7.0.1:
resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
- /strip-bom-string/1.0.0:
+ /strip-bom-string@1.0.0:
resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
engines: {node: '>=0.10.0'}
- /strip-bom/3.0.0:
+ /strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
dev: true
- /strip-bom/4.0.0:
+ /strip-bom@4.0.0:
resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
engines: {node: '>=8'}
- /strip-final-newline/2.0.0:
+ /strip-eof@1.0.0:
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- /strip-final-newline/3.0.0:
+ /strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
dev: true
- /strip-hex-prefix/1.0.0:
+ /strip-hex-prefix@1.0.0:
resolution: {integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==}
engines: {node: '>=6.5.0', npm: '>=3'}
dependencies:
is-hex-prefixed: 1.0.0
dev: false
- /strip-indent/3.0.0:
+ /strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
dependencies:
min-indent: 1.0.1
dev: true
- /strip-json-comments/2.0.1:
+ /strip-json-comments@2.0.1:
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- /strong-log-transformer/2.1.0:
+ /strnum@1.0.5:
+ resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+ dev: false
+ optional: true
+
+ /strong-log-transformer@2.1.0:
resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
engines: {node: '>=4'}
hasBin: true
@@ -18800,16 +22134,21 @@ packages:
through: 2.3.8
dev: true
- /style-search/0.1.0:
+ /structured-headers@0.4.1:
+ resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
+ dev: false
+ optional: true
+
+ /style-search@0.1.0:
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
dev: true
- /style-to-object/0.3.0:
+ /style-to-object@0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
dependencies:
inline-style-parser: 0.1.1
- /styled-jsx/5.1.1_react@18.2.0:
+ /styled-jsx@5.1.1(@babel/core@7.21.3)(react@18.2.0):
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -18822,11 +22161,12 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
+ '@babel/core': 7.21.3
client-only: 0.0.1
react: 18.2.0
dev: false
- /stylehacks/5.1.1_postcss@8.4.21:
+ /stylehacks@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -18836,17 +22176,17 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /stylelint-config-css-modules/4.2.0_stylelint@15.3.0:
+ /stylelint-config-css-modules@4.2.0(stylelint@15.3.0):
resolution: {integrity: sha512-5x7lzPNCc42puQEAFdr7dSzQ00aIg1vCVyV+QPUiSp2oZILpAt8HTgveXaDttazxcwWPBNJrxrLpa556xUP7Bw==}
peerDependencies:
stylelint: ^14.5.1 || ^15.0.0
dependencies:
stylelint: 15.3.0
optionalDependencies:
- stylelint-scss: 4.6.0_stylelint@15.3.0
+ stylelint-scss: 4.6.0(stylelint@15.3.0)
dev: true
- /stylelint-config-prettier-scss/0.0.1_stylelint@15.3.0:
+ /stylelint-config-prettier-scss@0.0.1(stylelint@15.3.0):
resolution: {integrity: sha512-lBAYG9xYOh2LeWEPC/64xeUxwOTnQ8nDyBijQoWoJb10/bMGrUwnokpt8jegGck2Vbtxh6XGwH63z5qBcVHreQ==}
engines: {node: '>= 12'}
hasBin: true
@@ -18854,10 +22194,10 @@ packages:
stylelint: '>=11.0.0'
dependencies:
stylelint: 15.3.0
- stylelint-config-prettier: 9.0.5_stylelint@15.3.0
+ stylelint-config-prettier: 9.0.5(stylelint@15.3.0)
dev: true
- /stylelint-config-prettier/9.0.5_stylelint@15.3.0:
+ /stylelint-config-prettier@9.0.5(stylelint@15.3.0):
resolution: {integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==}
engines: {node: '>= 12'}
hasBin: true
@@ -18867,7 +22207,7 @@ packages:
stylelint: 15.3.0
dev: true
- /stylelint-config-recommended-scss/9.0.1_xd434hbhlikjpobg3rgppuzh3e:
+ /stylelint-config-recommended-scss@9.0.1(postcss@8.4.21)(stylelint@15.3.0):
resolution: {integrity: sha512-qAmz/TdrqslwiMTuLM3QXeISUkfEDUXGMfRBCHm/xrkCJNnQefv+mzG2mWTsWkqcVk8HAyUkug10dwAcYp2fCQ==}
peerDependencies:
postcss: ^8.3.3
@@ -18877,13 +22217,13 @@ packages:
optional: true
dependencies:
postcss: 8.4.21
- postcss-scss: 4.0.6_postcss@8.4.21
+ postcss-scss: 4.0.6(postcss@8.4.21)
stylelint: 15.3.0
- stylelint-config-recommended: 10.0.1_stylelint@15.3.0
- stylelint-scss: 4.6.0_stylelint@15.3.0
+ stylelint-config-recommended: 10.0.1(stylelint@15.3.0)
+ stylelint-scss: 4.6.0(stylelint@15.3.0)
dev: true
- /stylelint-config-recommended/10.0.1_stylelint@15.3.0:
+ /stylelint-config-recommended@10.0.1(stylelint@15.3.0):
resolution: {integrity: sha512-TQ4xQ48tW4QSlODcti7pgSRqBZcUaBzuh0jPpfiMhwJKBPkqzTIAU+IrSWL/7BgXlOM90DjB7YaNgFpx8QWhuA==}
peerDependencies:
stylelint: ^15.0.0
@@ -18891,7 +22231,7 @@ packages:
stylelint: 15.3.0
dev: true
- /stylelint-config-recommended/11.0.0_stylelint@15.3.0:
+ /stylelint-config-recommended@11.0.0(stylelint@15.3.0):
resolution: {integrity: sha512-SoGIHNI748OCZn6BxFYT83ytWoYETCINVHV3LKScVAWQQauWdvmdDqJC5YXWjpBbxg2E761Tg5aUGKLFOVhEkA==}
peerDependencies:
stylelint: ^15.3.0
@@ -18899,7 +22239,7 @@ packages:
stylelint: 15.3.0
dev: true
- /stylelint-config-standard-scss/7.0.1_xd434hbhlikjpobg3rgppuzh3e:
+ /stylelint-config-standard-scss@7.0.1(postcss@8.4.21)(stylelint@15.3.0):
resolution: {integrity: sha512-m5sRdtsB1F5fnC1Ozla7ryftU47wVpO+HWd+JQTqeoG0g/oPh5EfbWfcVHbNCEtuoHfALIySiUWS20pz2hX6jA==}
peerDependencies:
postcss: ^8.3.3
@@ -18910,29 +22250,29 @@ packages:
dependencies:
postcss: 8.4.21
stylelint: 15.3.0
- stylelint-config-recommended-scss: 9.0.1_xd434hbhlikjpobg3rgppuzh3e
- stylelint-config-standard: 30.0.1_stylelint@15.3.0
+ stylelint-config-recommended-scss: 9.0.1(postcss@8.4.21)(stylelint@15.3.0)
+ stylelint-config-standard: 30.0.1(stylelint@15.3.0)
dev: true
- /stylelint-config-standard/30.0.1_stylelint@15.3.0:
+ /stylelint-config-standard@30.0.1(stylelint@15.3.0):
resolution: {integrity: sha512-NbeHOmpRQhjZh5XB1B/S4MLRWvz4xxAxeDBjzl0tY2xEcayNhLbaRGF0ZQzq+DQZLCcPpOHeS2Ru1ydbkhkmLg==}
peerDependencies:
stylelint: ^15.0.0
dependencies:
stylelint: 15.3.0
- stylelint-config-recommended: 10.0.1_stylelint@15.3.0
+ stylelint-config-recommended: 10.0.1(stylelint@15.3.0)
dev: true
- /stylelint-config-standard/31.0.0_stylelint@15.3.0:
+ /stylelint-config-standard@31.0.0(stylelint@15.3.0):
resolution: {integrity: sha512-CUGAmtROCvX0YgMY2+6P9tqSkHj5z/75XxrQ8bGxvkCa1xYdGDx4poM0pa7cXc3s74/PZLJH/okxZZouRfOSGw==}
peerDependencies:
stylelint: ^15.3.0
dependencies:
stylelint: 15.3.0
- stylelint-config-recommended: 11.0.0_stylelint@15.3.0
+ stylelint-config-recommended: 11.0.0(stylelint@15.3.0)
dev: true
- /stylelint-prettier/3.0.0_6i4typnqotoqmooak3ignv77xy:
+ /stylelint-prettier@3.0.0(prettier@2.8.7)(stylelint@15.3.0):
resolution: {integrity: sha512-kIks1xw6np0zElokMT2kP6ar3S4MBoj6vUtPJuND1pFELMpZxVS/0uHPR4HDAVn0WAD3I5oF0IA3qBFxBpMkLg==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -18944,7 +22284,7 @@ packages:
stylelint: 15.3.0
dev: true
- /stylelint-scss/4.6.0_stylelint@15.3.0:
+ /stylelint-scss@4.6.0(stylelint@15.3.0):
resolution: {integrity: sha512-M+E0BQim6G4XEkaceEhfVjP/41C9Klg5/tTPTCQVlgw/jm2tvB+OXJGaU0TDP5rnTCB62aX6w+rT+gqJW/uwjA==}
peerDependencies:
stylelint: ^14.5.1 || ^15.0.0
@@ -18957,7 +22297,7 @@ packages:
stylelint: 15.3.0
dev: true
- /stylelint-webpack-plugin/4.1.0_stylelint@15.3.0:
+ /stylelint-webpack-plugin@4.1.0(stylelint@15.3.0)(webpack@5.76.3):
resolution: {integrity: sha512-Vm8H2uYflIiF9m4BjSBEn9cpqY2zZ0wDHgBxOVM6aWFDd0FvfNoymrSYYOIG5/ZST0NO/0NCXPWcpRVpv79Uew==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -18970,17 +22310,18 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.0.0
stylelint: 15.3.0
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
dev: true
- /stylelint/15.3.0:
+ /stylelint@15.3.0:
resolution: {integrity: sha512-9UYBYk7K9rtlKcTUDZrtntE840sZM00qyYBQHHe7tjwMNUsPsGvR6Fd43IxHEAhRrDLzpy3TVaHb6CReBB3eFg==}
engines: {node: ^14.13.1 || >=16.0.0}
hasBin: true
dependencies:
- '@csstools/css-parser-algorithms': 2.1.0_5vzy4lghjvuzkedkkk4tqwjftm
+ '@csstools/css-parser-algorithms': 2.1.0(@csstools/css-tokenizer@2.1.0)
'@csstools/css-tokenizer': 2.1.0
- '@csstools/media-query-list-parser': 2.0.2_eu5cdbcexitnvbdq5yia3g22um
- '@csstools/selector-specificity': 2.2.0_laljekdltgzr3kfi7r4exvsr5a
+ '@csstools/media-query-list-parser': 2.0.2(@csstools/css-parser-algorithms@2.1.0)(@csstools/css-tokenizer@2.1.0)
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.11)
balanced-match: 2.0.0
colord: 2.9.3
cosmiconfig: 8.1.3
@@ -19007,7 +22348,7 @@ packages:
postcss: 8.4.21
postcss-media-query-parser: 0.2.3
postcss-resolve-nested-selector: 0.1.1
- postcss-safe-parser: 6.0.0_postcss@8.4.21
+ postcss-safe-parser: 6.0.0(postcss@8.4.21)
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
@@ -19023,17 +22364,17 @@ packages:
- supports-color
dev: true
- /stylis/4.1.3:
+ /stylis@4.1.3:
resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==}
dev: false
- /subarg/1.0.0:
+ /subarg@1.0.0:
resolution: {integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==}
dependencies:
minimist: 1.2.8
dev: true
- /sucrase/3.31.0:
+ /sucrase@3.31.0:
resolution: {integrity: sha512-6QsHnkqyVEzYcaiHsOKkzOtOgdJcb8i54x6AV2hDwyZcY9ZyykGZVw6L/YN98xC0evwTP6utsWWrKRaa8QlfEQ==}
engines: {node: '>=8'}
hasBin: true
@@ -19044,39 +22385,52 @@ packages:
mz: 2.7.0
pirates: 4.0.5
ts-interface-checker: 0.1.13
- dev: true
- /superstruct/1.0.3:
+ /sudo-prompt@8.2.5:
+ resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==}
+ dev: false
+ optional: true
+
+ /sudo-prompt@9.1.1:
+ resolution: {integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==}
+ dev: false
+ optional: true
+
+ /sudo-prompt@9.2.1:
+ resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
+ dev: false
+ optional: true
+
+ /superstruct@1.0.3:
resolution: {integrity: sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg==}
engines: {node: '>=14.0.0'}
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
- /supports-hyperlinks/2.3.0:
+ /supports-hyperlinks@2.3.0:
resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
- dev: true
- /supports-hyperlinks/3.0.0:
+ /supports-hyperlinks@3.0.0:
resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==}
engines: {node: '>=14.18'}
dependencies:
@@ -19084,18 +22438,18 @@ packages:
supports-color: 7.2.0
dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svg-parser/2.0.4:
+ /svg-parser@2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
- /svg-tags/1.0.0:
+ /svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
dev: true
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -19108,7 +22462,7 @@ packages:
picocolors: 1.0.0
stable: 0.1.8
- /svgo/3.0.2:
+ /svgo@3.0.2:
resolution: {integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -19121,7 +22475,7 @@ packages:
picocolors: 1.0.0
dev: true
- /swarm-js/0.1.42:
+ /swarm-js@0.1.42:
resolution: {integrity: sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==}
dependencies:
bluebird: 3.7.2
@@ -19141,7 +22495,7 @@ packages:
- utf-8-validate
dev: false
- /synckit/0.8.5:
+ /synckit@0.8.5:
resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
@@ -19149,13 +22503,13 @@ packages:
tslib: 2.5.0
dev: true
- /syntax-error/1.4.0:
+ /syntax-error@1.4.0:
resolution: {integrity: sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==}
dependencies:
acorn-node: 1.8.2
dev: true
- /table/6.8.1:
+ /table@6.8.1:
resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -19166,16 +22520,16 @@ packages:
strip-ansi: 6.0.1
dev: true
- /tailwind-scrollbar/3.0.0_tailwindcss@3.2.7:
+ /tailwind-scrollbar@3.0.0(tailwindcss@3.2.7):
resolution: {integrity: sha512-OkVRX9Q1T769vk979UZ519jhj/j/zNBHql7zPLI+tlhX+ahksYO4ZryWD29lOETDx9Wj1sw+K1OeW7W3+ECQOA==}
engines: {node: '>=12.13.0'}
peerDependencies:
tailwindcss: 3.x
dependencies:
- tailwindcss: 3.2.7_postcss@8.4.21
+ tailwindcss: 3.2.7(postcss@8.4.21)(ts-node@10.9.1)
dev: false
- /tailwindcss/3.2.7_postcss@8.4.21:
+ /tailwindcss@3.2.7(postcss@8.4.21)(ts-node@10.9.1):
resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==}
engines: {node: '>=12.13.0'}
hasBin: true
@@ -19197,10 +22551,10 @@ packages:
object-hash: 3.0.0
picocolors: 1.0.0
postcss: 8.4.21
- postcss-import: 14.1.0_postcss@8.4.21
- postcss-js: 4.0.1_postcss@8.4.21
- postcss-load-config: 3.1.4_postcss@8.4.21
- postcss-nested: 6.0.0_postcss@8.4.21
+ postcss-import: 14.1.0(postcss@8.4.21)
+ postcss-js: 4.0.1(postcss@8.4.21)
+ postcss-load-config: 3.1.4(postcss@8.4.21)(ts-node@10.9.1)
+ postcss-nested: 6.0.0(postcss@8.4.21)
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
quick-lru: 5.1.1
@@ -19208,15 +22562,15 @@ packages:
transitivePeerDependencies:
- ts-node
- /tapable/1.1.3:
+ /tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
- /tapable/2.2.1:
+ /tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- /tar-stream/2.2.0:
+ /tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
dependencies:
@@ -19227,7 +22581,7 @@ packages:
readable-stream: 3.6.2
dev: true
- /tar/4.4.19:
+ /tar@4.4.19:
resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==}
engines: {node: '>=4.5'}
dependencies:
@@ -19240,7 +22594,7 @@ packages:
yallist: 3.1.1
dev: false
- /tar/6.1.11:
+ /tar@6.1.11:
resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==}
engines: {node: '>= 10'}
dependencies:
@@ -19250,17 +22604,66 @@ packages:
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
- dev: true
- /terminal-link/2.1.1:
+ /temp-dir@1.0.0:
+ resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
+ engines: {node: '>=4'}
+ dev: false
+ optional: true
+
+ /temp-dir@2.0.0:
+ resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
+ engines: {node: '>=8'}
+ dev: false
+ optional: true
+
+ /temp@0.8.3:
+ resolution: {integrity: sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==}
+ engines: {'0': node >=0.8.0}
+ dependencies:
+ os-tmpdir: 1.0.2
+ rimraf: 2.2.8
+ dev: false
+ optional: true
+
+ /temp@0.8.4:
+ resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ rimraf: 2.6.3
+ dev: false
+ optional: true
+
+ /tempy@0.3.0:
+ resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ temp-dir: 1.0.0
+ type-fest: 0.3.1
+ unique-string: 1.0.0
+ dev: false
+ optional: true
+
+ /tempy@0.7.1:
+ resolution: {integrity: sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==}
+ engines: {node: '>=10'}
+ dependencies:
+ del: 6.1.1
+ is-stream: 2.0.1
+ temp-dir: 2.0.0
+ type-fest: 0.16.0
+ unique-string: 2.0.0
+ dev: false
+ optional: true
+
+ /terminal-link@2.1.1:
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
engines: {node: '>=8'}
dependencies:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- dev: true
- /terser-webpack-plugin/5.3.7_lcw5yu2lk5db7skz6pr77wcjzm:
+ /terser-webpack-plugin@5.3.7(@swc/core@1.3.42)(webpack@5.76.3):
resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -19282,32 +22685,9 @@ packages:
schema-utils: 3.1.1
serialize-javascript: 6.0.1
terser: 5.16.8
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
-
- /terser-webpack-plugin/5.3.7_webpack@5.76.3:
- resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
- dependencies:
- '@jridgewell/trace-mapping': 0.3.17
- jest-worker: 27.5.1
- schema-utils: 3.1.1
- serialize-javascript: 6.0.1
- terser: 5.16.8
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /terser/5.16.8:
+ /terser@5.16.8:
resolution: {integrity: sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==}
engines: {node: '>=10'}
hasBin: true
@@ -19317,7 +22697,7 @@ packages:
commander: 2.20.3
source-map-support: 0.5.21
- /test-exclude/6.0.0:
+ /test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
dependencies:
@@ -19325,108 +22705,146 @@ packages:
glob: 7.2.3
minimatch: 3.1.2
- /text-encoding-utf-8/1.0.2:
+ /text-encoding-utf-8@1.0.2:
resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==}
dev: false
- /text-extensions/1.9.0:
+ /text-extensions@1.9.0:
resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
engines: {node: '>=0.10'}
dev: true
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- /thenify-all/1.6.0:
+ /thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
dependencies:
thenify: 3.3.1
- dev: true
- /thenify/3.3.1:
+ /thenify@3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
dependencies:
any-promise: 1.3.0
- dev: true
- /through/2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ /throat@5.0.0:
+ resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
+ dev: false
+ optional: true
- /through2/2.0.5:
+ /through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
readable-stream: 2.3.8
xtend: 4.0.2
- dev: true
- /through2/4.0.2:
+ /through2@4.0.2:
resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
dependencies:
readable-stream: 3.6.2
dev: true
- /thunky/1.1.0:
+ /through@2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+
+ /thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
- /timed-out/4.0.1:
+ /timed-out@4.0.1:
resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==}
engines: {node: '>=0.10.0'}
dev: false
- /timers-browserify/1.4.2:
+ /timers-browserify@1.4.2:
resolution: {integrity: sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q==}
engines: {node: '>=0.6.0'}
dependencies:
process: 0.11.10
dev: true
- /tiny-glob/0.2.9:
+ /tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
dependencies:
globalyzer: 0.1.0
globrex: 0.1.2
dev: true
- /tiny-invariant/1.3.1:
+ /tiny-invariant@1.3.1:
resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
- /tiny-warning/1.0.3:
+ /tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- /tmp/0.2.1:
+ /tmp@0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ os-tmpdir: 1.0.2
+ dev: false
+ optional: true
+
+ /tmp@0.2.1:
resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
engines: {node: '>=8.17.0'}
dependencies:
rimraf: 3.0.2
dev: true
- /tmpl/1.0.5:
+ /tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-readable-stream/1.0.0:
+ /to-object-path@0.3.0:
+ resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: false
+ optional: true
+
+ /to-readable-stream@1.0.0:
resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==}
engines: {node: '>=6'}
- /to-regex-range/5.0.1:
+ /to-regex-range@2.1.1:
+ resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ dev: false
+ optional: true
+
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
- /toidentifier/1.0.1:
+ /to-regex@3.0.2:
+ resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
+ dev: false
+ optional: true
+
+ /toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- /totalist/1.1.0:
+ /totalist@1.1.0:
resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==}
engines: {node: '>=6'}
- /tough-cookie/2.5.0:
+ /tough-cookie@2.5.0:
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
engines: {node: '>=0.8'}
dependencies:
@@ -19434,41 +22852,45 @@ packages:
punycode: 2.3.0
dev: false
- /tr46/0.0.3:
+ /tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
dev: false
- /tr46/1.0.1:
+ /tr46@1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
dependencies:
punycode: 2.3.0
dev: true
- /tree-kill/1.2.2:
+ /traverse@0.6.7:
+ resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==}
+ dev: false
+ optional: true
+
+ /tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
dev: true
- /trim-newlines/3.0.1:
+ /trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
dev: true
- /trim-trailing-lines/1.1.4:
+ /trim-trailing-lines@1.1.4:
resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==}
- /trim/0.0.1:
+ /trim@0.0.1:
resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==}
deprecated: Use String.prototype.trim() instead
- /trough/1.0.5:
+ /trough@1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
- /ts-interface-checker/0.1.13:
+ /ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- dev: true
- /ts-jest/29.0.5_q744lk64cx4tbpg7zn4yr5nesi:
+ /ts-jest@29.0.5(@babel/core@7.21.3)(jest@29.5.0)(typescript@4.9.5):
resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -19492,7 +22914,7 @@ packages:
'@babel/core': 7.21.3
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.5.0_m54q5dse6x3xfnwbnypkikpaee
+ jest: 29.5.0(@types/node@18.15.10)(ts-node@10.9.1)
jest-util: 29.5.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -19502,7 +22924,7 @@ packages:
yargs-parser: 21.1.1
dev: false
- /ts-node/10.9.1_tg62r7x7ueatmrzf2qggdlzv6i:
+ /ts-node@10.9.1(@swc/core@1.3.42)(@types/node@18.15.10)(typescript@4.9.5):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -19532,39 +22954,8 @@ packages:
typescript: 4.9.5
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- dev: true
-
- /ts-node/10.9.1_z3vu5dg2hu3jqyh3anri5tms2q:
- resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
- hasBin: true
- 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
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.9
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.3
- '@types/node': 18.15.10
- acorn: 8.8.2
- acorn-walk: 8.2.0
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 4.9.5
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- /tsconfig-paths/3.14.2:
+ /tsconfig-paths@3.14.2:
resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
dependencies:
'@types/json5': 0.0.29
@@ -19573,7 +22964,7 @@ packages:
strip-bom: 3.0.0
dev: true
- /tsconfig-paths/4.1.2:
+ /tsconfig-paths@4.1.2:
resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==}
engines: {node: '>=6'}
dependencies:
@@ -19582,18 +22973,18 @@ packages:
strip-bom: 3.0.0
dev: true
- /tslib/1.14.1:
+ /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- /tslib/2.4.0:
+ /tslib@2.4.0:
resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
dev: false
- /tslib/2.5.0:
+ /tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
- /tsup/6.7.0_typescript@4.9.5:
+ /tsup@6.7.0(ts-node@10.9.1)(typescript@4.9.5):
resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==}
engines: {node: '>=14.18'}
hasBin: true
@@ -19609,7 +23000,7 @@ packages:
typescript:
optional: true
dependencies:
- bundle-require: 4.0.1_esbuild@0.17.14
+ bundle-require: 4.0.1(esbuild@0.17.14)
cac: 6.7.14
chokidar: 3.5.3
debug: 4.3.4
@@ -19617,7 +23008,7 @@ packages:
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 3.1.4
+ postcss-load-config: 3.1.4(postcss@8.4.21)(ts-node@10.9.1)
resolve-from: 5.0.0
rollup: 3.20.2
source-map: 0.8.0-beta.0
@@ -19629,7 +23020,7 @@ packages:
- ts-node
dev: true
- /tsutils/3.21.0_typescript@4.9.5:
+ /tsutils@3.21.0(typescript@4.9.5):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
@@ -19639,88 +23030,117 @@ packages:
typescript: 4.9.5
dev: true
- /tty-browserify/0.0.1:
+ /tty-browserify@0.0.1:
resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==}
dev: true
- /tunnel-agent/0.6.0:
+ /tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
dependencies:
safe-buffer: 5.2.1
dev: false
- /tweetnacl-util/0.15.1:
+ /tweetnacl-util@0.15.1:
resolution: {integrity: sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==}
dev: false
- /tweetnacl/0.14.5:
+ /tweetnacl@0.14.5:
resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
dev: false
- /tweetnacl/1.0.3:
+ /tweetnacl@1.0.3:
resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==}
dev: false
- /type-check/0.3.2:
+ /type-check@0.3.2:
resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.1.2
dev: false
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
- /type-detect/4.0.8:
+ /type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- /type-fest/0.18.1:
+ /type-fest@0.12.0:
+ resolution: {integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==}
+ engines: {node: '>=10'}
+ dev: false
+ optional: true
+
+ /type-fest@0.13.1:
+ resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
+ engines: {node: '>=10'}
+ dev: false
+
+ /type-fest@0.16.0:
+ resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
+ engines: {node: '>=10'}
+ dev: false
+ optional: true
+
+ /type-fest@0.18.1:
resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
engines: {node: '>=10'}
dev: true
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- /type-fest/0.21.3:
+ /type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- /type-fest/0.6.0:
+ /type-fest@0.3.1:
+ resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==}
+ engines: {node: '>=6'}
+ dev: false
+ optional: true
+
+ /type-fest@0.6.0:
resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
engines: {node: '>=8'}
dev: true
- /type-fest/0.8.1:
+ /type-fest@0.7.1:
+ resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
+ engines: {node: '>=8'}
+ dev: false
+ optional: true
+
+ /type-fest@0.8.1:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
dev: true
- /type-fest/2.19.0:
+ /type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- /type-is/1.6.18:
+ /type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
- /type/1.2.0:
+ /type@1.2.0:
resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
dev: false
- /type/2.7.2:
+ /type@2.7.2:
resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
dev: false
- /typed-array-length/1.0.4:
+ /typed-array-length@1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
dependencies:
call-bind: 1.0.2
@@ -19728,57 +23148,68 @@ packages:
is-typed-array: 1.1.10
dev: true
- /typedarray-to-buffer/3.1.5:
+ /typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
dependencies:
is-typedarray: 1.0.0
- /typedarray/0.0.6:
+ /typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
dev: true
- /typescript/4.9.5:
+ /typescript@4.9.5:
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
engines: {node: '>=4.2.0'}
hasBin: true
- /u3/0.1.1:
+ /u3@0.1.1:
resolution: {integrity: sha512-+J5D5ir763y+Am/QY6hXNRlwljIeRMZMGs0cT6qqZVVzzT3X3nFPXVyPOFRMOR4kupB0T8JnCdpWdp6Q/iXn3w==}
dev: false
- /ua-parser-js/0.7.34:
+ /ua-parser-js@0.7.34:
resolution: {integrity: sha512-cJMeh/eOILyGu0ejgTKB95yKT3zOenSe9UGE3vj6WfiOwgGYnmATUsnDixMFvdU+rNMvWih83hrUP8VwhF9yXQ==}
dev: false
- /uint8arrays/2.1.10:
+ /uglify-es@3.3.9:
+ resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==}
+ engines: {node: '>=0.8.0'}
+ deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0
+ hasBin: true
+ dependencies:
+ commander: 2.13.0
+ source-map: 0.6.1
+ dev: false
+ optional: true
+
+ /uint8arrays@2.1.10:
resolution: {integrity: sha512-Q9/hhJa2836nQfEJSZTmr+pg9+cDJS9XEAp7N2Vg5MzL3bK/mkMVfjscRGYruP9jNda6MAdf4QD/y78gSzkp6A==}
dependencies:
multiformats: 9.9.0
dev: false
- /uint8arrays/3.1.1:
+ /uint8arrays@3.1.1:
resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==}
dependencies:
multiformats: 9.9.0
dev: false
- /uint8arrays/4.0.3:
+ /uint8arrays@4.0.3:
resolution: {integrity: sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==}
engines: {node: '>=16.0.0', npm: '>=7.0.0'}
dependencies:
multiformats: 11.0.2
dev: false
- /ultron/1.1.1:
+ /ultron@1.1.1:
resolution: {integrity: sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==}
dev: false
- /umd/3.0.3:
+ /umd@3.0.3:
resolution: {integrity: sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==}
hasBin: true
dev: true
- /unbox-primitive/1.0.2:
+ /unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
call-bind: 1.0.2
@@ -19787,7 +23218,7 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
- /undeclared-identifiers/1.1.3:
+ /undeclared-identifiers@1.1.3:
resolution: {integrity: sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==}
hasBin: true
dependencies:
@@ -19798,36 +23229,36 @@ packages:
xtend: 4.0.2
dev: true
- /underscore/1.12.1:
+ /underscore@1.12.1:
resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==}
dev: false
- /unherit/1.1.3:
+ /unherit@1.1.3:
resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
dependencies:
inherits: 2.0.4
xtend: 4.0.2
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.1.0
- /unicode-match-property-value-ecmascript/2.1.0:
+ /unicode-match-property-value-ecmascript@2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
- /unicode-property-aliases-ecmascript/2.1.0:
+ /unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- /unified/9.2.0:
+ /unified@9.2.0:
resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
dependencies:
'@types/unist': 2.0.6
@@ -19838,7 +23269,7 @@ packages:
trough: 1.0.5
vfile: 4.2.1
- /unified/9.2.2:
+ /unified@9.2.2:
resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
dependencies:
'@types/unist': 2.0.6
@@ -19849,66 +23280,114 @@ packages:
trough: 1.0.5
vfile: 4.2.1
- /unique-string/2.0.0:
+ /union-value@1.0.1:
+ resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
+ dev: false
+ optional: true
+
+ /unique-filename@1.1.1:
+ resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
+ dependencies:
+ unique-slug: 2.0.2
+ dev: false
+ optional: true
+
+ /unique-slug@2.0.2:
+ resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: false
+ optional: true
+
+ /unique-string@1.0.0:
+ resolution: {integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==}
+ engines: {node: '>=4'}
+ dependencies:
+ crypto-random-string: 1.0.0
+ dev: false
+ optional: true
+
+ /unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
dependencies:
crypto-random-string: 2.0.0
- /unist-builder/2.0.3:
+ /unist-builder@2.0.3:
resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==}
- /unist-util-generated/1.1.6:
+ /unist-util-generated@1.1.6:
resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==}
- /unist-util-is/4.1.0:
+ /unist-util-is@4.1.0:
resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
- /unist-util-position/3.1.0:
+ /unist-util-position@3.1.0:
resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==}
- /unist-util-remove-position/2.0.1:
+ /unist-util-remove-position@2.0.1:
resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==}
dependencies:
unist-util-visit: 2.0.3
- /unist-util-remove/2.1.0:
+ /unist-util-remove@2.1.0:
resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==}
dependencies:
unist-util-is: 4.1.0
- /unist-util-stringify-position/2.0.3:
+ /unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
dependencies:
'@types/unist': 2.0.6
- /unist-util-visit-parents/3.1.1:
+ /unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
dependencies:
'@types/unist': 2.0.6
unist-util-is: 4.1.0
- /unist-util-visit/2.0.3:
+ /unist-util-visit@2.0.3:
resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==}
dependencies:
'@types/unist': 2.0.6
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
- /universalify/0.1.2:
+ /universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
dev: false
- /universalify/2.0.0:
+ /universalify@1.0.0:
+ resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==}
+ engines: {node: '>= 10.0.0'}
+ dev: false
+ optional: true
+
+ /universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
- /unpipe/1.0.0:
+ /unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- /update-browserslist-db/1.0.10_browserslist@4.21.5:
+ /unset-value@1.0.0:
+ resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ has-value: 0.3.1
+ isobject: 3.0.1
+ dev: false
+ optional: true
+
+ /update-browserslist-db@1.0.10(browserslist@4.21.5):
resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
hasBin: true
peerDependencies:
@@ -19918,7 +23397,7 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
- /update-notifier/5.1.0:
+ /update-notifier@5.1.0:
resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==}
engines: {node: '>=10'}
dependencies:
@@ -19937,12 +23416,23 @@ packages:
semver-diff: 3.1.1
xdg-basedir: 4.0.0
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.0
- /url-loader/4.1.1_cj4axkvnwozfmnmvgy4d36yxaq:
+ /urix@0.1.0:
+ resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
+ deprecated: Please see https://github.com/lydell/urix#deprecated
+ dev: false
+ optional: true
+
+ /url-join@4.0.0:
+ resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==}
+ dev: false
+ optional: true
+
+ /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.76.3):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -19952,30 +23442,38 @@ packages:
file-loader:
optional: true
dependencies:
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.1
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /url-parse-lax/3.0.0:
+ /url-parse-lax@3.0.0:
resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
engines: {node: '>=4'}
dependencies:
prepend-http: 2.0.0
- /url-set-query/1.0.0:
+ /url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+ dev: false
+ optional: true
+
+ /url-set-query@1.0.0:
resolution: {integrity: sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==}
dev: false
- /url/0.11.0:
+ /url@0.11.0:
resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==}
dependencies:
punycode: 1.3.2
querystring: 0.2.0
dev: true
- /use-composed-ref/1.3.0_react@18.2.0:
+ /use-composed-ref@1.3.0(react@18.2.0):
resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -19983,7 +23481,7 @@ packages:
react: 18.2.0
dev: false
- /use-intl/2.12.0_react@18.2.0:
+ /use-intl@2.12.0(react@18.2.0):
resolution: {integrity: sha512-LcmAqn78o6Ii9wsLERKAXI9QfiSVBzY3u+mSh6YCLUKhDhr7WHqTBfhEV1gZvdwy7mydhwWQUyQ9Zy5XHuUOAQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -19994,7 +23492,7 @@ packages:
react: 18.2.0
dev: false
- /use-isomorphic-layout-effect/1.1.2_2thlp7g7odiqm7dwhn3rlhxaa4:
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -20007,7 +23505,7 @@ packages:
react: 18.2.0
dev: false
- /use-latest/1.2.1_2thlp7g7odiqm7dwhn3rlhxaa4:
+ /use-latest@1.2.1(@types/react@18.0.30)(react@18.2.0):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -20018,10 +23516,10 @@ packages:
dependencies:
'@types/react': 18.0.30
react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2_2thlp7g7odiqm7dwhn3rlhxaa4
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.0.30)(react@18.2.0)
dev: false
- /use-sync-external-store/1.2.0_react@18.2.0:
+ /use-sync-external-store@1.2.0(react@18.2.0):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -20029,7 +23527,13 @@ packages:
react: 18.2.0
dev: false
- /utf-8-validate/5.0.10:
+ /use@3.1.1:
+ resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+ optional: true
+
+ /utf-8-validate@5.0.10:
resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
engines: {node: '>=6.14.2'}
requiresBuild: true
@@ -20037,20 +23541,20 @@ packages:
node-gyp-build: 4.6.0
dev: false
- /utf8/3.0.0:
+ /utf8@3.0.0:
resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==}
dev: false
- /util-deprecate/1.0.2:
+ /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /util/0.10.3:
+ /util@0.10.3:
resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==}
dependencies:
inherits: 2.0.1
dev: true
- /util/0.12.5:
+ /util@0.12.5:
resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
dependencies:
inherits: 2.0.4
@@ -20059,40 +23563,46 @@ packages:
is-typed-array: 1.1.10
which-typed-array: 1.1.9
- /utila/0.4.0:
+ /utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
- /utility-types/3.10.0:
+ /utility-types@3.10.0:
resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
engines: {node: '>= 4'}
- /utils-merge/1.0.1:
+ /utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- /uuid/3.4.0:
+ /uuid@3.4.0:
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
hasBin: true
dev: false
- /uuid/8.3.2:
+ /uuid@7.0.3:
+ resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
+ hasBin: true
+ dev: false
+ optional: true
+
+ /uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- /uuid/9.0.0:
+ /uuid@9.0.0:
resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
hasBin: true
dev: false
- /v8-compile-cache-lib/3.0.1:
+ /v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- /v8-compile-cache/2.3.0:
+ /v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
dev: true
- /v8-to-istanbul/9.1.0:
+ /v8-to-istanbul@9.1.0:
resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==}
engines: {node: '>=10.12.0'}
dependencies:
@@ -20100,46 +23610,58 @@ packages:
'@types/istanbul-lib-coverage': 2.0.4
convert-source-map: 1.9.0
- /validate-npm-package-license/3.0.4:
+ /valid-url@1.0.9:
+ resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==}
+ dev: false
+ optional: true
+
+ /validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
dev: true
- /validate-npm-package-name/5.0.0:
+ /validate-npm-package-name@3.0.0:
+ resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==}
+ dependencies:
+ builtins: 1.0.3
+ dev: false
+ optional: true
+
+ /validate-npm-package-name@5.0.0:
resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
builtins: 5.0.1
- /validator/13.9.0:
+ /validator@13.9.0:
resolution: {integrity: sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==}
engines: {node: '>= 0.10'}
dev: false
- /value-equal/1.0.1:
+ /value-equal@1.0.1:
resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==}
- /varint/5.0.2:
+ /varint@5.0.2:
resolution: {integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==}
dev: false
- /varint/6.0.0:
+ /varint@6.0.0:
resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
dev: false
- /varuint-bitcoin/1.1.2:
+ /varuint-bitcoin@1.1.2:
resolution: {integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==}
dependencies:
safe-buffer: 5.2.1
dev: false
- /vary/1.1.2:
+ /vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- /verror/1.10.0:
+ /verror@1.10.0:
resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
engines: {'0': node >=0.6.0}
dependencies:
@@ -20148,16 +23670,16 @@ packages:
extsprintf: 1.3.0
dev: false
- /vfile-location/3.2.0:
+ /vfile-location@3.2.0:
resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==}
- /vfile-message/2.0.4:
+ /vfile-message@2.0.4:
resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
dependencies:
'@types/unist': 2.0.6
unist-util-stringify-position: 2.0.3
- /vfile/4.2.1:
+ /vfile@4.2.1:
resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
dependencies:
'@types/unist': 2.0.6
@@ -20165,11 +23687,16 @@ packages:
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
- /vm-browserify/1.1.2:
+ /vlq@1.0.1:
+ resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
+ dev: false
+ optional: true
+
+ /vm-browserify@1.1.2:
resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
dev: true
- /wait-on/6.0.1:
+ /wait-on@6.0.1:
resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==}
engines: {node: '>=10.0.0'}
hasBin: true
@@ -20182,41 +23709,56 @@ packages:
transitivePeerDependencies:
- debug
- /walker/1.0.8:
+ /walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies:
makeerror: 1.0.12
- /watchpack/2.4.0:
+ /watchpack@2.4.0:
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
- /wbuf/1.7.3:
+ /wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
minimalistic-assert: 1.0.1
- /web-did-resolver/2.0.22:
+ /wcwidth@1.0.1:
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ dependencies:
+ defaults: 1.0.4
+ dev: false
+ optional: true
+
+ /web-did-resolver@2.0.22:
resolution: {integrity: sha512-JktHY9dd8z+xQO/UcTXUiuGCPaxWnu5J/95KWNs19LikeL0+m2qgT0pdgQSW1yxrUSqBjEx/kTnZj3NrtzYBNQ==}
dependencies:
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
did-resolver: 4.0.1
transitivePeerDependencies:
- encoding
dev: false
- /web-namespaces/1.1.4:
+ /web-encoding@1.1.5:
+ resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==}
+ dependencies:
+ util: 0.12.5
+ optionalDependencies:
+ '@zxing/text-encoding': 0.9.0
+ dev: false
+
+ /web-namespaces@1.1.4:
resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==}
- /web-streams-polyfill/3.2.1:
+ /web-streams-polyfill@3.2.1:
resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'}
dev: false
- /web3-bzz/1.9.0:
+ /web3-bzz@1.9.0:
resolution: {integrity: sha512-9Zli9dikX8GdHwBb5/WPzpSVuy3EWMKY3P4EokCQra31fD7DLizqAAaTUsFwnK7xYkw5ogpHgelw9uKHHzNajg==}
engines: {node: '>=8.0.0'}
requiresBuild: true
@@ -20230,7 +23772,7 @@ packages:
- utf-8-validate
dev: false
- /web3-core-helpers/1.9.0:
+ /web3-core-helpers@1.9.0:
resolution: {integrity: sha512-NeJzylAp9Yj9xAt2uTT+kyug3X0DLnfBdnAcGZuY6HhoNPDIfQRA9CkJjLngVRlGTLZGjNp9x9eR+RyZQgUlXg==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20238,7 +23780,7 @@ packages:
web3-utils: 1.9.0
dev: false
- /web3-core-method/1.9.0:
+ /web3-core-method@1.9.0:
resolution: {integrity: sha512-sswbNsY2xRBBhGeaLt9c/eDc+0yDDhi6keUBAkgIRa9ueSx/VKzUY9HMqiV6bXDcGT2fJyejq74FfEB4lc/+/w==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20249,14 +23791,14 @@ packages:
web3-utils: 1.9.0
dev: false
- /web3-core-promievent/1.9.0:
+ /web3-core-promievent@1.9.0:
resolution: {integrity: sha512-PHG1Mn23IGwMZhnPDN8dETKypqsFbHfiyRqP+XsVMPmTHkVfzDQTCBU/c2r6hUktBDoGKut5xZQpGfhFk71KbQ==}
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.4
dev: false
- /web3-core-requestmanager/1.9.0:
+ /web3-core-requestmanager@1.9.0:
resolution: {integrity: sha512-hcJ5PCtTIJpj+8qWxoseqlCovDo94JJjTX7dZOLXgwp8ah7E3WRYozhGyZocerx+KebKyg1mCQIhkDpMwjfo9Q==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20270,7 +23812,7 @@ packages:
- supports-color
dev: false
- /web3-core-subscriptions/1.9.0:
+ /web3-core-subscriptions@1.9.0:
resolution: {integrity: sha512-MaIo29yz7hTV8X8bioclPDbHFOVuHmnbMv+D3PDH12ceJFJAXGyW8GL5KU1DYyWIj4TD1HM4WknyVA/YWBiiLA==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20278,7 +23820,7 @@ packages:
web3-core-helpers: 1.9.0
dev: false
- /web3-core/1.9.0:
+ /web3-core@1.9.0:
resolution: {integrity: sha512-DZ+TPmq/ZLlx4LSVzFgrHCP/QFpKDbGWO4HoquZSdu24cjk5SZ+FEU1SZB2OaK3/bgBh+25mRbmv8y56ysUu1w==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20294,7 +23836,7 @@ packages:
- supports-color
dev: false
- /web3-eth-abi/1.9.0:
+ /web3-eth-abi@1.9.0:
resolution: {integrity: sha512-0BLQ3FKMrzJkA930jOX3fMaybAyubk06HChclLpiR0NWmgWXm1tmBrJdkyRy2ZTZpmfuZc9xTFRfl0yZID1voA==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20302,7 +23844,7 @@ packages:
web3-utils: 1.9.0
dev: false
- /web3-eth-accounts/1.9.0:
+ /web3-eth-accounts@1.9.0:
resolution: {integrity: sha512-VeIZVevmnSll0AC1k5F/y398ZE89d1SRuYk8IewLUhL/tVAsFEsjl2SGgm0+aDcHmgPrkW+qsCJ+C7rWg/N4ZA==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20321,7 +23863,7 @@ packages:
- supports-color
dev: false
- /web3-eth-contract/1.9.0:
+ /web3-eth-contract@1.9.0:
resolution: {integrity: sha512-+j26hpSaEtAdUed0TN5rnc+YZOcjPxMjFX4ZBKatvFkImdbVv/tzTvcHlltubSpgb2ZLyZ89lSL6phKYwd2zNQ==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20338,7 +23880,7 @@ packages:
- supports-color
dev: false
- /web3-eth-ens/1.9.0:
+ /web3-eth-ens@1.9.0:
resolution: {integrity: sha512-LOJZeN+AGe9arhuExnrPPFYQr4WSxXEkpvYIlst/joOEUNLDwfndHnJIK6PI5mXaYSROBtTx6erv+HupzGo7vA==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20355,7 +23897,7 @@ packages:
- supports-color
dev: false
- /web3-eth-iban/1.9.0:
+ /web3-eth-iban@1.9.0:
resolution: {integrity: sha512-jPAm77PuEs1kE/UrrBFJdPD2PN42pwfXA0gFuuw35bZezhskYML9W4QCxcqnUtceyEA4FUn7K2qTMuCk+23fog==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20363,7 +23905,7 @@ packages:
web3-utils: 1.9.0
dev: false
- /web3-eth-personal/1.9.0:
+ /web3-eth-personal@1.9.0:
resolution: {integrity: sha512-r9Ldo/luBqJlv1vCUEQnUS+C3a3ZdbYxVHyfDkj6RWMyCqqo8JE41HWE+pfa0RmB1xnGL2g8TbYcHcqItck/qg==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20378,7 +23920,7 @@ packages:
- supports-color
dev: false
- /web3-eth/1.9.0:
+ /web3-eth@1.9.0:
resolution: {integrity: sha512-c5gSWk9bLNr6VPATHmZ1n7LTIefIZQnJMzfnvkoBcIFGKJbGmsuRhv6lEXsKdAO/FlqYnSbaw3fOq1fVFiIOFQ==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20399,7 +23941,7 @@ packages:
- supports-color
dev: false
- /web3-net/1.9.0:
+ /web3-net@1.9.0:
resolution: {integrity: sha512-L+fDZFgrLM5Y15aonl2q6L+RvfaImAngmC0Jv45hV2FJ5IfRT0/2ob9etxZmvEBWvOpbqSvghfOhJIT3XZ37Pg==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20411,19 +23953,19 @@ packages:
- supports-color
dev: false
- /web3-providers-http/1.9.0:
+ /web3-providers-http@1.9.0:
resolution: {integrity: sha512-5+dMNDAE0rRFz6SJpfnBqlVi2J5bB/Ivr2SanMt2YUrkxW5t8betZbzVwRkTbwtUvkqgj3xeUQzqpOttiv+IqQ==}
engines: {node: '>=8.0.0'}
dependencies:
abortcontroller-polyfill: 1.7.5
- cross-fetch: 3.1.5_iqh6pvemik3ebzneirvlerj7uq
+ cross-fetch: 3.1.5(patch_hash=iqh6pvemik3ebzneirvlerj7uq)
es6-promise: 4.2.8
web3-core-helpers: 1.9.0
transitivePeerDependencies:
- encoding
dev: false
- /web3-providers-ipc/1.9.0:
+ /web3-providers-ipc@1.9.0:
resolution: {integrity: sha512-cPXU93Du40HCylvjaa5x62DbnGqH+86HpK/+kMcFIzF6sDUBhKpag2tSbYhGbj7GMpfkmDTUiiMLdWnFV6+uBA==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20431,7 +23973,7 @@ packages:
web3-core-helpers: 1.9.0
dev: false
- /web3-providers-ws/1.9.0:
+ /web3-providers-ws@1.9.0:
resolution: {integrity: sha512-JRVsnQZ7j2k1a2yzBNHe39xqk1ijOv01dfIBFw52VeEkSRzvrOcsPIM/ttSyBuJqt70ntMxXY0ekCrqfleKH/w==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20442,7 +23984,7 @@ packages:
- supports-color
dev: false
- /web3-shh/1.9.0:
+ /web3-shh@1.9.0:
resolution: {integrity: sha512-bIBZlralgz4ICCrwkefB2nPPJWfx28NuHIpjB7d9ADKynElubQuqudYhKtSEkKXACuME/BJm0pIFJcJs/gDnMg==}
engines: {node: '>=8.0.0'}
requiresBuild: true
@@ -20456,7 +23998,7 @@ packages:
- supports-color
dev: false
- /web3-utils/1.9.0:
+ /web3-utils@1.9.0:
resolution: {integrity: sha512-p++69rCNNfu2jM9n5+VD/g26l+qkEOQ1m6cfRQCbH8ZRrtquTmrirJMgTmyOoax5a5XRYOuws14aypCOs51pdQ==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -20469,7 +24011,7 @@ packages:
utf8: 3.0.0
dev: false
- /web3/1.9.0:
+ /web3@1.9.0:
resolution: {integrity: sha512-E9IvVy/d2ozfQQsCiV+zh/LmlZGv9fQxI0UedDVjm87yOKf4AYbBNEn1iWtHveiGzAk2CEMZMUzAZzaQNSSYog==}
engines: {node: '>=8.0.0'}
requiresBuild: true
@@ -20488,7 +24030,7 @@ packages:
- utf-8-validate
dev: false
- /webcrypto-core/1.7.7:
+ /webcrypto-core@1.7.7:
resolution: {integrity: sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==}
dependencies:
'@peculiar/asn1-schema': 2.3.6
@@ -20498,34 +24040,34 @@ packages:
tslib: 2.5.0
dev: false
- /webcrypto-shim/0.1.7:
+ /webcrypto-shim@0.1.7:
resolution: {integrity: sha512-JAvAQR5mRNRxZW2jKigWMjCMkjSdmP5cColRP1U/pTg69VgHXEi1orv5vVpJ55Zc5MIaPc1aaurzd9pjv2bveg==}
dev: false
- /webextension-polyfill-ts/0.22.0:
+ /webextension-polyfill-ts@0.22.0:
resolution: {integrity: sha512-3P33ClMwZ/qiAT7UH1ROrkRC1KM78umlnPpRhdC/292UyoTTW9NcjJEqDsv83HbibcTB6qCtpVeuB2q2/oniHQ==}
deprecated: This project has moved to @types/webextension-polyfill
dependencies:
webextension-polyfill: 0.7.0
- /webextension-polyfill-ts/0.25.0:
+ /webextension-polyfill-ts@0.25.0:
resolution: {integrity: sha512-ikQhwwHYkpBu00pFaUzIKY26I6L87DeRI+Q6jBT1daZUNuu8dSrg5U9l/ZbqdaQ1M/TTSPKeAa3kolP5liuedw==}
deprecated: This project has moved to @types/webextension-polyfill
dependencies:
webextension-polyfill: 0.7.0
- /webextension-polyfill/0.7.0:
+ /webextension-polyfill@0.7.0:
resolution: {integrity: sha512-su48BkMLxqzTTvPSE1eWxKToPS2Tv5DLGxKexLEVpwFd6Po6N8hhSLIvG6acPAg7qERoEaDL+Y5HQJeJeml5Aw==}
- /webidl-conversions/3.0.1:
+ /webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
dev: false
- /webidl-conversions/4.0.2:
+ /webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
dev: true
- /webpack-bundle-analyzer/4.8.0:
+ /webpack-bundle-analyzer@4.8.0:
resolution: {integrity: sha512-ZzoSBePshOKhr+hd8u6oCkZVwpVaXgpw23ScGLFpR6SjYI7+7iIWYarjN6OEYOfRt8o7ZyZZQk0DuMizJ+LEIg==}
engines: {node: '>= 10.13.0'}
hasBin: true
@@ -20544,7 +24086,7 @@ packages:
- bufferutil
- utf-8-validate
- /webpack-cli/5.0.1_webpack@5.76.3:
+ /webpack-cli@5.0.1(webpack@5.76.3):
resolution: {integrity: sha512-S3KVAyfwUqr0Mo/ur3NzIp6jnerNpo7GUO6so51mxLi1spqsA17YcMXy0WOIJtBSnj748lthxC6XLbNKh/ZC+A==}
engines: {node: '>=14.15.0'}
hasBin: true
@@ -20562,9 +24104,9 @@ packages:
optional: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 2.0.1_zx7uamsgh45bm3d7mxhr5qnje4
- '@webpack-cli/info': 2.0.1_zx7uamsgh45bm3d7mxhr5qnje4
- '@webpack-cli/serve': 2.0.1_zx7uamsgh45bm3d7mxhr5qnje4
+ '@webpack-cli/configtest': 2.0.1(webpack-cli@5.0.1)(webpack@5.76.3)
+ '@webpack-cli/info': 2.0.1(webpack-cli@5.0.1)(webpack@5.76.3)
+ '@webpack-cli/serve': 2.0.1(webpack-cli@5.0.1)(webpack@5.76.3)
colorette: 2.0.19
commander: 9.5.0
cross-spawn: 7.0.3
@@ -20573,10 +24115,10 @@ packages:
import-local: 3.1.0
interpret: 3.1.1
rechoir: 0.8.0
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
webpack-merge: 5.8.0
- /webpack-dev-middleware/5.3.3_webpack@5.76.3:
+ /webpack-dev-middleware@5.3.3(webpack@5.76.3):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -20587,9 +24129,9 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.0.0
- webpack: 5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /webpack-dev-server/4.13.1_webpack@5.76.3:
+ /webpack-dev-server@4.13.1(webpack@5.76.3):
resolution: {integrity: sha512-5tWg00bnWbYgkN+pd5yISQKDejRBYGEw15RaEEslH+zdbNDxxaZvEAO2WulaSaFKb5n3YG8JXsGaDsut1D0xdA==}
engines: {node: '>= 12.13.0'}
hasBin: true
@@ -20619,7 +24161,7 @@ packages:
express: 4.18.2
graceful-fs: 4.2.11
html-entities: 2.3.3
- http-proxy-middleware: 2.0.6_@types+express@4.17.17
+ http-proxy-middleware: 2.0.6(@types/express@4.17.17)
ipaddr.js: 2.0.1
launch-editor: 2.6.0
open: 8.4.2
@@ -20630,8 +24172,8 @@ packages:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.76.3
- webpack-dev-middleware: 5.3.3_webpack@5.76.3
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
+ webpack-dev-middleware: 5.3.3(webpack@5.76.3)
ws: 8.13.0
transitivePeerDependencies:
- bufferutil
@@ -20639,57 +24181,18 @@ packages:
- supports-color
- utf-8-validate
- /webpack-merge/5.8.0:
+ /webpack-merge@5.8.0:
resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
engines: {node: '>=10.0.0'}
dependencies:
clone-deep: 4.0.1
wildcard: 2.0.0
- /webpack-sources/3.2.3:
+ /webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- /webpack/5.76.3:
- resolution: {integrity: sha512-18Qv7uGPU8b2vqGeEEObnfICyw2g39CHlDEK4I7NK13LOur1d0HGmGNKGT58Eluwddpn3oEejwvBPoP4M7/KSA==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- dependencies:
- '@types/eslint-scope': 3.7.4
- '@types/estree': 0.0.51
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.8.2
- acorn-import-assertions: 1.8.0_acorn@8.8.2
- browserslist: 4.21.5
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.12.0
- es-module-lexer: 0.9.3
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.1.1
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.7_webpack@5.76.3
- watchpack: 2.4.0
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
- /webpack/5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa:
+ /webpack@5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1):
resolution: {integrity: sha512-18Qv7uGPU8b2vqGeEEObnfICyw2g39CHlDEK4I7NK13LOur1d0HGmGNKGT58Eluwddpn3oEejwvBPoP4M7/KSA==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -20705,7 +24208,7 @@ packages:
'@webassemblyjs/wasm-edit': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
acorn: 8.8.2
- acorn-import-assertions: 1.8.0_acorn@8.8.2
+ acorn-import-assertions: 1.8.0(acorn@8.8.2)
browserslist: 4.21.5
chrome-trace-event: 1.0.3
enhanced-resolve: 5.12.0
@@ -20720,16 +24223,16 @@ packages:
neo-async: 2.6.2
schema-utils: 3.1.1
tapable: 2.2.1
- terser-webpack-plugin: 5.3.7_lcw5yu2lk5db7skz6pr77wcjzm
+ terser-webpack-plugin: 5.3.7(@swc/core@1.3.42)(webpack@5.76.3)
watchpack: 2.4.0
- webpack-cli: 5.0.1_webpack@5.76.3
+ webpack-cli: 5.0.1(webpack@5.76.3)
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- /webpackbar/5.0.2_webpack@5.76.3:
+ /webpackbar@5.0.2(webpack@5.76.3):
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -20739,9 +24242,9 @@ packages:
consola: 2.15.3
pretty-time: 1.1.0
std-env: 3.3.2
- webpack: 5.76.3_wfd5rlvlmpbpyqtrbwbe2u7vpa
+ webpack: 5.76.3(@swc/core@1.3.42)(webpack-cli@5.0.1)
- /websocket-driver/0.7.4:
+ /websocket-driver@0.7.4:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
engines: {node: '>=0.8.0'}
dependencies:
@@ -20749,11 +24252,11 @@ packages:
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
- /websocket-extensions/0.1.4:
+ /websocket-extensions@0.1.4:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
- /websocket/1.0.34:
+ /websocket@1.0.34:
resolution: {integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==}
engines: {node: '>=4.0.0'}
dependencies:
@@ -20767,14 +24270,19 @@ packages:
- supports-color
dev: false
- /whatwg-url/5.0.0:
+ /whatwg-fetch@3.6.2:
+ resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
+ dev: false
+ optional: true
+
+ /whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
dev: false
- /whatwg-url/7.1.0:
+ /whatwg-url@7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
dependencies:
lodash.sortby: 4.7.0
@@ -20782,7 +24290,7 @@ packages:
webidl-conversions: 4.0.2
dev: true
- /which-boxed-primitive/1.0.2:
+ /which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
is-bigint: 1.0.4
@@ -20792,7 +24300,7 @@ packages:
is-symbol: 1.0.4
dev: true
- /which-collection/1.0.1:
+ /which-collection@1.0.1:
resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
dependencies:
is-map: 2.0.2
@@ -20801,7 +24309,12 @@ packages:
is-weakset: 2.0.2
dev: true
- /which-typed-array/1.1.9:
+ /which-module@2.0.0:
+ resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==}
+ dev: false
+ optional: true
+
+ /which-typed-array@1.1.9:
resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -20812,48 +24325,52 @@ packages:
has-tostringtag: 1.0.0
is-typed-array: 1.1.10
- /which/1.3.1:
+ /which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
dependencies:
isexe: 2.0.0
- /which/2.0.2:
+ /which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: 2.0.0
- /widest-line/3.1.0:
+ /widest-line@3.1.0:
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
engines: {node: '>=8'}
dependencies:
string-width: 4.2.3
- /widest-line/4.0.1:
+ /widest-line@4.0.1:
resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
engines: {node: '>=12'}
dependencies:
string-width: 5.1.2
- /wildcard/2.0.0:
+ /wildcard@2.0.0:
resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
- /word-wrap/1.2.3:
+ /wonka@4.0.15:
+ resolution: {integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==}
+ dev: false
+ optional: true
+
+ /word-wrap@1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
- /wrap-ansi/6.2.0:
+ /wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- dev: true
- /wrap-ansi/7.0.0:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -20861,7 +24378,7 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
- /wrap-ansi/8.1.0:
+ /wrap-ansi@8.1.0:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
engines: {node: '>=12'}
dependencies:
@@ -20869,10 +24386,19 @@ packages:
string-width: 5.1.2
strip-ansi: 7.0.1
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /write-file-atomic/3.0.3:
+ /write-file-atomic@2.4.3:
+ resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
+ dependencies:
+ graceful-fs: 4.2.11
+ imurmurhash: 0.1.4
+ signal-exit: 3.0.7
+ dev: false
+ optional: true
+
+ /write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
dependencies:
imurmurhash: 0.1.4
@@ -20880,14 +24406,14 @@ packages:
signal-exit: 3.0.7
typedarray-to-buffer: 3.1.5
- /write-file-atomic/4.0.2:
+ /write-file-atomic@4.0.2:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
dependencies:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- /write-file-atomic/5.0.0:
+ /write-file-atomic@5.0.0:
resolution: {integrity: sha512-R7NYMnHSlV42K54lwY9lvW6MnSm1HSJqZL3xiSgi9E7//FYaI74r2G0rd+/X6VAMkHEdzxQaU5HUOXWUz5kA/w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
@@ -20895,7 +24421,7 @@ packages:
signal-exit: 3.0.7
dev: true
- /ws/3.3.3:
+ /ws@3.3.3:
resolution: {integrity: sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==}
peerDependencies:
bufferutil: ^4.0.1
@@ -20911,7 +24437,22 @@ packages:
ultron: 1.1.1
dev: false
- /ws/7.4.6:
+ /ws@6.2.2:
+ resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dependencies:
+ async-limiter: 1.0.1
+ dev: false
+ optional: true
+
+ /ws@7.4.6:
resolution: {integrity: sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==}
engines: {node: '>=8.3.0'}
peerDependencies:
@@ -20923,7 +24464,7 @@ packages:
utf-8-validate:
optional: true
- /ws/7.5.9:
+ /ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
peerDependencies:
@@ -20935,7 +24476,7 @@ packages:
utf-8-validate:
optional: true
- /ws/8.13.0:
+ /ws@8.13.0:
resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -20947,7 +24488,7 @@ packages:
utf-8-validate:
optional: true
- /ws/8.5.0:
+ /ws@8.5.0:
resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -20960,17 +24501,26 @@ packages:
optional: true
dev: false
- /xdg-basedir/4.0.0:
+ /xcode@3.0.1:
+ resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
+ engines: {node: '>=10.0.0'}
+ dependencies:
+ simple-plist: 1.3.1
+ uuid: 7.0.3
+ dev: false
+ optional: true
+
+ /xdg-basedir@4.0.0:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
engines: {node: '>=8'}
- /xhr-request-promise/0.1.3:
+ /xhr-request-promise@0.1.3:
resolution: {integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==}
dependencies:
xhr-request: 1.1.0
dev: false
- /xhr-request/1.1.0:
+ /xhr-request@1.1.0:
resolution: {integrity: sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==}
dependencies:
buffer-to-arraybuffer: 0.0.5
@@ -20982,7 +24532,7 @@ packages:
xhr: 2.6.0
dev: false
- /xhr/2.6.0:
+ /xhr@2.6.0:
resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==}
dependencies:
global: 4.4.0
@@ -20991,51 +24541,110 @@ packages:
xtend: 4.0.2
dev: false
- /xml-js/1.6.11:
+ /xml-js@1.6.11:
resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
hasBin: true
dependencies:
sax: 1.2.4
dev: false
- /xtend/4.0.2:
+ /xml2js@0.4.23:
+ resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ sax: 1.2.4
+ xmlbuilder: 11.0.1
+ dev: false
+ optional: true
+
+ /xmlbuilder@11.0.1:
+ resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
+ engines: {node: '>=4.0'}
+ dev: false
+ optional: true
+
+ /xmlbuilder@14.0.0:
+ resolution: {integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==}
+ engines: {node: '>=8.0'}
+ dev: false
+ optional: true
+
+ /xmlbuilder@15.1.1:
+ resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
+ engines: {node: '>=8.0'}
+ dev: false
+ optional: true
+
+ /xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- /y18n/5.0.8:
+ /y18n@4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ dev: false
+ optional: true
+
+ /y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
- /yaeti/0.0.6:
+ /yaeti@0.0.6:
resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
engines: {node: '>=0.10.32'}
dev: false
- /yallist/3.1.1:
+ /yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- /yallist/4.0.0:
+ /yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- /yaml/2.2.1:
+ /yaml@2.2.1:
resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
engines: {node: '>= 14'}
dev: true
- /yargs-parser/20.2.9:
+ /yargs-parser@18.1.3:
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: false
+ optional: true
+
+ /yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
dev: true
- /yargs-parser/21.1.1:
+ /yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- /yargs/16.2.0:
+ /yargs@15.4.1:
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.0
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+ dev: false
+ optional: true
+
+ /yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
dependencies:
@@ -21048,7 +24657,7 @@ packages:
yargs-parser: 20.2.9
dev: true
- /yargs/17.7.1:
+ /yargs@17.7.1:
resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==}
engines: {node: '>=12'}
dependencies:
@@ -21060,15 +24669,15 @@ packages:
y18n: 5.0.8
yargs-parser: 21.1.1
- /yn/3.1.1:
+ /yn@3.1.1:
resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
engines: {node: '>=6'}
- /yocto-queue/0.1.0:
+ /yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- /z-schema/5.0.5:
+ /z-schema@5.0.5:
resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==}
engines: {node: '>=8.0.0'}
hasBin: true
@@ -21080,7 +24689,7 @@ packages:
commander: 9.5.0
dev: false
- /zustand/4.3.6_react@18.2.0:
+ /zustand@4.3.6(react@18.2.0):
resolution: {integrity: sha512-6J5zDxjxLE+yukC2XZWf/IyWVKnXT9b9HUv09VJ/bwGCpKNcaTqp7Ws28Xr8jnbvnZcdRaidztAPsXFBIqufiw==}
engines: {node: '>=12.7.0'}
peerDependencies:
@@ -21093,20 +24702,21 @@ packages:
optional: true
dependencies:
react: 18.2.0
- use-sync-external-store: 1.2.0_react@18.2.0
+ use-sync-external-store: 1.2.0(react@18.2.0)
dev: false
- /zwitch/1.0.5:
+ /zwitch@1.0.5:
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
- github.com/uport-project/EcdsaSecp256k1RecoverySignature2020/ab0db52de6f4e6663ef271a48009ba26e688ef9b:
+ github.com/uport-project/EcdsaSecp256k1RecoverySignature2020/ab0db52de6f4e6663ef271a48009ba26e688ef9b(expo@48.0.10)(react-native@0.71.6):
resolution: {tarball: https://codeload.github.com/uport-project/EcdsaSecp256k1RecoverySignature2020/tar.gz/ab0db52de6f4e6663ef271a48009ba26e688ef9b}
+ id: github.com/uport-project/EcdsaSecp256k1RecoverySignature2020/ab0db52de6f4e6663ef271a48009ba26e688ef9b
name: '@veramo-community/lds-ecdsa-secp256k1-recovery2020'
version: 0.0.8
dependencies:
'@bitauth/libauth': 1.19.1
- '@digitalcredentials/jsonld': 5.2.1
- '@digitalcredentials/jsonld-signatures': 9.3.1
+ '@digitalcredentials/jsonld': 5.2.1(expo@48.0.10)(react-native@0.71.6)
+ '@digitalcredentials/jsonld-signatures': 9.3.1(expo@48.0.10)(react-native@0.71.6)
'@ethersproject/transactions': 5.7.0
'@trust/keyto': 1.0.1
base64url: 3.0.1