From 837ef510f3be9432d9dc7549a044e4d696157ecf Mon Sep 17 00:00:00 2001 From: Hedi EDELBLOUTE Date: Tue, 5 Sep 2023 09:01:30 +0200 Subject: [PATCH 1/4] feat: injective integration remove build unsigned method remove duplicated methods edit mingasprice add changeset remove useless micmac add unit tests add icon + pr suggestions remove unused lib edit comment update sortKeys method + unit tests add nano app version update gas add abandonseed edit min set fees to integer test bot remove estimation from sign op trial 2 logs attempt to enable expert mode on init apply pr remarks unit tests add FF add unit tests fix lint fix lint fix bot hook fix injective first tx apply pr remarks add comm add injective integration tests error management --- .changeset/lemon-taxis-applaud.md | 11 + apps/cli/src/live-common-setup-base.ts | 1 + apps/ledger-live-desktop/cryptoassets.md | 3 +- .../live-common-set-supported-currencies.ts | 1 + .../AddAccounts/steps/StepChooseCurrency.tsx | 3 + .../static/i18n/en/app.json | 4 + .../src/live-common-setup.ts | 1 + .../src/locales/en/common.json | 4 + .../screens/AddAccounts/01-SelectCrypto.tsx | 3 + libs/coin-framework/package.json | 2 + libs/coin-framework/src/bot/types.ts | 10 + libs/env/src/env.ts | 2 +- libs/ledger-live-common/package.json | 7 +- .../src/__tests__/test-helpers/environment.ts | 1 + libs/ledger-live-common/src/bot/engine.ts | 6 + .../src/config/defaultConfig.ts | 4 + .../sortByMarketcap.test.ts.snap | 1 + .../src/data/icons/svg/INJ.svg | 16 + .../src/families/cosmos/api/Cosmos.test.ts | 71 +- .../src/families/cosmos/api/Cosmos.ts | 43 +- .../src/families/cosmos/chain/Injective.ts | 21 + .../src/families/cosmos/chain/chain.ts | 4 + .../src/families/cosmos/chain/cosmosBase.ts | 1 + .../injective.integration.test.ts.snap | 65 + .../datasets/injective.integration.test.ts | 14 + .../src/families/cosmos/datasets/injective.ts | 84 + .../cosmos/js-buildTransaction.test.ts | 840 +++- .../families/cosmos/js-buildTransaction.ts | 279 +- .../cosmos/js-prepareTransaction.test.ts | 10 +- .../families/cosmos/js-prepareTransaction.ts | 99 +- .../src/families/cosmos/js-signOperation.ts | 68 +- .../src/families/cosmos/specs.ts | 51 +- .../src/families/cosmos/types.ts | 5 + .../src/featureFlags/defaultFeatures.ts | 1 + .../packages/cryptoassets/src/abandonseed.ts | 1 + .../packages/cryptoassets/src/currencies.ts | 29 + libs/ledgerjs/packages/errors/src/index.ts | 1 + .../packages/types-cryptoassets/src/index.ts | 1 + libs/ledgerjs/packages/types-live/README.md | 3 +- .../packages/types-live/src/feature.ts | 1 + libs/ui/packages/crypto-icons/src/svg/INJ.svg | 16 + pnpm-lock.yaml | 4032 +++++++++-------- 42 files changed, 3327 insertions(+), 2493 deletions(-) create mode 100644 .changeset/lemon-taxis-applaud.md create mode 100644 libs/ledger-live-common/src/data/icons/svg/INJ.svg create mode 100644 libs/ledger-live-common/src/families/cosmos/chain/Injective.ts create mode 100644 libs/ledger-live-common/src/families/cosmos/datasets/__snapshots__/injective.integration.test.ts.snap create mode 100644 libs/ledger-live-common/src/families/cosmos/datasets/injective.integration.test.ts create mode 100644 libs/ledger-live-common/src/families/cosmos/datasets/injective.ts create mode 100644 libs/ui/packages/crypto-icons/src/svg/INJ.svg diff --git a/.changeset/lemon-taxis-applaud.md b/.changeset/lemon-taxis-applaud.md new file mode 100644 index 000000000000..5834cc205afe --- /dev/null +++ b/.changeset/lemon-taxis-applaud.md @@ -0,0 +1,11 @@ +--- +"@ledgerhq/types-cryptoassets": minor +"@ledgerhq/cryptoassets": minor +"@ledgerhq/types-live": minor +"ledger-live-desktop": minor +"live-mobile": minor +"@ledgerhq/live-common": minor +"@ledgerhq/live-cli": minor +--- + +Integrate injective + gas rework diff --git a/apps/cli/src/live-common-setup-base.ts b/apps/cli/src/live-common-setup-base.ts index df6639882631..139d5c080373 100644 --- a/apps/cli/src/live-common-setup-base.ts +++ b/apps/cli/src/live-common-setup-base.ts @@ -87,6 +87,7 @@ setSupportedCurrencies([ "stacks", "telos_evm", "coreum", + "injective", ]); for (const k in process.env) setEnvUnsafe(k as EnvName, process.env[k]); diff --git a/apps/ledger-live-desktop/cryptoassets.md b/apps/ledger-live-desktop/cryptoassets.md index 115bacae6708..820dfa7f9fa0 100644 --- a/apps/ledger-live-desktop/cryptoassets.md +++ b/apps/ledger-live-desktop/cryptoassets.md @@ -1,6 +1,6 @@ # Supported crypto assets -## Crypto currencies (135) +## Crypto currencies (136) | name | ticker | supported on Ledger Live? | ledger id | |--|--|--|--| | Algorand | ALGO | YES | algorand | @@ -35,6 +35,7 @@ | Flare | FLR | YES | flare | | Hedera | HBAR | YES | hedera | | Horizen | ZEN | YES | zencash | +| Injective | INJ | YES | injective | | Internet Computer | ICP | YES | internet_computer | | Kava EVM | KAVA | YES | kava_evm | | Klaytn | KLAY | YES | klaytn | diff --git a/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts b/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts index 14aa214f808d..b4e115bdfec0 100644 --- a/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts +++ b/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts @@ -81,4 +81,5 @@ setSupportedCurrencies([ "stacks", "telos_evm", "coreum", + "injective", ]); diff --git a/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx b/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx index bd1891406f62..469c70289084 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx @@ -67,6 +67,7 @@ const StepChooseCurrency = ({ currency, setCurrency }: StepProps) => { const baseGoerli = useFeature("currencyBaseGoerli"); const klaytn = useFeature("currencyKlaytn"); const mock = useEnv("MOCK"); + const injective = useFeature("currencyInjective"); const featureFlaggedCurrencies = useMemo( (): Partial | null>> => ({ @@ -103,6 +104,7 @@ const StepChooseCurrency = ({ currency, setCurrency }: StepProps) => { base, base_goerli: baseGoerli, klaytn, + injective, }), [ axelar, @@ -138,6 +140,7 @@ const StepChooseCurrency = ({ currency, setCurrency }: StepProps) => { base, baseGoerli, klaytn, + injective, ], ); diff --git a/apps/ledger-live-desktop/static/i18n/en/app.json b/apps/ledger-live-desktop/static/i18n/en/app.json index 22b6b1ad175f..cc07e9eaf915 100644 --- a/apps/ledger-live-desktop/static/i18n/en/app.json +++ b/apps/ledger-live-desktop/static/i18n/en/app.json @@ -5338,6 +5338,10 @@ "title": "Action rejected", "description": "User rejected the operation on the device" }, + "ExpertModeRequired": { + "title": "Expert mode required", + "description": "Expert mode needs to be enabled." + }, "TransactionRefusedOnDevice": { "title": "Operation denied on device", "description": "Please retry or contact Ledger Support if in doubt" diff --git a/apps/ledger-live-mobile/src/live-common-setup.ts b/apps/ledger-live-mobile/src/live-common-setup.ts index 427b5fd85dc0..1aaa34d7f881 100644 --- a/apps/ledger-live-mobile/src/live-common-setup.ts +++ b/apps/ledger-live-mobile/src/live-common-setup.ts @@ -109,6 +109,7 @@ setSupportedCurrencies([ "stacks", "telos_evm", "coreum", + "injective", ]); if (Config.VERBOSE) { diff --git a/apps/ledger-live-mobile/src/locales/en/common.json b/apps/ledger-live-mobile/src/locales/en/common.json index a2f34b115ffb..07ddedf3e8f5 100644 --- a/apps/ledger-live-mobile/src/locales/en/common.json +++ b/apps/ledger-live-mobile/src/locales/en/common.json @@ -597,6 +597,10 @@ "title": "Operation canceled on device", "description": "You rejected the operation on the device." }, + "ExpertModeRequired": { + "title": "Expert mode required", + "description": "Expert mode needs to be enabled." + }, "WebsocketConnectionError": { "title": "Sorry, connection failed", "description": "Please try again with a better network connection (websocket error)." diff --git a/apps/ledger-live-mobile/src/screens/AddAccounts/01-SelectCrypto.tsx b/apps/ledger-live-mobile/src/screens/AddAccounts/01-SelectCrypto.tsx index e90988cdf6f2..63d6340d560e 100644 --- a/apps/ledger-live-mobile/src/screens/AddAccounts/01-SelectCrypto.tsx +++ b/apps/ledger-live-mobile/src/screens/AddAccounts/01-SelectCrypto.tsx @@ -88,6 +88,7 @@ export default function AddAccountsSelectCrypto({ navigation, route }: Props) { const baseGoerli = useFeature("currencyBaseGoerli"); const klaytn = useFeature("currencyKlaytn"); const mock = useEnv("MOCK"); + const injective = useFeature("currencyInjective"); const featureFlaggedCurrencies = useMemo( (): Partial | null>> => ({ axelar, @@ -123,6 +124,7 @@ export default function AddAccountsSelectCrypto({ navigation, route }: Props) { base, base_goerli: baseGoerli, klaytn, + injective, }), [ axelar, @@ -158,6 +160,7 @@ export default function AddAccountsSelectCrypto({ navigation, route }: Props) { base, baseGoerli, klaytn, + injective, ], ); diff --git a/libs/coin-framework/package.json b/libs/coin-framework/package.json index 7f0cb980ea3c..915d1105af66 100644 --- a/libs/coin-framework/package.json +++ b/libs/coin-framework/package.json @@ -98,6 +98,8 @@ "rxjs": "^6.6.7" }, "devDependencies": { + "@ledgerhq/hw-transport-node-speculos": "workspace:^", + "@ledgerhq/hw-transport-node-speculos-http": "workspace:^", "@types/invariant": "^2.2.2", "@types/jest": "^29.2.4", "@types/lodash": "^4.14.191", diff --git a/libs/coin-framework/src/bot/types.ts b/libs/coin-framework/src/bot/types.ts index 47db439488ff..aff763641d52 100644 --- a/libs/coin-framework/src/bot/types.ts +++ b/libs/coin-framework/src/bot/types.ts @@ -13,6 +13,10 @@ import { import { BigNumber } from "bignumber.js"; import { SpeculosButton } from "./specs"; +import type SpeculosTransportHttp from "@ledgerhq/hw-transport-node-speculos-http"; +import type SpeculosTransportWebsocket from "@ledgerhq/hw-transport-node-speculos"; +export type SpeculosTransport = SpeculosTransportHttp | SpeculosTransportWebsocket; + // Type coming from live-common/src/load/speculos.ts export type AppCandidate = { path: string; @@ -147,6 +151,12 @@ export type AppSpec = { allowEmptyAccounts?: boolean; // do not keep operations in accounts (Cosmos family case) skipOperationHistory?: boolean; + // executed when speculos device is created, used for example to enable expert mode on cosmos nano app + onSpeculosDeviceCreated?: (device: { + transport: SpeculosTransport; + id: string; + appPath: string; + }) => Promise; }; export type SpecReport = { spec: AppSpec; diff --git a/libs/env/src/env.ts b/libs/env/src/env.ts index 72d2e98269f3..a0805850b850 100644 --- a/libs/env/src/env.ts +++ b/libs/env/src/env.ts @@ -78,7 +78,7 @@ const envDefinitions = { desc: "Node endpoint for celo", }, COSMOS_GAS_AMPLIFIER: { - def: 1.2, + def: 1.5, parser: intParser, desc: "Cosmos gas estimate multiplier", }, diff --git a/libs/ledger-live-common/package.json b/libs/ledger-live-common/package.json index fa3e8003ce72..2f6dd3238a79 100644 --- a/libs/ledger-live-common/package.json +++ b/libs/ledger-live-common/package.json @@ -116,12 +116,10 @@ "@celo/utils": "^3.0.1", "@celo/wallet-base": "^3.0.1", "@celo/wallet-ledger": "^3.0.1", - "@cosmjs/amino": "^0.28.4", - "@cosmjs/crypto": "^0.26.5", + "@cosmjs/crypto": "^0.31.0", "@cosmjs/launchpad": "^0.26.5", - "@cosmjs/ledger-amino": "^0.26.5", - "@cosmjs/proto-signing": "^0.26.5", "@cosmjs/stargate": "^0.26.5", + "@cosmjs/amino": "^0.31.1", "@crypto-org-chain/chain-jslib": "1.1.2", "@dfinity/agent": "^0.15.6", "@dfinity/candid": "^0.15.6", @@ -188,6 +186,7 @@ "@xstate/react": "^1.6.3", "@zondax/cbor": "v8.1.0-zondax-no-bigint", "@zondax/izari-filecoin": "^1.2.0", + "@zondax/ledger-cosmos-js": "^3.0.3", "@zondax/ledger-filecoin": "^0.11.2", "@zondax/ledger-icp": "^0.7.0", "@zondax/ledger-stacks": "^1.0.2", diff --git a/libs/ledger-live-common/src/__tests__/test-helpers/environment.ts b/libs/ledger-live-common/src/__tests__/test-helpers/environment.ts index c0da5e285e91..2aeae0874197 100644 --- a/libs/ledger-live-common/src/__tests__/test-helpers/environment.ts +++ b/libs/ledger-live-common/src/__tests__/test-helpers/environment.ts @@ -88,6 +88,7 @@ setSupportedCurrencies([ "stacks", "telos_evm", "coreum", + "injective", ]); for (const k in process.env) setEnvUnsafe(k as EnvName, process.env[k]); diff --git a/libs/ledger-live-common/src/bot/engine.ts b/libs/ledger-live-common/src/bot/engine.ts index 9d2614ccbdd3..7c8768df41a8 100644 --- a/libs/ledger-live-common/src/bot/engine.ts +++ b/libs/ledger-live-common/src/bot/engine.ts @@ -137,6 +137,9 @@ export async function runWithAppSpec( try { device = await createSpeculosDevice(deviceParams); appReport.appPath = device.appPath; + if (spec.onSpeculosDeviceCreated) { + await spec.onSpeculosDeviceCreated(device); + } const bridge = getCurrencyBridge(currency); const syncConfig = { paginationConfig: {}, @@ -300,6 +303,9 @@ export async function runWithAppSpec( ); await releaseSpeculosDevice(device.id); device = await createSpeculosDevice(deviceParams); + if (spec.onSpeculosDeviceCreated) { + await spec.onSpeculosDeviceCreated(device); + } } } mutationsCount = {}; diff --git a/libs/ledger-live-common/src/config/defaultConfig.ts b/libs/ledger-live-common/src/config/defaultConfig.ts index 8f4820455255..566c0838f595 100644 --- a/libs/ledger-live-common/src/config/defaultConfig.ts +++ b/libs/ledger-live-common/src/config/defaultConfig.ts @@ -57,6 +57,10 @@ const defaultConfig = { lcd: "https://full-node.mainnet-1.coreum.dev:1317", minGasPrice: 0.1, }, + injective: { + lcd: "https://injective-api.polkachu.com", + minGasPrice: 900000000, + }, } as { [currency: string]: CosmosCurrencyConfig }, }, }; diff --git a/libs/ledger-live-common/src/currencies/__snapshots__/sortByMarketcap.test.ts.snap b/libs/ledger-live-common/src/currencies/__snapshots__/sortByMarketcap.test.ts.snap index 3c68966351ed..75e50c2d07c5 100644 --- a/libs/ledger-live-common/src/currencies/__snapshots__/sortByMarketcap.test.ts.snap +++ b/libs/ledger-live-common/src/currencies/__snapshots__/sortByMarketcap.test.ts.snap @@ -1404,6 +1404,7 @@ Array [ "stride", "umee", "internet_computer", + "injective", "arbitrum", "cronos", "flare", diff --git a/libs/ledger-live-common/src/data/icons/svg/INJ.svg b/libs/ledger-live-common/src/data/icons/svg/INJ.svg new file mode 100644 index 000000000000..baff64d6fb7c --- /dev/null +++ b/libs/ledger-live-common/src/data/icons/svg/INJ.svg @@ -0,0 +1,16 @@ + + + + + + + diff --git a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts index 2c07269490a2..86212348bdb0 100644 --- a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts +++ b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts @@ -1,7 +1,9 @@ import network from "@ledgerhq/live-network/network"; +import { AxiosResponse } from "axios"; import BigNumber from "bignumber.js"; import { CosmosAPI } from "./Cosmos"; jest.mock("@ledgerhq/live-network/network"); +const mockedNetwork = jest.mocked(network); describe("CosmosApi", () => { let cosmosApi: CosmosAPI; @@ -14,36 +16,89 @@ describe("CosmosApi", () => { jest.resetAllMocks(); }); + describe("getAccount", () => { + it("should return base_account if available", async () => { + mockedNetwork.mockResolvedValue({ + data: { + account: { + account_number: 1, + sequence: 0, + pub_key: { key: "k", "@type": "type" }, + base_account: { + account_number: 2, + sequence: 42, + pub_key: { key: "k2", "@type": "type2" }, + }, + }, + }, + } as AxiosResponse); + + const account = await cosmosApi.getAccount("addr", "default"); + expect(account.accountNumber).toEqual(2); + expect(account.sequence).toEqual(42); + expect(account.pubKey).toEqual("k2"); + expect(account.pubKeyType).toEqual("type2"); + }); + + it("should return account if base_account isn't available", async () => { + mockedNetwork.mockResolvedValue({ + data: { + account: { account_number: 1, sequence: 0, pub_key: { key: "k", "@type": "type" } }, + }, + } as AxiosResponse); + + const account = await cosmosApi.getAccount("addr", "default"); + expect(account.accountNumber).toEqual(1); + expect(account.sequence).toEqual(0); + expect(account.pubKey).toEqual("k"); + expect(account.pubKeyType).toEqual("type"); + }); + + it("should return default sequence value if network fails", async () => { + mockedNetwork.mockImplementation(() => { + throw new Error(); + }); + const account = await cosmosApi.getAccount("addr", "default"); + expect(account.sequence).toEqual(0); + }); + + it("should return default pubkeytype value if network fails", async () => { + mockedNetwork.mockImplementation(() => { + throw new Error(); + }); + const account = await cosmosApi.getAccount("addr", "default"); + expect(account.pubKeyType).toEqual("default"); + }); + }); + describe("simulate", () => { it("should return gas used when the network call returns gas used", async () => { - // @ts-expect-error method is mocked - network.mockResolvedValue({ + mockedNetwork.mockResolvedValue({ data: { gas_info: { gas_used: 42000, }, }, - }); + } as AxiosResponse); const gas = await cosmosApi.simulate([]); expect(gas).toEqual(new BigNumber(42000)); }); it("should throw an error when the network call does not return gas used", async () => { - // @ts-expect-error method is mocked - network.mockResolvedValue({ + mockedNetwork.mockResolvedValue({ data: { gas_info: {} }, - }); + } as AxiosResponse); await expect(cosmosApi.simulate([])).rejects.toThrowError(); }); it("should throw an error when the network call fails", async () => { - // @ts-expect-error method is mocked - network.mockImplementation(() => { + mockedNetwork.mockImplementation(() => { throw new Error(); }); await expect(cosmosApi.simulate([])).rejects.toThrowError(); }); }); + describe("getTransactions", () => { it("should return an empty array when network call fails", async () => { // @ts-expect-error method is mocked diff --git a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts index 9ab8393e97f5..6448d54fa6b7 100644 --- a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts +++ b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts @@ -1,9 +1,11 @@ import network from "@ledgerhq/live-network/network"; +import { log } from "@ledgerhq/logs"; import { CryptoCurrency } from "@ledgerhq/types-cryptoassets"; import { Operation } from "@ledgerhq/types-live"; import BigNumber from "bignumber.js"; import { patchOperationWithHash } from "../../../operation"; import cryptoFactory from "../chain/chain"; +import cosmosBase from "../chain/cosmosBase"; import { CosmosDelegation, CosmosDelegationStatus, @@ -15,9 +17,11 @@ import { export class CosmosAPI { protected defaultEndpoint: string; private version: string; + private chainInstance: cosmosBase; constructor(currencyId: string) { const crypto = cryptoFactory(currencyId); + this.chainInstance = crypto; this.defaultEndpoint = crypto.lcd; this.version = crypto.version; } @@ -46,7 +50,7 @@ export class CosmosAPI { unbondings, withdrawAddress, ] = await Promise.all([ - this.getAccount(address), + this.getAccount(address, this.chainInstance.defaultPubKeyType), this.getAllBalances(address, currency), this.getHeight(), this.getTransactions(address, 100), @@ -71,10 +75,15 @@ export class CosmosAPI { } }; - getAccount = async (address: string): Promise<{ accountNumber: number; sequence: number }> => { - const response = { + getAccount = async ( + address: string, + defaultPubKeyType: string, + ): Promise<{ accountNumber: number; sequence: number; pubKeyType: string; pubKey: string }> => { + const accountData = { accountNumber: 0, sequence: 0, + pubKeyType: defaultPubKeyType, + pubKey: "", }; try { @@ -83,16 +92,30 @@ export class CosmosAPI { url: `${this.defaultEndpoint}/cosmos/auth/${this.version}/accounts/${address}`, }); - if (data.account.account_number) { - response.accountNumber = parseInt(data.account.account_number); + // We use base_account for Ethermint chains and account for the rest + const srcAccount = data.account.base_account || data.account; + + if (srcAccount.account_number) { + accountData.accountNumber = parseInt(srcAccount.account_number); + } + + if (srcAccount.sequence) { + accountData.sequence = parseInt(srcAccount.sequence); } - if (data.account.sequence) { - response.sequence = parseInt(data.account.sequence); + if (srcAccount.pub_key) { + accountData.pubKey = srcAccount.pub_key.key; + accountData.pubKeyType = srcAccount.pub_key["@type"]; } - // eslint-disable-next-line no-empty - } catch (e) {} - return response; + } catch (e) { + log( + "debug", + "Could not fetch account info, account might have never been used, using default values instead", + { e }, + ); + } + + return accountData; }; getChainId = async (): Promise => { diff --git a/libs/ledger-live-common/src/families/cosmos/chain/Injective.ts b/libs/ledger-live-common/src/families/cosmos/chain/Injective.ts new file mode 100644 index 000000000000..1ef919df29fa --- /dev/null +++ b/libs/ledger-live-common/src/families/cosmos/chain/Injective.ts @@ -0,0 +1,21 @@ +import CosmosBase from "./cosmosBase"; + +class Injective extends CosmosBase { + stakingDocUrl: string; + unbondingPeriod: number; + validatorPrefix: string; + prefix: string; + // Provided by coin config + lcd!: string; + ledgerValidator!: string; + constructor() { + super(); + this.stakingDocUrl = "https://support.ledger.com/hc/en-us/articles/9604085095965?support=true"; + this.unbondingPeriod = 21; + this.prefix = "inj"; + this.validatorPrefix = `${this.prefix}valoper`; + this.defaultPubKeyType = "/injective.crypto.v1beta1.ethsecp256k1.PubKey"; + } +} + +export default Injective; diff --git a/libs/ledger-live-common/src/families/cosmos/chain/chain.ts b/libs/ledger-live-common/src/families/cosmos/chain/chain.ts index e6e1863236db..99929010d0a7 100644 --- a/libs/ledger-live-common/src/families/cosmos/chain/chain.ts +++ b/libs/ledger-live-common/src/families/cosmos/chain/chain.ts @@ -14,6 +14,7 @@ import Stride from "./Stride"; import Umee from "./Umee"; import BinanceBeaconChain from "./BinanceBeaconChain"; import Coreum from "./Coreum"; +import Injective from "./Injective"; const cosmosChainParams: { [key: string]: CosmosBase } = {}; export default function cryptoFactory(currencyId: string): CosmosBase { @@ -66,6 +67,9 @@ export default function cryptoFactory(currencyId: string): CosmosBase { case "coreum": cosmosChainParams[currencyId] = new Coreum(); break; + case "injective": + cosmosChainParams[currencyId] = new Injective(); + break; default: throw new Error(`${currencyId} is not supported`); } diff --git a/libs/ledger-live-common/src/families/cosmos/chain/cosmosBase.ts b/libs/ledger-live-common/src/families/cosmos/chain/cosmosBase.ts index f04ee27f3518..d538e860c87a 100644 --- a/libs/ledger-live-common/src/families/cosmos/chain/cosmosBase.ts +++ b/libs/ledger-live-common/src/families/cosmos/chain/cosmosBase.ts @@ -5,6 +5,7 @@ abstract class cosmosBase { abstract ledgerValidator?: string; abstract validatorPrefix: string; abstract prefix: string; + defaultPubKeyType = "/cosmos.crypto.secp256k1.PubKey"; defaultGas = 100000; minGasPrice = 0.0025; version = "v1beta1"; diff --git a/libs/ledger-live-common/src/families/cosmos/datasets/__snapshots__/injective.integration.test.ts.snap b/libs/ledger-live-common/src/families/cosmos/datasets/__snapshots__/injective.integration.test.ts.snap new file mode 100644 index 000000000000..d0b346fbd27a --- /dev/null +++ b/libs/ledger-live-common/src/families/cosmos/datasets/__snapshots__/injective.integration.test.ts.snap @@ -0,0 +1,65 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`injective currency bridge scanAccounts injective seed 1 1`] = ` +Array [ + Object { + "balance": "607564000000000", + "currencyId": "injective", + "derivationMode": "", + "freshAddress": "inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt", + "freshAddressPath": "44'/60'/0'/0/0", + "freshAddresses": Array [ + Object { + "address": "inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt", + "derivationPath": "44'/60'/0'/0/0", + }, + ], + "id": "js:2:injective:inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt:", + "index": 0, + "name": "Injective 1", + "nfts": undefined, + "pendingOperations": Array [], + "seedIdentifier": "03f8e9b05b4de510b0b7d970060eac6a0f76d3c4eb07e11418c0747bc593c91c7d", + "spendableBalance": "506564000000000", + "starred": false, + "swapHistory": Array [], + "syncHash": undefined, + "unitMagnitude": 18, + "used": true, + "xpub": "inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt", + }, + Object { + "balance": "0", + "currencyId": "injective", + "derivationMode": "", + "freshAddress": "inj1604wce9t0u8vne0zrj4t2rspjsg28dymyljzrm", + "freshAddressPath": "44'/60'/1'/0/0", + "freshAddresses": Array [ + Object { + "address": "inj1604wce9t0u8vne0zrj4t2rspjsg28dymyljzrm", + "derivationPath": "44'/60'/1'/0/0", + }, + ], + "id": "js:2:injective:inj1604wce9t0u8vne0zrj4t2rspjsg28dymyljzrm:", + "index": 1, + "name": "Injective 2", + "nfts": undefined, + "pendingOperations": Array [], + "seedIdentifier": "03f8e9b05b4de510b0b7d970060eac6a0f76d3c4eb07e11418c0747bc593c91c7d", + "spendableBalance": "0", + "starred": false, + "swapHistory": Array [], + "syncHash": undefined, + "unitMagnitude": 18, + "used": false, + "xpub": "inj1604wce9t0u8vne0zrj4t2rspjsg28dymyljzrm", + }, +] +`; + +exports[`injective currency bridge scanAccounts injective seed 1 2`] = ` +Array [ + Array [], + Array [], +] +`; diff --git a/libs/ledger-live-common/src/families/cosmos/datasets/injective.integration.test.ts b/libs/ledger-live-common/src/families/cosmos/datasets/injective.integration.test.ts new file mode 100644 index 000000000000..333e8188186e --- /dev/null +++ b/libs/ledger-live-common/src/families/cosmos/datasets/injective.integration.test.ts @@ -0,0 +1,14 @@ +import { DatasetTest } from "@ledgerhq/types-live"; +import { testBridge } from "../../../__tests__/test-helpers/bridge"; +import "../../../__tests__/test-helpers/setup"; +import type { Transaction } from "../types"; +import injective from "./injective"; + +const dataset: DatasetTest = { + implementations: ["js"], + currencies: { + injective, + }, +}; + +testBridge(dataset); diff --git a/libs/ledger-live-common/src/families/cosmos/datasets/injective.ts b/libs/ledger-live-common/src/families/cosmos/datasets/injective.ts new file mode 100644 index 000000000000..d44953681afd --- /dev/null +++ b/libs/ledger-live-common/src/families/cosmos/datasets/injective.ts @@ -0,0 +1,84 @@ +import { CurrenciesData } from "@ledgerhq/types-live"; +import type { CosmosAccountRaw, Transaction } from "../types"; + +const dataset: CurrenciesData = { + FIXME_ignoreOperationFields: ["gas"], + FIXME_ignoreAccountFields: ["cosmosResources", "operationsCount", "operations"], + scanAccounts: [ + { + name: "injective seed 1", + apdus: ` + => 550400001803696e6a2c0000803c000080000000800000000000000000 + <= 03f8e9b05b4de510b0b7d970060eac6a0f76d3c4eb07e11418c0747bc593c91c7d696e6a31686e34367a767834336d7871343776736563767738346b3563686a68756877703664363264749000 + => 550400001803696e6a2c0000803c000080000000800000000000000000 + <= 03f8e9b05b4de510b0b7d970060eac6a0f76d3c4eb07e11418c0747bc593c91c7d696e6a31686e34367a767834336d7871343776736563767738346b3563686a68756877703664363264749000 + => 550400001803696e6a2c0000803c000080010000800000000000000000 + <= 027b5d160be00e600ce13c072899f669527cfcd35795aa3e8c9cbd06ec5f770219696e6a313630347763653974307538766e65307a726a3474327273706a7367323864796d796c6a7a726d9000 + `, + }, + ], + accounts: [ + { + FIXME_tests: ["balance is sum of ops"], + raw: { + id: "js:2:injective:inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt:", + seedIdentifier: "03f8e9b05b4de510b0b7d970060eac6a0f76d3c4eb07e11418c0747bc593c91c7d", + name: "Injective 1", + starred: false, + used: true, + derivationMode: "", + index: 0, + freshAddress: "inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt", + freshAddressPath: "44'/60'/0'/0/0", + freshAddresses: [ + { + address: "inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt", + derivationPath: "44'/60'/0'/0/0", + }, + ], + blockHeight: 45396242, + creationDate: "2023-09-18T06:38:17.652Z", + operationsCount: 0, + operations: [], + pendingOperations: [], + currencyId: "injective", + unitMagnitude: 18, + lastSyncDate: "2023-09-18T06:38:17.652Z", + balance: "607564000000000", + spendableBalance: "506564000000000", + balanceHistoryCache: { + HOUR: { balances: [], latestDate: 1695016800000 }, + DAY: { balances: [], latestDate: 1694988000000 }, + WEEK: { balances: [], latestDate: 1694901600000 }, + }, + xpub: "inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt", + cosmosResources: { + delegations: [ + { + amount: "1000000000000", + status: "bonded", + pendingRewards: "2185339433", + validatorAddress: "injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849", + }, + { + amount: "100000000000000", + status: "bonded", + pendingRewards: "218570386966", + validatorAddress: "injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts", + }, + ], + redelegations: [], + unbondings: [], + delegatedBalance: "101000000000000", + pendingRewardsBalance: "220755726399", + unbondingBalance: "0", + withdrawAddress: "inj1hn46zvx43mxq47vsecvw84k5chjhuhwp6d62dt", + sequence: 2, + }, + swapHistory: [], + } as unknown as CosmosAccountRaw, + }, + ], +}; + +export default dataset; diff --git a/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.test.ts b/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.test.ts index 18eb1a1adfcf..427b347ed098 100644 --- a/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.test.ts +++ b/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.test.ts @@ -1,9 +1,18 @@ -import { MsgDelegateEncodeObject } from "@cosmjs/stargate"; import BigNumber from "bignumber.js"; -import { buildUnsignedPayloadTransaction } from "./js-buildTransaction"; +import { buildTransaction, txToMessages } from "./js-buildTransaction"; import { CosmosAccount, CosmosDelegationInfo, Transaction } from "./types"; +import { + MsgDelegate, + MsgUndelegate, + MsgBeginRedelegate, +} from "cosmjs-types/cosmos/staking/v1beta1/tx"; -describe("buildTransactionWithUnsignedPayload", () => { +import { cosmos } from "@keplr-wallet/cosmos"; +import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx"; +import { TxBody, TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx"; +import { Fee } from "@keplr-wallet/proto-types/cosmos/tx/v1beta1/tx"; + +describe("txToMessages", () => { const transaction: Transaction = {} as Transaction; const account: CosmosAccount = { freshAddress: "accAddress", @@ -15,35 +24,79 @@ describe("buildTransactionWithUnsignedPayload", () => { transaction.mode = "send"; }); - it("should return a MsgSend message if transaction is complete", async () => { - transaction.recipient = "address"; - transaction.amount = new BigNumber(1000); - const [message] = (await buildUnsignedPayloadTransaction(account, transaction)) as any[]; - expect(message).toBeTruthy(); - expect(message.typeUrl).toContain("MsgSend"); - expect(message.value.toAddress).toEqual(transaction.recipient); - expect(message.value.fromAddress).toEqual(account.freshAddress); - expect(message.value.amount[0].amount).toEqual(transaction.amount.toString()); - expect(message.value.amount[0].denom).toEqual(account.currency.units[1].code); - }); + describe("Amino", () => { + it("should return a MsgSend message if transaction is complete", () => { + transaction.recipient = "address"; + transaction.amount = new BigNumber(1000); + const { aminoMsgs } = txToMessages(account, transaction); + const [aminoMsg] = aminoMsgs; + expect(aminoMsg).toBeTruthy(); + expect(aminoMsg.type).toContain("MsgSend"); + expect(aminoMsg.value.to_address).toEqual(transaction.recipient); + expect(aminoMsg.value.from_address).toEqual(account.freshAddress); + expect(aminoMsg.value.amount[0].amount).toEqual(transaction.amount.toString()); + expect(aminoMsg.value.amount[0].denom).toEqual(account.currency.units[1].code); + }); - it("should return no message if recipient isn't defined", async () => { - transaction.amount = new BigNumber(10); - transaction.recipient = ""; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); - }); + it("should return no message if recipient isn't defined", () => { + transaction.amount = new BigNumber(10); + transaction.recipient = ""; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + + it("should return no message if amount is zero", () => { + transaction.amount = new BigNumber(0); + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + + it("should return no message if amount is negative", () => { + transaction.amount = new BigNumber(-10); + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); - it("should return no message if amount is zero", async () => { - transaction.amount = new BigNumber(0); - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + it("should return no message if amount is negative", () => { + transaction.amount = new BigNumber(-10); + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); }); - it("should return no message if amount is negative", async () => { - transaction.amount = new BigNumber(-10); - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + describe("Proto", () => { + it("should return a MsgSend message if transaction is complete", () => { + transaction.recipient = "address"; + transaction.amount = new BigNumber(1000); + const { protoMsgs } = txToMessages(account, transaction); + const [protoMsg] = protoMsgs; + const value = cosmos.bank.v1beta1.MsgSend.decode(protoMsg.value); + expect(protoMsg).toBeTruthy(); + expect(protoMsg.typeUrl).toContain("MsgSend"); + expect(value.toAddress).toEqual(transaction.recipient); + expect(value.fromAddress).toEqual(account.freshAddress); + expect(value.amount[0].amount).toEqual(transaction.amount.toString()); + expect(value.amount[0].denom).toEqual(account.currency.units[1].code); + }); + + it("should return no message if recipient isn't defined", () => { + transaction.amount = new BigNumber(10); + transaction.recipient = ""; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if amount is zero", () => { + transaction.amount = new BigNumber(0); + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if amount is negative", () => { + transaction.amount = new BigNumber(-10); + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); }); }); @@ -52,53 +105,97 @@ describe("buildTransactionWithUnsignedPayload", () => { transaction.mode = "delegate"; }); - it("should return a MsgDelegate message if transaction is complete", async () => { - transaction.amount = new BigNumber(1000); - transaction.validators = [ - { - address: "realAddressTrustMe", - amount: new BigNumber(100), - } as CosmosDelegationInfo, - ]; - const [message] = (await buildUnsignedPayloadTransaction( - account, - transaction, - )) as MsgDelegateEncodeObject[]; - expect(message).toBeTruthy(); - expect(message.typeUrl).toContain("MsgDelegate"); - expect(message.value.validatorAddress).toEqual(transaction.validators[0].address); - expect(message.value.delegatorAddress).toEqual(account.freshAddress); - expect(message.value.amount?.amount).toEqual(transaction.amount.toString()); - expect(message.value.amount?.denom).toEqual(account.currency.units[1].code); - }); + describe("Amino", () => { + it("should return a MsgDelegate message if transaction is complete", () => { + transaction.amount = new BigNumber(1000); + transaction.validators = [ + { + address: "realAddressTrustMe", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + const [message] = aminoMsgs; + expect(message).toBeTruthy(); + expect(message.type).toContain("MsgDelegate"); + expect(message.value.validator_address).toEqual(transaction.validators[0].address); + expect(message.value.delegator_address).toEqual(account.freshAddress); + expect(message.value.amount?.amount).toEqual(transaction.amount.toString()); + expect(message.value.amount?.denom).toEqual(account.currency.units[1].code); + }); - it("should return no message if tx has a 0 amount", async () => { - transaction.amount = new BigNumber(0); - transaction.validators = [{ address: "realAddressTrustMe" } as CosmosDelegationInfo]; - const messages = (await buildUnsignedPayloadTransaction( - account, - transaction, - )) as MsgDelegateEncodeObject[]; - expect(messages.length).toEqual(0); - }); + it("should return no message if tx has a 0 amount", () => { + transaction.amount = new BigNumber(0); + transaction.validators = [{ address: "realAddressTrustMe" } as CosmosDelegationInfo]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); - it("should return no message if tx has a negative amount", async () => { - transaction.amount = new BigNumber(-1); - transaction.validators = [{ address: "realAddressTrustMe" } as CosmosDelegationInfo]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); - }); + it("should return no message if tx has a negative amount", () => { + transaction.amount = new BigNumber(-1); + transaction.validators = [{ address: "realAddressTrustMe" } as CosmosDelegationInfo]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + + it("should return no message if validators has no address", () => { + transaction.validators = [{} as CosmosDelegationInfo]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); - it("should return no message if validators has no address", async () => { - transaction.validators = [{} as CosmosDelegationInfo]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + it("should return no message if validators aren't defined", () => { + transaction.validators = []; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); }); - it("should return no message if validators aren't defined", async () => { - transaction.validators = []; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + describe("Proto", () => { + it("should return a MsgDelegate message if transaction is complete", () => { + transaction.amount = new BigNumber(1000); + transaction.validators = [ + { + address: "realAddressTrustMe", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + const [message] = protoMsgs; + expect(message).toBeTruthy(); + expect(message.typeUrl).toContain("MsgDelegate"); + const value = MsgDelegate.decode(message.value); + expect(value.validatorAddress).toEqual(transaction.validators[0].address); + expect(value.delegatorAddress).toEqual(account.freshAddress); + expect(value.amount?.amount).toEqual(transaction.amount.toString()); + expect(value.amount?.denom).toEqual(account.currency.units[1].code); + }); + + it("should return no message if tx has a 0 amount", () => { + transaction.amount = new BigNumber(0); + transaction.validators = [{ address: "realAddressTrustMe" } as CosmosDelegationInfo]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if tx has a negative amount", () => { + transaction.amount = new BigNumber(-1); + transaction.validators = [{ address: "realAddressTrustMe" } as CosmosDelegationInfo]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if validators has no address", () => { + transaction.validators = [{} as CosmosDelegationInfo]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if validators aren't defined", () => { + transaction.validators = []; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); }); }); @@ -107,63 +204,123 @@ describe("buildTransactionWithUnsignedPayload", () => { transaction.mode = "undelegate"; }); - it("should return a MsgDelegate message if transaction is complete", async () => { - transaction.amount = new BigNumber(1000); - transaction.validators = [ - { - address: "realAddressTrustMe", - amount: new BigNumber(100), - } as CosmosDelegationInfo, - ]; - const [message] = (await buildUnsignedPayloadTransaction( - account, - transaction, - )) as MsgDelegateEncodeObject[]; - expect(message).toBeTruthy(); - expect(message.typeUrl).toContain("MsgUndelegate"); - expect(message.value.validatorAddress).toEqual(transaction.validators[0].address); - expect(message.value.delegatorAddress).toEqual(account.freshAddress); - expect(message.value.amount?.amount).toEqual(transaction.validators[0].amount.toString()); - expect(message.value.amount?.denom).toEqual(account.currency.units[1].code); - }); + describe("Amino", () => { + it("should return a MsgUndelegate message if transaction is complete", () => { + transaction.amount = new BigNumber(1000); + transaction.validators = [ + { + address: "realAddressTrustMe", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + const [message] = aminoMsgs; + expect(message).toBeTruthy(); + expect(message.type).toContain("MsgUndelegate"); + expect(message.value.validator_address).toEqual(transaction.validators[0].address); + expect(message.value.delegator_address).toEqual(account.freshAddress); + expect(message.value.amount?.amount).toEqual(transaction.validators[0].amount.toString()); + expect(message.value.amount?.denom).toEqual(account.currency.units[1].code); + }); - it("should return no message if validators aren't defined", async () => { - transaction.validators = []; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); - }); + it("should return no message if validators aren't defined", () => { + transaction.validators = []; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); - it("should return no message if validator address isn't defined", async () => { - transaction.validators = [ - { - address: "", - amount: new BigNumber(100), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); - }); + it("should return no message if validator address isn't defined", () => { + transaction.validators = [ + { + address: "", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); - it("should return no message if validator amount is 0", async () => { - transaction.validators = [ - { - address: "address", - amount: new BigNumber(0), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + it("should return no message if validator amount is 0", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(0), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + + it("should return no message if validator amount is negative", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(-10), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); }); - it("should return no message if validator amount is negative", async () => { - transaction.validators = [ - { - address: "address", - amount: new BigNumber(-10), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + describe("Proto", () => { + it("should return a MsgUndelegate message if transaction is complete", () => { + transaction.amount = new BigNumber(1000); + transaction.validators = [ + { + address: "realAddressTrustMe", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + const [message] = protoMsgs; + expect(message).toBeTruthy(); + expect(message.typeUrl).toContain("MsgUndelegate"); + const value = MsgUndelegate.decode(message.value); + expect(value.validatorAddress).toEqual(transaction.validators[0].address); + expect(value.delegatorAddress).toEqual(account.freshAddress); + expect(value.amount?.amount).toEqual(transaction.validators[0].amount.toString()); + expect(value.amount?.denom).toEqual(account.currency.units[1].code); + }); + + it("should return no message if validators aren't defined", () => { + transaction.validators = []; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if validator address isn't defined", () => { + transaction.validators = [ + { + address: "", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if validator amount is 0", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(0), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if validator amount is negative", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(-10), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); }); }); @@ -172,67 +329,133 @@ describe("buildTransactionWithUnsignedPayload", () => { transaction.mode = "redelegate"; }); - it("should return a MsgBeginRedelegate message if transaction is complete", async () => { - transaction.sourceValidator = "source"; - transaction.validators = [ - { - address: "realAddressTrustMe", - amount: new BigNumber(100), - } as CosmosDelegationInfo, - ]; - const [message] = (await buildUnsignedPayloadTransaction(account, transaction)) as any[]; - expect(message).toBeTruthy(); - expect(message.typeUrl).toContain("MsgBeginRedelegate"); - expect(message.value.validatorSrcAddress).toEqual(transaction.sourceValidator); - expect(message.value.validatorDstAddress).toEqual(transaction.validators[0].address); - expect(message.value.delegatorAddress).toEqual(account.freshAddress); - expect(message.value.amount.amount).toEqual(transaction.validators[0].amount.toString()); - expect(message.value.amount.denom).toEqual(account.currency.units[1].code); - }); + describe("Amino", () => { + it("should return a MsgBeginRedelegate message if transaction is complete", () => { + transaction.sourceValidator = "source"; + transaction.validators = [ + { + address: "realAddressTrustMe", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + const [message] = aminoMsgs; + expect(message).toBeTruthy(); + expect(message.type).toContain("MsgBeginRedelegate"); + expect(message.value.validator_src_address).toEqual(transaction.sourceValidator); + expect(message.value.validator_dst_address).toEqual(transaction.validators[0].address); + expect(message.value.delegator_address).toEqual(account.freshAddress); + expect(message.value.amount.amount).toEqual(transaction.validators[0].amount.toString()); + expect(message.value.amount.denom).toEqual(account.currency.units[1].code); + }); - it("should return no message if sourceValidator isn't defined", async () => { - transaction.sourceValidator = ""; - transaction.validators = [ - { - address: "address", - amount: new BigNumber(100), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); - }); + it("should return no message if sourceValidator isn't defined", () => { + transaction.sourceValidator = ""; + transaction.validators = [ + { + address: "address", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); - it("should return no message if validator address isn't defined", async () => { - transaction.validators = [ - { - address: "", - amount: new BigNumber(100), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + it("should return no message if validator address isn't defined", () => { + transaction.validators = [ + { + address: "", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + it("should return no message if validator amount is 0", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(0), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + it("should return no message if validator amount is negative", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(-10), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); }); - it("should return no message if validator amount is 0", async () => { - transaction.validators = [ - { - address: "address", - amount: new BigNumber(0), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); - }); + describe("Proto", () => { + it("should return a MsgBeginRedelegate message if transaction is complete", () => { + transaction.sourceValidator = "source"; + transaction.validators = [ + { + address: "realAddressTrustMe", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + const [message] = protoMsgs; + expect(message).toBeTruthy(); + expect(message.typeUrl).toContain("MsgBeginRedelegate"); + const value = MsgBeginRedelegate.decode(message.value); + expect(value.validatorSrcAddress).toEqual(transaction.sourceValidator); + expect(value.validatorDstAddress).toEqual(transaction.validators[0].address); + expect(value.delegatorAddress).toEqual(account.freshAddress); + expect(value.amount?.amount).toEqual(transaction.validators[0].amount.toString()); + expect(value.amount?.denom).toEqual(account.currency.units[1].code); + }); - it("should return no message if validator amount is negative", async () => { - transaction.validators = [ - { - address: "address", - amount: new BigNumber(-10), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + it("should return no message if sourceValidator isn't defined", () => { + transaction.sourceValidator = ""; + transaction.validators = [ + { + address: "address", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if validator address isn't defined", () => { + transaction.validators = [ + { + address: "", + amount: new BigNumber(100), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + it("should return no message if validator amount is 0", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(0), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + it("should return no message if validator amount is negative", () => { + transaction.validators = [ + { + address: "address", + amount: new BigNumber(-10), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); }); }); @@ -241,35 +464,73 @@ describe("buildTransactionWithUnsignedPayload", () => { transaction.mode = "claimReward"; }); - it("should return a MsgWithdrawDelegatorReward message if transaction is complete", async () => { - transaction.validators = [ - { - address: "iAmAValidatorAddress", - amount: new BigNumber(1000), - } as CosmosDelegationInfo, - ]; - const [message] = (await buildUnsignedPayloadTransaction(account, transaction)) as any[]; - expect(message).toBeTruthy(); - expect(message.typeUrl).toContain("MsgWithdrawDelegatorReward"); - expect(message.value.validatorAddress).toEqual(transaction.validators[0].address); - expect(message.value.delegatorAddress).toEqual(account.freshAddress); - }); + describe("Amino", () => { + it("should return a MsgWithdrawDelegationReward message if transaction is complete", () => { + transaction.validators = [ + { + address: "iAmAValidatorAddress", + amount: new BigNumber(1000), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + const [message] = aminoMsgs; + expect(message).toBeTruthy(); + expect(message.type).toContain("MsgWithdrawDelegationReward"); + expect(message.value.validator_address).toEqual(transaction.validators[0].address); + expect(message.value.delegator_address).toEqual(account.freshAddress); + }); - it("should return no message if validator isn't defined", async () => { - transaction.validators = []; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + it("should return no message if validator isn't defined", () => { + transaction.validators = []; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + + it("should return no message if validator address isn't defined", () => { + transaction.validators = [ + { + address: "", + amount: new BigNumber(1000), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); }); - it("should return no message if validator address isn't defined", async () => { - transaction.validators = [ - { - address: "", - amount: new BigNumber(1000), - } as CosmosDelegationInfo, - ]; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + describe("Proto", () => { + it("should return a MsgWithdrawDelegatorReward message if transaction is complete", () => { + transaction.validators = [ + { + address: "iAmAValidatorAddress", + amount: new BigNumber(1000), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + const [message] = protoMsgs; + expect(message).toBeTruthy(); + expect(message.typeUrl).toContain("MsgWithdrawDelegatorReward"); + const value = MsgWithdrawDelegatorReward.decode(message.value); + expect(value.validatorAddress).toEqual(transaction.validators[0].address); + expect(value.delegatorAddress).toEqual(account.freshAddress); + }); + + it("should return no message if validator isn't defined", () => { + transaction.validators = []; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + + it("should return no message if validator address isn't defined", () => { + transaction.validators = [ + { + address: "", + amount: new BigNumber(1000), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); }); }); @@ -278,38 +539,153 @@ describe("buildTransactionWithUnsignedPayload", () => { transaction.mode = "claimRewardCompound"; }); - it("should return a MsgWithdrawDelegatorReward message and a MsgDelegate if transaction is complete", async () => { - transaction.validators = [ - { - address: "iAmAValidatorAddress", - amount: new BigNumber(1000), - } as CosmosDelegationInfo, - ]; - const [withDrawMessage, delegateMessage] = (await buildUnsignedPayloadTransaction( - account, - transaction, - )) as any[]; - expect(withDrawMessage).toBeTruthy(); - expect(withDrawMessage.typeUrl).toContain("MsgWithdrawDelegatorReward"); - expect(withDrawMessage.value.validatorAddress).toEqual(transaction.validators[0].address); - expect(withDrawMessage.value.delegatorAddress).toEqual(account.freshAddress); - expect(delegateMessage).toBeTruthy(); - expect(delegateMessage.typeUrl).toContain("MsgDelegate"); - expect(delegateMessage.value.validatorAddress).toEqual(transaction.validators[0].address); - expect(delegateMessage.value.delegatorAddress).toEqual(account.freshAddress); - expect(delegateMessage.value.amount.amount).toEqual( - transaction.validators[0].amount.toString(), - ); - expect(delegateMessage.value.amount.denom).toEqual(account.currency.units[1].code); + describe("Amino", () => { + it("should return a MsgWithdrawDelegationReward message and a MsgDelegate if transaction is complete", () => { + transaction.validators = [ + { + address: "iAmAValidatorAddress", + amount: new BigNumber(1000), + } as CosmosDelegationInfo, + ]; + const { aminoMsgs } = txToMessages(account, transaction); + const [withDrawMessage, delegateMessage] = aminoMsgs; + expect(withDrawMessage).toBeTruthy(); + expect(withDrawMessage.type).toContain("MsgWithdrawDelegationReward"); + expect(withDrawMessage.value.validator_address).toEqual(transaction.validators[0].address); + expect(withDrawMessage.value.delegator_address).toEqual(account.freshAddress); + expect(delegateMessage).toBeTruthy(); + expect(delegateMessage.type).toContain("MsgDelegate"); + expect(delegateMessage.value.validator_address).toEqual(transaction.validators[0].address); + expect(delegateMessage.value.delegator_address).toEqual(account.freshAddress); + expect(delegateMessage.value.amount.amount).toEqual( + transaction.validators[0].amount.toString(), + ); + expect(delegateMessage.value.amount.denom).toEqual(account.currency.units[1].code); + }); + }); + + describe("Proto", () => { + it("should return a MsgWithdrawDelegatorReward message and a MsgDelegate if transaction is complete", () => { + transaction.validators = [ + { + address: "iAmAValidatorAddress", + amount: new BigNumber(1000), + } as CosmosDelegationInfo, + ]; + const { protoMsgs } = txToMessages(account, transaction); + const [withDrawMessage, delegateMessage] = protoMsgs; + expect(withDrawMessage).toBeTruthy(); + expect(withDrawMessage.typeUrl).toContain("MsgWithdrawDelegatorReward"); + const withDrawMessageValue = MsgWithdrawDelegatorReward.decode(withDrawMessage.value); + expect(withDrawMessageValue.validatorAddress).toEqual(transaction.validators[0].address); + expect(withDrawMessageValue.delegatorAddress).toEqual(account.freshAddress); + expect(delegateMessage).toBeTruthy(); + expect(delegateMessage.typeUrl).toContain("MsgDelegate"); + const delegateMessageValue = MsgDelegate.decode(delegateMessage.value); + expect(delegateMessageValue.validatorAddress).toEqual(transaction.validators[0].address); + expect(delegateMessageValue.delegatorAddress).toEqual(account.freshAddress); + expect(delegateMessageValue.amount?.amount).toEqual( + transaction.validators[0].amount.toString(), + ); + expect(delegateMessageValue.amount?.denom).toEqual(account.currency.units[1].code); + }); }); }); describe("When transaction mode isn't known", () => { - it("should return no message", async () => { - // @ts-expect-error Random mode that isn't listed in typescript type - transaction.mode = "RandomModeThatICreatedMyself"; - const messages = await buildUnsignedPayloadTransaction(account, transaction); - expect(messages.length).toEqual(0); + describe("Amino", () => { + it("should return no message", () => { + // @ts-expect-error Random mode that isn't listed in typescript type + transaction.mode = "RandomModeThatICreatedMyself"; + const { aminoMsgs } = txToMessages(account, transaction); + expect(aminoMsgs.length).toEqual(0); + }); + }); + describe("Proto", () => { + it("should return no message", () => { + // @ts-expect-error Random mode that isn't listed in typescript type + transaction.mode = "RandomModeThatICreatedMyself"; + const { protoMsgs } = txToMessages(account, transaction); + expect(protoMsgs.length).toEqual(0); + }); + }); + }); +}); + +describe("buildTransaction", () => { + let bodyFromPartialSpy: jest.SpyInstance; + let feeFromPartialSpy: jest.SpyInstance; + let txRawEncodeSpy: jest.SpyInstance; + + const defaultInfos = { + memo: "test", + pubKey: "pubkey", + sequence: "1", + protoMsgs: [], + pubKeyType: "type", + signature: new Uint8Array(), + feeAmount: undefined, + gasLimit: undefined, + }; + + beforeEach(() => { + bodyFromPartialSpy = jest.spyOn(TxBody, "fromPartial"); + feeFromPartialSpy = jest.spyOn(Fee, "fromPartial"); + txRawEncodeSpy = jest.spyOn(TxRaw, "encode"); + }); + + afterEach(() => { + jest.clearAllMocks(); + }); + + it("should set memo", () => { + buildTransaction({ ...defaultInfos, memo: "toto" }); + expect(bodyFromPartialSpy).toHaveBeenCalledWith( + expect.objectContaining({ + memo: "toto", + }), + ); + }); + + it("should set gasLimit", () => { + buildTransaction({ ...defaultInfos, gasLimit: "10" }); + expect(feeFromPartialSpy).toHaveBeenCalledWith( + expect.objectContaining({ + gasLimit: "10", + }), + ); + }); + + it("should set messages", () => { + buildTransaction({ + ...defaultInfos, + protoMsgs: [ + { + typeUrl: "typeUrl", + value: new Uint8Array(), + }, + ], + }); + expect(bodyFromPartialSpy).toHaveBeenCalledWith( + expect.objectContaining({ + messages: [ + { + typeUrl: "typeUrl", + value: new Uint8Array(), + }, + ], + }), + ); + }); + + it("should set signature", () => { + const signature = new Uint8Array([8]); + buildTransaction({ + ...defaultInfos, + signature, }); + expect(txRawEncodeSpy).toHaveBeenCalledWith( + expect.objectContaining({ signatures: [signature] }), + ); }); }); diff --git a/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.ts b/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.ts index 36c26214bb95..54258ba1e2a8 100644 --- a/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.ts +++ b/libs/ledger-live-common/src/families/cosmos/js-buildTransaction.ts @@ -1,4 +1,4 @@ -import { CosmosAccount, Transaction } from "./types"; +import { Transaction } from "./types"; import { MsgDelegate, MsgUndelegate, @@ -8,7 +8,6 @@ import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1b import { SignMode } from "cosmjs-types/cosmos/tx/signing/v1beta1/signing"; import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx"; import type { Account } from "@ledgerhq/types-live"; -import { AminoMsg, AminoSignResponse } from "@cosmjs/amino"; import { AminoMsgSend, AminoMsgDelegate, @@ -21,20 +20,21 @@ import { PubKey } from "@keplr-wallet/proto-types/cosmos/crypto/secp256k1/keys"; import { AuthInfo, Fee } from "@keplr-wallet/proto-types/cosmos/tx/v1beta1/tx"; import { TxBody } from "cosmjs-types/cosmos/tx/v1beta1/tx"; import Long from "long"; -import { Coin } from "@keplr-wallet/proto-types/cosmos/base/v1beta1/coin"; -import BigNumber from "bignumber.js"; -import { EncodeObject, GeneratedType, makeAuthInfoBytes, Registry } from "@cosmjs/proto-signing"; -import { CosmosAPI } from "./api/Cosmos"; type ProtoMsg = { typeUrl: string; value: Uint8Array; }; -export const buildTransaction = async ( +type AminoMsg = { + readonly type: string; + readonly value: any; +}; + +export const txToMessages = ( account: Account, transaction: Transaction, -): Promise<{ aminoMsgs: AminoMsg[]; protoMsgs: ProtoMsg[] }> => { +): { aminoMsgs: AminoMsg[]; protoMsgs: ProtoMsg[] } => { const aminoMsgs: Array = []; const protoMsgs: Array = []; switch (transaction.mode) { @@ -255,180 +255,30 @@ export const buildTransaction = async ( return { aminoMsgs, protoMsgs }; }; -/* Build transaction with unsigned payload for simulation and gas estimation */ -export const buildUnsignedPayloadTransaction = async ( - account: CosmosAccount, - transaction: Transaction, -): Promise<{ typeUrl: string; value: EncodeObject }[]> => { - const messages: Array<{ typeUrl: string; value: any }> = []; - - // Ledger Live is able to build transaction atomically, - // Take care expected data are complete before push msg. - // Otherwise, the transaction is silently returned intact. - - let isComplete = true; - - switch (transaction.mode) { - case "send": - if (!transaction.recipient || transaction.amount.lte(0)) { - isComplete = false; - } else { - messages.push({ - typeUrl: "/cosmos.bank.v1beta1.MsgSend", - value: { - fromAddress: account.freshAddress, - toAddress: transaction.recipient, - amount: [ - { - denom: account.currency.units[1].code, - amount: transaction.amount.toString(), - }, - ], - }, - }); - } - break; - - case "delegate": - if (!transaction.validators || transaction.validators.length < 1) { - isComplete = false; - } else { - const validator = transaction.validators[0]; - if (!validator) { - isComplete = false; - break; - } else if (!validator.address || transaction.amount.lte(0)) { - isComplete = false; - } - - messages.push({ - typeUrl: "/cosmos.staking.v1beta1.MsgDelegate", - value: { - delegatorAddress: account.freshAddress, - validatorAddress: validator.address, - amount: { - denom: account.currency.units[1].code, - amount: transaction.amount.toString(), - }, - }, - }); - } - break; - - case "undelegate": - if ( - !transaction.validators || - transaction.validators.length < 1 || - !transaction.validators[0].address || - transaction.validators[0].amount.lte(0) - ) { - isComplete = false; - } else { - messages.push({ - typeUrl: "/cosmos.staking.v1beta1.MsgUndelegate", - value: { - delegatorAddress: account.freshAddress, - validatorAddress: transaction.validators[0].address, - amount: { - denom: account.currency.units[1].code, - amount: transaction.validators[0].amount.toString(), - }, - }, - }); - } - break; - - case "redelegate": - if ( - !transaction.sourceValidator || - !transaction.validators || - transaction.validators.length < 1 || - !transaction.validators[0].address || - transaction.validators[0].amount.lte(0) - ) { - isComplete = false; - } else { - messages.push({ - typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegate", - value: { - validatorSrcAddress: transaction.sourceValidator, - delegatorAddress: account.freshAddress, - validatorDstAddress: transaction.validators[0].address, - amount: { - denom: account.currency.units[1].code, - amount: transaction.validators[0].amount.toString(), - }, - }, - }); - } - break; - - case "claimReward": - if ( - !transaction.validators || - transaction.validators.length < 1 || - !transaction.validators[0].address - ) { - isComplete = false; - } else { - messages.push({ - typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", - value: { - delegatorAddress: account.freshAddress, - validatorAddress: transaction.validators[0].address, - }, - }); - } - break; - - case "claimRewardCompound": - if ( - !transaction.validators || - transaction.validators.length < 1 || - !transaction.validators[0].address || - transaction.validators[0].amount.lte(0) - ) { - isComplete = false; - } else { - messages.push({ - typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", - value: { - delegatorAddress: account.freshAddress, - validatorAddress: transaction.validators[0].address, - }, - }); - - messages.push({ - typeUrl: "/cosmos.staking.v1beta1.MsgDelegate", - value: { - delegatorAddress: account.freshAddress, - validatorAddress: transaction.validators[0].address, - amount: { - denom: account.currency.units[1].code, - amount: transaction.validators[0].amount.toString(), - }, - }, - }); - } - break; - } - - if (!isComplete) { - return []; - } - - return messages; -}; - -export const postBuildTransaction = async ( - signResponse: AminoSignResponse, - protoMsgs: Array, -): Promise => { - const signed_tx_bytes = TxRaw.encode({ +export const buildTransaction = ({ + protoMsgs, + memo, + pubKeyType, + pubKey, + feeAmount, + gasLimit, + sequence, + signature, +}: { + protoMsgs: Array; + memo: string; + pubKeyType: string; + pubKey: string; + feeAmount: { amount: string; denom: string } | undefined; + gasLimit: string | undefined; + sequence: string; + signature: Uint8Array; +}): Uint8Array => { + const signedTx = TxRaw.encode({ bodyBytes: TxBody.encode( TxBody.fromPartial({ messages: protoMsgs, - memo: signResponse.signed.memo, + memo, timeoutHeight: undefined, extensionOptions: [], nonCriticalExtensionOptions: [], @@ -438,9 +288,9 @@ export const postBuildTransaction = async ( signerInfos: [ { publicKey: { - typeUrl: "/cosmos.crypto.secp256k1.PubKey", + typeUrl: pubKeyType, value: PubKey.encode({ - key: Buffer.from(signResponse.signature.pub_key.value, "base64"), + key: Buffer.from(pubKey, "base64"), }).finish(), }, modeInfo: { @@ -449,73 +299,16 @@ export const postBuildTransaction = async ( }, multi: undefined, }, - sequence: Long.fromString(signResponse.signed.sequence), + sequence: Long.fromString(sequence), }, ], fee: Fee.fromPartial({ - amount: signResponse.signed.fee.amount - ? (signResponse.signed.fee.amount as Coin[]) - : undefined, - gasLimit: signResponse.signed.fee.gas, + amount: feeAmount as any, + gasLimit: gasLimit, }), }).finish(), - signatures: [Buffer.from(signResponse.signature.signature, "base64")], - }).finish(); - - return signed_tx_bytes; -}; - -export const postBuildUnsignedPayloadTransaction = async ( - account: CosmosAccount, - transaction: Transaction, - pubkey: EncodeObject, - unsignedPayload: EncodeObject[], - signature: Uint8Array, -): Promise => { - const txBodyFields = { - typeUrl: "/cosmos.tx.v1beta1.TxBody", - value: { - messages: unsignedPayload, - memo: transaction.memo || "", - }, - }; - - const registry = new Registry([ - ["/cosmos.staking.v1beta1.MsgDelegate", MsgDelegate as unknown as GeneratedType], - ["/cosmos.staking.v1beta1.MsgUndelegate", MsgUndelegate as unknown as GeneratedType], - ["/cosmos.staking.v1beta1.MsgBeginRedelegate", MsgBeginRedelegate as unknown as GeneratedType], - [ - "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", - MsgWithdrawDelegatorReward as unknown as GeneratedType, - ], - ]); - - const cosmosAPI = new CosmosAPI(account.currency.id); - const { sequence } = await cosmosAPI.getAccount(account.freshAddress); - - const txBodyBytes = registry.encode(txBodyFields); - - const authInfoBytes = makeAuthInfoBytes( - [{ pubkey, sequence }], - [ - { - amount: transaction.fees?.toString() || new BigNumber(2500).toString(), - denom: account.currency.units[1].code, - }, - ], - transaction.gas?.toNumber() || new BigNumber(250000).toNumber(), - SignMode.SIGN_MODE_LEGACY_AMINO_JSON, - ); - - const txRaw = TxRaw.fromPartial({ - bodyBytes: txBodyBytes, - authInfoBytes, signatures: [signature], - }); - - const tx_bytes = Array.from(Uint8Array.from(TxRaw.encode(txRaw).finish())); + }).finish(); - return tx_bytes; + return signedTx; }; - -export default buildTransaction; diff --git a/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.test.ts b/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.test.ts index edb1b2f8de97..0b1ac30af962 100644 --- a/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.test.ts +++ b/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.test.ts @@ -31,8 +31,8 @@ describe("getEstimatedFees", () => { }, }, }); - const { estimatedGas } = await getEstimatedFees(account, transaction); - expect(estimatedGas.gt(new BigNumber(gasSimulationMock))).toEqual(true); + const { gasWanted } = await getEstimatedFees(account, transaction); + expect(gasWanted.gt(new BigNumber(gasSimulationMock))).toEqual(true); }); it("should calculate fees for a transaction", async () => { @@ -44,9 +44,9 @@ describe("getEstimatedFees", () => { }, }, }); - const { estimatedFees, estimatedGas } = await getEstimatedFees(account, transaction); - expect(estimatedFees.gt(0)).toEqual(true); - expect(estimatedGas.gt(0)).toEqual(true); + const { gasWantedFees, gasWanted } = await getEstimatedFees(account, transaction); + expect(gasWantedFees.gt(0)).toEqual(true); + expect(gasWanted.gt(0)).toEqual(true); }); }); diff --git a/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts b/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts index 113bde57d310..ffcc6fd25b2e 100644 --- a/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts +++ b/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts @@ -5,10 +5,7 @@ import BigNumber from "bignumber.js"; import { getEnv } from "@ledgerhq/live-env"; import { CosmosAPI } from "./api/Cosmos"; import cryptoFactory from "./chain/chain"; -import { - buildUnsignedPayloadTransaction, - postBuildUnsignedPayloadTransaction, -} from "./js-buildTransaction"; +import { txToMessages, buildTransaction } from "./js-buildTransaction"; import { getMaxEstimatedBalance } from "./logic"; import { CosmosAccount, Transaction } from "./types"; @@ -18,16 +15,16 @@ export const calculateFees: CacheRes< transaction: Transaction; }>, { - estimatedFees: BigNumber; - estimatedGas: BigNumber; + gasWanted: BigNumber; + gasWantedFees: BigNumber; } > = makeLRUCache( async ({ account, transaction, }): Promise<{ - estimatedFees: BigNumber; - estimatedGas: BigNumber; + gasWanted: BigNumber; + gasWantedFees: BigNumber; }> => { return await getEstimatedFees(account as CosmosAccount, transaction); }, @@ -42,58 +39,58 @@ export const calculateFees: CacheRes< transaction.sourceValidator ? transaction.sourceValidator : "" }`, { - ttl: 1000 * 60, // 60 sec + ttl: 1000 * 10, // 10 sec }, ); export const getEstimatedFees = async ( account: CosmosAccount, transaction: Transaction, -): Promise<{ estimatedFees: BigNumber; estimatedGas: BigNumber }> => { - const cosmosCurrency = cryptoFactory(account.currency.id); - let estimatedGas = new BigNumber(cosmosCurrency.defaultGas); +): Promise<{ + gasWanted: BigNumber; + gasWantedFees: BigNumber; +}> => { + const chainInstance = cryptoFactory(account.currency.id); + let gasUsed = new BigNumber(chainInstance.defaultGas); const cosmosAPI = new CosmosAPI(account.currency.id); - const unsignedPayload: { typeUrl: string; value: any }[] = await buildUnsignedPayloadTransaction( - account, - transaction, + const { protoMsgs } = txToMessages(account, transaction); + const { sequence, pubKeyType, pubKey } = await cosmosAPI.getAccount( + account.freshAddress, + chainInstance.defaultPubKeyType, ); + const signature = new Uint8Array(Buffer.from(account.seedIdentifier, "hex")); + + const txBytes = buildTransaction({ + protoMsgs, + memo: transaction.memo || "", + pubKeyType, + pubKey, + feeAmount: undefined, + gasLimit: undefined, + sequence: sequence ? sequence + "" : "0", + signature, + }); - if (unsignedPayload && unsignedPayload.length > 0) { - const signature = new Uint8Array(Buffer.from(account.seedIdentifier, "hex")); - - // see https://github.com/cosmos/cosmjs/blob/main/packages/proto-signing/src/pubkey.spec.ts - const prefix = new Uint8Array([10, 33]); - - const pubkey = { - typeUrl: "/cosmos.crypto.secp256k1.PubKey", - value: new Uint8Array([...prefix, ...signature]), - }; + const txToSimulate = Array.from(Uint8Array.from(txBytes)); - const tx_bytes = await postBuildUnsignedPayloadTransaction( - account, - transaction, - pubkey, - unsignedPayload, - signature, - ); - try { - const gasUsed = await cosmosAPI.simulate(tx_bytes); - estimatedGas = gasUsed - .multipliedBy(new BigNumber(getEnv("COSMOS_GAS_AMPLIFIER"))) - .integerValue(BigNumber.ROUND_CEIL); - } catch (e) { - log("cosmos/simulate", "failed to estimate gas usage during tx simulation", { - e, - }); - } + try { + gasUsed = await cosmosAPI.simulate(txToSimulate); + } catch (e) { + log("debug", "failed to estimate gas usage during tx simulation", { + e, + }); } - const estimatedFees = estimatedGas - .times(cosmosCurrency.minGasPrice) + const gasWanted = gasUsed + .times(getEnv("COSMOS_GAS_AMPLIFIER")) + .integerValue(BigNumber.ROUND_CEIL); + + const gasWantedFees = gasWanted + .times(chainInstance.minGasPrice) .integerValue(BigNumber.ROUND_CEIL); - return { estimatedFees, estimatedGas }; + return { gasWanted, gasWantedFees }; }; export const prepareTransaction = async ( @@ -107,7 +104,7 @@ export const prepareTransaction = async ( memo = "Ledger Live"; } - const { estimatedFees, estimatedGas } = await calculateFees({ + const { gasWanted, gasWantedFees } = await calculateFees({ account, transaction: { ...transaction, @@ -119,20 +116,20 @@ export const prepareTransaction = async ( }); if (transaction.useAllAmount) { - amount = getMaxEstimatedBalance(account as CosmosAccount, estimatedFees); + amount = getMaxEstimatedBalance(account as CosmosAccount, gasWantedFees); } if ( transaction.memo !== memo || - !estimatedFees.eq(transaction.fees || new BigNumber(0)) || - !estimatedGas.eq(transaction.gas || new BigNumber(0)) || + !gasWantedFees.eq(transaction.fees || new BigNumber(0)) || + !gasWanted.eq(transaction.gas || new BigNumber(0)) || !amount.eq(transaction.amount) ) { return { ...transaction, memo, - fees: estimatedFees, - gas: estimatedGas, + fees: gasWantedFees, + gas: gasWanted, amount, }; } diff --git a/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts b/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts index f1d2f03e3c82..377c6ef81fd6 100644 --- a/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts +++ b/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts @@ -1,16 +1,16 @@ -import type { Transaction } from "./types"; +import { RETURN_CODES, Transaction } from "./types"; import { Observable } from "rxjs"; import { withDevice } from "../../hw/deviceAccess"; import { encodeOperationId } from "../../operation"; -import { LedgerSigner } from "@cosmjs/ledger-amino"; -import { stringToPath } from "@cosmjs/crypto"; -import { buildTransaction, postBuildTransaction } from "./js-buildTransaction"; +import { txToMessages, buildTransaction } from "./js-buildTransaction"; import BigNumber from "bignumber.js"; -import { makeSignDoc } from "@cosmjs/launchpad"; - import type { Operation, OperationType, SignOperationFnSignature } from "@ledgerhq/types-live"; import { CosmosAPI } from "./api/Cosmos"; import cryptoFactory from "./chain/chain"; +import { Secp256k1Signature } from "@cosmjs/crypto"; +import { CosmosApp } from "@zondax/ledger-cosmos-js"; +import { serializeSignDoc, makeSignDoc } from "@cosmjs/amino"; +import { UserRefusedOnDevice, ExpertModeRequired } from "@ledgerhq/errors"; const signOperation: SignOperationFnSignature = ({ account, deviceId, transaction }) => withDevice(deviceId)( @@ -20,14 +20,16 @@ const signOperation: SignOperationFnSignature = ({ account, deviceI async function main() { const cosmosAPI = new CosmosAPI(account.currency.id); - const { accountNumber, sequence } = await cosmosAPI.getAccount(account.freshAddress); + const chainInstance = cryptoFactory(account.currency.id); + + const { accountNumber, sequence, pubKeyType } = await cosmosAPI.getAccount( + account.freshAddress, + chainInstance.defaultPubKeyType, + ); o.next({ type: "device-signature-requested" }); - const { aminoMsgs, protoMsgs } = await buildTransaction(account, transaction); - if (!transaction.gas) { - throw new Error("transaction.gas is missing"); - } - if (!transaction.fees) { - throw new Error("transaction.fees is missing"); + const { aminoMsgs, protoMsgs } = txToMessages(account, transaction); + if (transaction.fees == null || transaction.gas == null) { + throw new Error("Transaction misses gas information"); } const feeToEncode = { amount: [ @@ -50,14 +52,42 @@ const signOperation: SignOperationFnSignature = ({ account, deviceI accountNumber.toString(), sequence.toString(), ); - const ledgerSigner = new LedgerSigner(transport, { - hdPaths: [stringToPath("m/" + account.freshAddressPath)], - prefix: cryptoFactory(account.currency.id).prefix, + const tx = Buffer.from(serializeSignDoc(signDoc)); + const app = new CosmosApp(transport); + const path = account.freshAddressPath.split("/").map(p => parseInt(p.replace("'", ""))); + + const { compressed_pk } = await app.getAddressAndPubKey(path, chainInstance.prefix); + const pubKey = Buffer.from(compressed_pk).toString("base64"); + + // HRP is only needed when signing for ethermint chains + const signResponseApp = + path[1] === 60 + ? await app.sign(path, tx, chainInstance.prefix) + : await app.sign(path, tx); + + switch (signResponseApp.return_code) { + case RETURN_CODES.EXPERT_MODE_REQUIRED: + throw new ExpertModeRequired(); + case RETURN_CODES.REFUSED_OPERATION: + throw new UserRefusedOnDevice(); + } + + const signature = Buffer.from( + Secp256k1Signature.fromDer(signResponseApp.signature).toFixedLength(), + ); + + const txBytes = buildTransaction({ + protoMsgs, + memo: transaction.memo || "", + pubKeyType, + pubKey, + feeAmount: signDoc.fee.amount as any, + gasLimit: signDoc.fee.gas, + sequence: signDoc.sequence, + signature, }); - const signResponse = await ledgerSigner.signAmino(account.freshAddress, signDoc); - const tx_bytes = await postBuildTransaction(signResponse, protoMsgs); - const signed = Buffer.from(tx_bytes).toString("hex"); + const signed = Buffer.from(txBytes).toString("hex"); if (cancelled) { return; diff --git a/libs/ledger-live-common/src/families/cosmos/specs.ts b/libs/ledger-live-common/src/families/cosmos/specs.ts index f133ac86aa3a..b162a03411eb 100644 --- a/libs/ledger-live-common/src/families/cosmos/specs.ts +++ b/libs/ledger-live-common/src/families/cosmos/specs.ts @@ -9,6 +9,7 @@ import { expectSiblingsHaveSpendablePartGreaterThan, genericTestDestination, pickSiblings, + SpeculosButton, } from "../../bot/specs"; import type { AppSpec, MutationSpec } from "../../bot/types"; import { getCryptoCurrencyById } from "../../currencies"; @@ -430,17 +431,28 @@ function cosmosLikeMutations(minimalTransactionAmount: BigNumber): MutationSpec< ]; } -const generateGenericCosmosTest = (currencyId: string, config?: Partial>) => { +const generateGenericCosmosTest = ( + currencyId: string, + isExpertModeRequired: boolean, + config?: Partial>, +) => { return { name: currencyId, currency: getCryptoCurrencyById(currencyId), appQuery: { model: DeviceModelId.nanoS, appName: "Cosmos", + appVersion: "2.34.11", }, genericDeviceAction: acceptTransaction, testTimeout: 2 * 60 * 1000, test: cosmosLikeTest, + onSpeculosDeviceCreated: isExpertModeRequired + ? async ({ transport }) => { + await transport.button(SpeculosButton.RIGHT); + await transport.button(SpeculosButton.BOTH); + } + : undefined, ...config, }; }; @@ -449,7 +461,7 @@ const generateGenericCosmosTest = (currencyId: string, config?: Partial> = { desmos: "cosmos19rl4cm2hmr8afy4kldpxz3fka4jguq0auqdal4", umee: "cosmos19rl4cm2hmr8afy4kldpxz3fka4jguq0auqdal4", coreum: "core1fjxa5s8wz75rp7qgrs9lqvw0qr2gt0nny6sjz9", + injective: "inj1d2kmwygyqh2vf658yns8ytqdffhsr54urpuesj", }; /** diff --git a/libs/ledgerjs/packages/cryptoassets/src/currencies.ts b/libs/ledgerjs/packages/cryptoassets/src/currencies.ts index f5fae5128683..4351d99eff80 100644 --- a/libs/ledgerjs/packages/cryptoassets/src/currencies.ts +++ b/libs/ledgerjs/packages/cryptoassets/src/currencies.ts @@ -3599,6 +3599,35 @@ export const cryptocurrenciesById: Record = { }, ], }, + injective: { + type: "CryptoCurrency", + id: "injective", + coinType: 60, + name: "Injective", + managerAppName: "Cosmos", + ticker: "INJ", + scheme: "injective", + color: "#0bd", + family: "cosmos", + units: [ + { + name: "Injective", + code: "INJ", + magnitude: 18, + }, + { + name: "Micro-Injective", + code: "inj", + magnitude: 0, + }, + ], + explorerViews: [ + { + tx: "https://www.mintscan.io/injective/txs/$hash", + address: "https://www.mintscan.io/injective/validators/$address", + }, + ], + }, // ethereum nanoapp currencies // Light Integrations are at the end of the list until we figure out a way to fix the ticker/managerApp collisions arbitrum: { diff --git a/libs/ledgerjs/packages/errors/src/index.ts b/libs/ledgerjs/packages/errors/src/index.ts index 5fb5f23e8233..55ddde205945 100644 --- a/libs/ledgerjs/packages/errors/src/index.ts +++ b/libs/ledgerjs/packages/errors/src/index.ts @@ -118,6 +118,7 @@ export const UserRefusedAddress = createCustomErrorClass("UserRefusedAddress"); export const UserRefusedFirmwareUpdate = createCustomErrorClass("UserRefusedFirmwareUpdate"); export const UserRefusedAllowManager = createCustomErrorClass("UserRefusedAllowManager"); export const UserRefusedOnDevice = createCustomErrorClass("UserRefusedOnDevice"); // TODO rename because it's just for transaction refusal +export const ExpertModeRequired = createCustomErrorClass("ExpertModeRequired"); export const TransportOpenUserCancelled = createCustomErrorClass("TransportOpenUserCancelled"); export const TransportInterfaceNotAvailable = createCustomErrorClass( "TransportInterfaceNotAvailable", diff --git a/libs/ledgerjs/packages/types-cryptoassets/src/index.ts b/libs/ledgerjs/packages/types-cryptoassets/src/index.ts index a46d0ac66579..3fd5667cbbad 100644 --- a/libs/ledgerjs/packages/types-cryptoassets/src/index.ts +++ b/libs/ledgerjs/packages/types-cryptoassets/src/index.ts @@ -151,6 +151,7 @@ export type CryptoCurrencyId = | "velas_evm" | "syscoin" | "internet_computer" + | "injective" | "telos_evm" | "klaytn" | "polygon_zk_evm" diff --git a/libs/ledgerjs/packages/types-live/README.md b/libs/ledgerjs/packages/types-live/README.md index c3af7e103fbd..63e1d2ba67d4 100644 --- a/libs/ledgerjs/packages/types-live/README.md +++ b/libs/ledgerjs/packages/types-live/README.md @@ -624,7 +624,7 @@ Type: [Feature](#feature)\ Currency Features type. -Type: {currencyAvalancheCChain: [DefaultFeature](#defaultfeature), currencyStacks: [DefaultFeature](#defaultfeature), currencyOptimism: [DefaultFeature](#defaultfeature), currencyOptimismGoerli: [DefaultFeature](#defaultfeature), currencyArbitrum: [DefaultFeature](#defaultfeature), currencyArbitrumGoerli: [DefaultFeature](#defaultfeature), currencyRsk: [DefaultFeature](#defaultfeature), currencyBittorrent: [DefaultFeature](#defaultfeature), currencyKavaEvm: [DefaultFeature](#defaultfeature), currencyEvmosEvm: [DefaultFeature](#defaultfeature), currencyEnergyWeb: [DefaultFeature](#defaultfeature), currencyAstar: [DefaultFeature](#defaultfeature), currencyMetis: [DefaultFeature](#defaultfeature), currencyBoba: [DefaultFeature](#defaultfeature), currencyMoonriver: [DefaultFeature](#defaultfeature), currencyVelasEvm: [DefaultFeature](#defaultfeature), currencySyscoin: [DefaultFeature](#defaultfeature), currencyAxelar: [DefaultFeature](#defaultfeature), currencySecretNetwork: [DefaultFeature](#defaultfeature), currencyDesmos: [DefaultFeature](#defaultfeature), currencyUmee: [DefaultFeature](#defaultfeature), currencyStargaze: [DefaultFeature](#defaultfeature), currencyOnomy: [DefaultFeature](#defaultfeature), currencyPersistence: [DefaultFeature](#defaultfeature), currencyQuicksilver: [DefaultFeature](#defaultfeature), currencyInternetComputer: [DefaultFeature](#defaultfeature), currencyTelosEvm: [DefaultFeature](#defaultfeature), currencyCoreum: [DefaultFeature](#defaultfeature), currencyPolygonZkEvm: [DefaultFeature](#defaultfeature), currencyPolygonZkEvmTestnet: [DefaultFeature](#defaultfeature), currencyBase: [DefaultFeature](#defaultfeature), currencyBaseGoerli: [DefaultFeature](#defaultfeature), currencyKlaytn: [DefaultFeature](#defaultfeature)} +Type: {currencyAvalancheCChain: [DefaultFeature](#defaultfeature), currencyStacks: [DefaultFeature](#defaultfeature), currencyOptimism: [DefaultFeature](#defaultfeature), currencyOptimismGoerli: [DefaultFeature](#defaultfeature), currencyArbitrum: [DefaultFeature](#defaultfeature), currencyArbitrumGoerli: [DefaultFeature](#defaultfeature), currencyRsk: [DefaultFeature](#defaultfeature), currencyBittorrent: [DefaultFeature](#defaultfeature), currencyKavaEvm: [DefaultFeature](#defaultfeature), currencyEvmosEvm: [DefaultFeature](#defaultfeature), currencyEnergyWeb: [DefaultFeature](#defaultfeature), currencyAstar: [DefaultFeature](#defaultfeature), currencyMetis: [DefaultFeature](#defaultfeature), currencyBoba: [DefaultFeature](#defaultfeature), currencyMoonriver: [DefaultFeature](#defaultfeature), currencyVelasEvm: [DefaultFeature](#defaultfeature), currencySyscoin: [DefaultFeature](#defaultfeature), currencyAxelar: [DefaultFeature](#defaultfeature), currencySecretNetwork: [DefaultFeature](#defaultfeature), currencyDesmos: [DefaultFeature](#defaultfeature), currencyUmee: [DefaultFeature](#defaultfeature), currencyStargaze: [DefaultFeature](#defaultfeature), currencyOnomy: [DefaultFeature](#defaultfeature), currencyPersistence: [DefaultFeature](#defaultfeature), currencyQuicksilver: [DefaultFeature](#defaultfeature), currencyInternetComputer: [DefaultFeature](#defaultfeature), currencyInjective: [DefaultFeature](#defaultfeature), currencyTelosEvm: [DefaultFeature](#defaultfeature), currencyCoreum: [DefaultFeature](#defaultfeature), currencyPolygonZkEvm: [DefaultFeature](#defaultfeature), currencyPolygonZkEvmTestnet: [DefaultFeature](#defaultfeature), currencyBase: [DefaultFeature](#defaultfeature), currencyBaseGoerli: [DefaultFeature](#defaultfeature), currencyKlaytn: [DefaultFeature](#defaultfeature)} #### Properties @@ -654,6 +654,7 @@ Type: {currencyAvalancheCChain: [DefaultFeature](#defaultfeature), currencyStack * `currencyPersistence` **[DefaultFeature](#defaultfeature)** * `currencyQuicksilver` **[DefaultFeature](#defaultfeature)** * `currencyInternetComputer` **[DefaultFeature](#defaultfeature)** +* `currencyInjective` **[DefaultFeature](#defaultfeature)** * `currencyTelosEvm` **[DefaultFeature](#defaultfeature)** * `currencyCoreum` **[DefaultFeature](#defaultfeature)** * `currencyPolygonZkEvm` **[DefaultFeature](#defaultfeature)** diff --git a/libs/ledgerjs/packages/types-live/src/feature.ts b/libs/ledgerjs/packages/types-live/src/feature.ts index af0c3630bc4e..1527748613c3 100644 --- a/libs/ledgerjs/packages/types-live/src/feature.ts +++ b/libs/ledgerjs/packages/types-live/src/feature.ts @@ -107,6 +107,7 @@ export type CurrencyFeatures = { currencyPersistence: DefaultFeature; currencyQuicksilver: DefaultFeature; currencyInternetComputer: DefaultFeature; + currencyInjective: DefaultFeature; currencyTelosEvm: DefaultFeature; currencyCoreum: DefaultFeature; currencyPolygonZkEvm: DefaultFeature; diff --git a/libs/ui/packages/crypto-icons/src/svg/INJ.svg b/libs/ui/packages/crypto-icons/src/svg/INJ.svg new file mode 100644 index 000000000000..baff64d6fb7c --- /dev/null +++ b/libs/ui/packages/crypto-icons/src/svg/INJ.svg @@ -0,0 +1,16 @@ + + + + + + + diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1a0477ad374e..7247293746cb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1715,6 +1715,12 @@ importers: specifier: ^6.6.7 version: 6.6.7 devDependencies: + '@ledgerhq/hw-transport-node-speculos': + specifier: workspace:^ + version: link:../ledgerjs/packages/hw-transport-node-speculos + '@ledgerhq/hw-transport-node-speculos-http': + specifier: workspace:^ + version: link:../ledgerjs/packages/hw-transport-node-speculos-http '@types/invariant': specifier: ^2.2.2 version: 2.2.35 @@ -1957,20 +1963,14 @@ importers: specifier: ^3.0.1 version: 3.0.1 '@cosmjs/amino': - specifier: ^0.28.4 - version: 0.28.4 + specifier: ^0.31.1 + version: 0.31.1 '@cosmjs/crypto': - specifier: ^0.26.5 - version: 0.26.6 + specifier: ^0.31.0 + version: 0.31.0 '@cosmjs/launchpad': specifier: ^0.26.5 version: 0.26.6 - '@cosmjs/ledger-amino': - specifier: ^0.26.5 - version: 0.26.6 - '@cosmjs/proto-signing': - specifier: ^0.26.5 - version: 0.26.6 '@cosmjs/stargate': specifier: ^0.26.5 version: 0.26.6 @@ -2172,6 +2172,9 @@ importers: '@zondax/izari-filecoin': specifier: ^1.2.0 version: 1.2.0 + '@zondax/ledger-cosmos-js': + specifier: ^3.0.3 + version: 3.0.3(@types/node@18.15.11)(eslint@8.41.0)(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.3) '@zondax/ledger-filecoin': specifier: ^0.11.2 version: 0.11.2 @@ -4363,7 +4366,7 @@ importers: version: 11.0.0 lint-staged: specifier: ^14.0.0 - version: 14.0.1 + version: 14.0.0 libs/ui/examples/next.js: dependencies: @@ -4472,7 +4475,7 @@ importers: version: 6.3.0 esbuild: specifier: ^0.19.0 - version: 0.19.3 + version: 0.19.0 glob: specifier: ^7.2.0 version: 7.2.0 @@ -4523,7 +4526,7 @@ importers: version: 6.3.0 esbuild: specifier: ^0.19.0 - version: 0.19.3 + version: 0.19.0 glob: specifier: ^7.2.0 version: 7.2.0 @@ -4623,7 +4626,7 @@ importers: version: 11.0.0 '@emotion/native': specifier: ^11.0.0 - version: 11.11.0(react-native@0.71.6)(react@18.0.0) + version: 11.0.0(@babel/core@7.22.8)(react-native@0.71.6)(react@18.0.0) '@expo/metro-config': specifier: ^0.7.1 version: 0.7.1 @@ -4659,7 +4662,7 @@ importers: version: 6.5.6(@storybook/addon-actions@6.5.16)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) '@storybook/addon-ondevice-backgrounds': specifier: 6.5.6 - version: 6.5.6(@emotion/native@11.11.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) + version: 6.5.6(@emotion/native@11.0.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) '@storybook/addon-ondevice-controls': specifier: 6.5.6 version: 6.5.6(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.4.2)(@storybook/addon-controls@6.5.16)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) @@ -4963,7 +4966,7 @@ importers: version: 3.0.11 esbuild: specifier: ^0.19.0 - version: 0.19.3 + version: 0.19.0 eslint-plugin-react: specifier: ^7.32.2 version: 7.32.2(eslint@8.41.0) @@ -5002,7 +5005,7 @@ importers: version: 0.2.9 webpack: specifier: '*' - version: 5.72.1(esbuild@0.19.3) + version: 5.72.1(esbuild@0.19.0) dependenciesMeta: '@ledgerhq/crypto-icons-ui': injected: true @@ -5013,7 +5016,7 @@ importers: devDependencies: esbuild: specifier: ^0.19.0 - version: 0.19.3 + version: 0.19.0 tiny-glob: specifier: ^0.2.9 version: 0.2.9 @@ -5231,13 +5234,13 @@ importers: devDependencies: '@craftamap/esbuild-plugin-html': specifier: ^0.6.0 - version: 0.6.1(esbuild@0.19.3) + version: 0.6.1(esbuild@0.19.0) dotenv: specifier: ^16.0.0 version: 16.0.3 esbuild: specifier: ^0.19.0 - version: 0.19.3 + version: 0.19.0 esbuild-plugin-import-glob: specifier: ^0.1.1 version: 0.1.1 @@ -5350,6 +5353,15 @@ packages: - supports-color dev: false + /@achrinza/node-ipc@9.2.7: + resolution: {integrity: sha512-/EvNkqB4HNxPWCZASmgrjqG8gIdPOolD67LGASvGMp/FY5ne0rbvpYg5o9x8RmgjAl8KdmNQ4YlV1et9DYiW8g==} + engines: {node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20} + dependencies: + '@node-ipc/js-queue': 2.0.3 + event-pubsub: 4.3.0 + js-message: 1.0.7 + dev: false + /@actions/cache@3.0.4: resolution: {integrity: sha512-9RwVL8/ISJoYWFNH1wR/C26E+M3HDkGPWmbFJMMCKwTkjbNZJreMT4XaR/EB1bheIvN4PREQxEQQVJ18IPnf/Q==} dependencies: @@ -5431,13 +5443,6 @@ packages: '@jridgewell/gen-mapping': 0.1.1 '@jridgewell/trace-mapping': 0.3.18 - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 - /@apideck/better-ajv-errors@0.3.6(ajv@8.11.0): resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} engines: {node: '>=10'} @@ -5523,13 +5528,13 @@ packages: resolution: {integrity: sha512-RuhyUY9hCd6KWA2DMF/U6rilYLLRYrDY6e0lq3Of1yzSRFxi4bk9ZMCF0mxf/9ppsB5eudUjrOypYgm6Axt3zw==} dependencies: '@aws-sdk/util-base64': 3.310.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/chunked-blob-reader@3.310.0: resolution: {integrity: sha512-CrJS3exo4mWaLnWxfCH+w88Ou0IcAZSIkk4QbmxiHl/5Dq705OLoxf4385MVyExpqpeVJYOYQ2WaD8i/pQZ2fg==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/client-s3@3.370.0: @@ -5631,7 +5636,7 @@ packages: '@smithy/util-defaults-mode-node': 1.0.2 '@smithy/util-retry': 1.0.4 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - aws-crt dev: true @@ -5672,7 +5677,7 @@ packages: '@smithy/util-defaults-mode-node': 1.0.2 '@smithy/util-retry': 1.0.4 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - aws-crt dev: true @@ -5717,7 +5722,7 @@ packages: '@smithy/util-retry': 1.0.4 '@smithy/util-utf8': 1.0.2 fast-xml-parser: 4.2.5 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - aws-crt dev: true @@ -5729,7 +5734,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/credential-provider-ini@3.370.0: @@ -5745,7 +5750,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - aws-crt dev: true @@ -5764,7 +5769,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - aws-crt dev: true @@ -5777,7 +5782,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/credential-provider-sso@3.370.0: @@ -5790,7 +5795,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - aws-crt dev: true @@ -5802,7 +5807,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/hash-blob-browser@3.370.0: @@ -5811,7 +5816,7 @@ packages: '@aws-sdk/chunked-blob-reader': 3.310.0 '@aws-sdk/chunked-blob-reader-native': 3.310.0 '@aws-sdk/types': 3.370.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/hash-stream-node@3.370.0: @@ -5820,14 +5825,14 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@aws-sdk/util-utf8': 3.310.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/is-array-buffer@3.310.0: resolution: {integrity: sha512-urnbcCR+h9NWUnmOtet/s4ghvzsidFmspfhYaHAmSRdy9yDjdjBJMFjjsn85A1ODUktztm+cVncXjQ38WCMjMQ==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/md5-js@3.370.0: @@ -5835,7 +5840,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@aws-sdk/util-utf8': 3.310.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-bucket-endpoint@3.370.0: @@ -5847,7 +5852,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 '@smithy/util-config-provider': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-expect-continue@3.370.0: @@ -5857,7 +5862,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-flexible-checksums@3.370.0: @@ -5871,7 +5876,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-host-header@3.370.0: @@ -5881,7 +5886,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-location-constraint@3.370.0: @@ -5890,7 +5895,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-logger@3.370.0: @@ -5899,7 +5904,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-recursion-detection@3.370.0: @@ -5909,7 +5914,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-sdk-s3@3.370.0: @@ -5920,7 +5925,7 @@ packages: '@aws-sdk/util-arn-parser': 3.310.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-sdk-sts@3.370.0: @@ -5930,7 +5935,7 @@ packages: '@aws-sdk/middleware-signing': 3.370.0 '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-signing@3.370.0: @@ -5943,7 +5948,7 @@ packages: '@smithy/signature-v4': 1.0.2 '@smithy/types': 1.1.1 '@smithy/util-middleware': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-ssec@3.370.0: @@ -5952,7 +5957,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/middleware-user-agent@3.370.0: @@ -5963,7 +5968,7 @@ packages: '@aws-sdk/util-endpoints': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/signature-v4-multi-region@3.370.0: @@ -5979,7 +5984,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/signature-v4': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/token-providers@3.370.0: @@ -5991,7 +5996,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - aws-crt dev: true @@ -6001,14 +6006,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-arn-parser@3.310.0: resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-base64@3.310.0: @@ -6016,7 +6021,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/util-buffer-from': 3.310.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-buffer-from@3.310.0: @@ -6024,7 +6029,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/is-array-buffer': 3.310.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-endpoints@3.370.0: @@ -6032,14 +6037,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/types': 3.370.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-locate-window@3.310.0: resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-user-agent-browser@3.370.0: @@ -6048,7 +6053,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-user-agent-node@3.370.0: @@ -6063,13 +6068,13 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/node-config-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-utf8-browser@3.259.0: resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/util-utf8@3.310.0: @@ -6077,21 +6082,21 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/util-buffer-from': 3.310.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@aws-sdk/xml-builder@3.310.0: resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@azure/abort-controller@1.1.0: resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@azure/core-asynciterator-polyfill@1.0.2: @@ -6104,7 +6109,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@azure/abort-controller': 1.1.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@azure/core-http@2.2.6: @@ -6121,7 +6126,7 @@ packages: node-fetch: 2.6.9 process: 0.11.10 tough-cookie: 4.0.0 - tslib: 2.6.2 + tslib: 2.6.1 tunnel: 0.0.6 uuid: 8.3.2 xml2js: 0.4.23 @@ -6135,14 +6140,14 @@ packages: dependencies: '@azure/abort-controller': 1.1.0 '@azure/logger': 1.0.3 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@azure/core-paging@1.3.0: resolution: {integrity: sha512-H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@azure/core-tracing@1.0.0-preview.13: @@ -6150,14 +6155,14 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@opentelemetry/api': 1.1.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@azure/logger@1.0.3: resolution: {integrity: sha512-aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@azure/ms-rest-js@2.6.2: @@ -6187,7 +6192,7 @@ packages: '@azure/core-tracing': 1.0.0-preview.13 '@azure/logger': 1.0.3 events: 3.3.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - encoding dev: true @@ -6223,19 +6228,16 @@ packages: dependencies: '@babel/highlight': 7.22.5 - /@babel/code-frame@7.22.13: - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.22.13 - chalk: 2.4.2 - /@babel/code-frame@7.22.5: resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.22.5 + /@babel/compat-data@7.22.5: + resolution: {integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==} + engines: {node: '>=6.9.0'} + /@babel/compat-data@7.22.9: resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} engines: {node: '>=6.9.0'} @@ -6246,12 +6248,12 @@ packages: dependencies: '@babel/code-frame': 7.22.5 '@babel/generator': 7.22.9 - '@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.3) + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.12.3) '@babel/helpers': 7.22.6 '@babel/parser': 7.22.7 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -6270,12 +6272,12 @@ packages: dependencies: '@babel/code-frame': 7.22.5 '@babel/generator': 7.22.9 - '@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.9) + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.12.9) '@babel/helpers': 7.22.6 '@babel/parser': 7.22.7 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -6288,25 +6290,25 @@ packages: - supports-color dev: true - /@babel/core@7.22.17: - resolution: {integrity: sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==} + /@babel/core@7.21.0: + resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==} engines: {node: '>=6.9.0'} dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.15 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) - '@babel/helpers': 7.22.15 - '@babel/parser': 7.22.16 - '@babel/template': 7.22.15 - '@babel/traverse': 7.22.17 - '@babel/types': 7.22.17 - convert-source-map: 1.9.0 + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.5 + '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.21.0) + '@babel/helper-module-transforms': 7.22.5 + '@babel/helpers': 7.22.5 + '@babel/parser': 7.22.5 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 + convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.1 + semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -6371,7 +6373,7 @@ packages: /@babel/generator@7.12.1: resolution: {integrity: sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 jsesc: 2.5.2 source-map: 0.5.7 dev: true @@ -6389,18 +6391,18 @@ packages: resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.18 jsesc: 2.5.2 - /@babel/generator@7.22.15: - resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==} + /@babel/generator@7.22.5: + resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.17 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 + '@babel/types': 7.22.5 + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.18 jsesc: 2.5.2 /@babel/generator@7.22.9: @@ -6416,51 +6418,41 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@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.22.15 + '@babel/types': 7.22.5 - /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/helper-validator-option': 7.22.15 - browserslist: 4.21.10 - lru-cache: 5.1.1 - semver: 6.3.1 - - /@babel/helper-compilation-targets@7.22.9: - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} + /@babel/helper-compilation-targets@7.22.5(@babel/core@7.21.0): + resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.22.5 + '@babel/core': 7.21.0 '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 + browserslist: 4.21.5 lru-cache: 5.1.1 - semver: 6.3.1 + semver: 6.3.0 - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.17): + /@babel/helper-compilation-targets@7.22.9: resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.17 '@babel/helper-validator-option': 7.22.5 browserslist: 4.21.9 lru-cache: 5.1.1 @@ -6510,56 +6502,6 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin@7.22.15: - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.8): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.8 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.8) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} @@ -6576,6 +6518,7 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + dev: false /@babel/helper-create-class-features-plugin@7.22.5: resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} @@ -6595,25 +6538,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.22.8): resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} engines: {node: '>=6.9.0'} @@ -6672,16 +6596,6 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 - /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.17): - resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.8): resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} engines: {node: '>=6.9.0'} @@ -6709,7 +6623,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/traverse': 7.22.8 debug: 4.3.4 @@ -6720,13 +6634,32 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.3.3: - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + /@babel/helper-define-polyfill-provider@0.3.1: + resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: '@babel/helper-compilation-targets': 7.22.9 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/traverse': 7.22.8 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.22.8): + resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.8) + '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + '@babel/traverse': 7.22.8 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -6734,13 +6667,29 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.17): + /@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.22.9): + resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/traverse': 7.22.8 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/helper-define-polyfill-provider@0.3.3: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) + '@babel/helper-compilation-targets': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -6787,7 +6736,7 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@babel/helper-function-name@7.22.5: resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} @@ -6806,26 +6755,28 @@ packages: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 dev: true /@babel/helper-member-expression-to-functions@7.22.15: resolution: {integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.17 + dev: false /@babel/helper-member-expression-to-functions@7.22.5: resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@babel/helper-module-imports@7.22.15: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.17 + dev: false /@babel/helper-module-imports@7.22.5: resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} @@ -6833,97 +6784,74 @@ packages: dependencies: '@babel/types': 7.22.5 - /@babel/helper-module-transforms@7.22.15: - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 - - /@babel/helper-module-transforms@7.22.15(@babel/core@7.12.3): - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.12.3 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 - dev: true - - /@babel/helper-module-transforms@7.22.15(@babel/core@7.12.9): - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} + /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.9): + resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.22.9 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.15 - dev: true + dev: false - /@babel/helper-module-transforms@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} + /@babel/helper-module-transforms@7.22.5: + resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-split-export-declaration': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 + transitivePeerDependencies: + - supports-color - /@babel/helper-module-transforms@7.22.15(@babel/core@7.22.8): - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} + /@babel/helper-module-transforms@7.22.9: + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.8 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.5 - /@babel/helper-module-transforms@7.22.15(@babel/core@7.22.9): - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} + /@babel/helper-module-transforms@7.22.9(@babel/core@7.12.3): + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.12.3 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.5 + dev: true - /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17): - resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} + /@babel/helper-module-transforms@7.22.9(@babel/core@7.12.9): + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.12.9 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.5 + dev: true /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.8): resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} @@ -6955,19 +6883,23 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 dev: true /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@babel/helper-plugin-utils@7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true + /@babel/helper-plugin-utils@7.16.7: + resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} + engines: {node: '>=6.9.0'} + /@babel/helper-plugin-utils@7.18.9: resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} engines: {node: '>=6.9.0'} @@ -6989,21 +6921,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.15 - transitivePeerDependencies: - - supports-color - - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.17): - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color @@ -7017,7 +6935,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color @@ -7031,7 +6949,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color @@ -7040,10 +6958,10 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-member-expression-to-functions': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -7057,42 +6975,10 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color - /@babel/helper-replace-supers@7.22.9: - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.17): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.8): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.8 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 - '@babel/helper-optimise-call-expression': 7.22.5 - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9): resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} engines: {node: '>=6.9.0'} @@ -7103,6 +6989,7 @@ packages: '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 + dev: false /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} @@ -7122,6 +7009,12 @@ packages: dependencies: '@babel/types': 7.22.5 + /@babel/helper-split-export-declaration@7.22.5: + resolution: {integrity: sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.5 + /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} @@ -7140,9 +7033,14 @@ packages: resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-option@7.21.0: + resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} + engines: {node: '>=6.9.0'} + /@babel/helper-validator-option@7.22.15: resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} + dev: false /@babel/helper-validator-option@7.22.5: resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} @@ -7155,17 +7053,17 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color - /@babel/helpers@7.22.15: - resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==} + /@babel/helpers@7.22.5: + resolution: {integrity: sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.22.17 - '@babel/types': 7.22.17 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 transitivePeerDependencies: - supports-color @@ -7179,14 +7077,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/highlight@7.22.13: - resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.22.15 - chalk: 2.4.2 - js-tokens: 4.0.0 - /@babel/highlight@7.22.5: resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} engines: {node: '>=6.9.0'} @@ -7200,7 +7090,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 dev: true /@babel/parser@7.18.11: @@ -7208,7 +7098,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 dev: true /@babel/parser@7.21.4: @@ -7216,14 +7106,14 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 - /@babel/parser@7.22.16: - resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==} + /@babel/parser@7.22.5: + resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.22.5 /@babel/parser@7.22.7: resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==} @@ -7285,7 +7175,6 @@ packages: /@babel/plugin-proposal-async-generator-functions@7.20.7: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7296,25 +7185,9 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.17): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.17) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17) - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7329,7 +7202,6 @@ packages: /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.9): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7366,19 +7238,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.17) - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -7408,7 +7267,6 @@ packages: /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -7422,7 +7280,6 @@ packages: /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.9): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -7440,12 +7297,14 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.8) + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.8) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.8) + '@babel/helper-replace-supers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/plugin-syntax-decorators': 7.17.0(@babel/core@7.22.8) charcodes: 0.2.0 + transitivePeerDependencies: + - supports-color /@babel/plugin-proposal-decorators@7.17.9(@babel/core@7.22.9): resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==} @@ -7454,17 +7313,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9) + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) + '@babel/helper-replace-supers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/plugin-syntax-decorators': 7.17.0(@babel/core@7.22.9) charcodes: 0.2.0 + transitivePeerDependencies: + - supports-color /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7475,7 +7335,6 @@ packages: /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7489,19 +7348,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-export-default-from': 7.16.7 - /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.22.17): - resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.17) - /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} engines: {node: '>=6.9.0'} @@ -7509,7 +7358,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.8) /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.22.9): @@ -7519,9 +7368,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.9) - dev: true /@babel/plugin-proposal-export-namespace-from@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} @@ -7557,7 +7405,6 @@ packages: /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7568,7 +7415,6 @@ packages: /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7579,7 +7425,6 @@ packages: /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7590,7 +7435,6 @@ packages: /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.9): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7607,16 +7451,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -7640,7 +7474,6 @@ packages: /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7651,7 +7484,6 @@ packages: /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7698,20 +7530,6 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3 '@babel/plugin-transform-parameters': 7.21.3 - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.17): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.17 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -7743,28 +7561,15 @@ packages: /@babel/plugin-proposal-optional-catch-binding@7.18.6: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3 - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17) - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7775,7 +7580,6 @@ packages: /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7793,17 +7597,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-syntax-optional-chaining': 7.8.3 - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.17): - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@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.22.17) - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} @@ -7829,7 +7622,6 @@ packages: /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7842,7 +7634,6 @@ packages: /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7855,12 +7646,11 @@ packages: /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.8) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.8) @@ -7870,12 +7660,11 @@ packages: /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.9): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) @@ -7885,7 +7674,6 @@ packages: /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7896,7 +7684,6 @@ packages: /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7911,14 +7698,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.17): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.8): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -7959,14 +7738,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.17): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.8): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -8024,15 +7795,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -8040,7 +7803,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -8048,7 +7811,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-export-default-from@7.16.7: resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} @@ -8058,15 +7821,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.22.17): - resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} engines: {node: '>=6.9.0'} @@ -8084,7 +7838,6 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} @@ -8110,15 +7863,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.22.17): - 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.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.22.8): resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==} engines: {node: '>=6.9.0'} @@ -8204,7 +7948,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 - dev: false /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} @@ -8223,33 +7966,6 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-jsx@7.22.5: - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.8): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.8 - '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} @@ -8259,6 +7975,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.8): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -8283,14 +8000,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -8339,14 +8048,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -8370,14 +8071,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -8401,14 +8094,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -8461,30 +8146,30 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.22.5: - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} + /@babel/plugin-syntax-typescript@7.17.10: + resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} + /@babel/plugin-syntax-typescript@7.17.10(@babel/core@7.22.8): + resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.8): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} + /@babel/plugin-syntax-typescript@7.17.10(@babel/core@7.22.9): + resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9): @@ -8495,6 +8180,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-arrow-functions@7.20.7: resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} @@ -8504,15 +8190,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.17): - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} @@ -8543,19 +8220,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.17): - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.17) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} @@ -8590,15 +8254,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -8625,15 +8280,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.17): - resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} @@ -8658,7 +8304,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-compilation-targets': 7.22.9 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 @@ -8670,25 +8316,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.17): - resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} @@ -8696,7 +8323,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.8) '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 @@ -8715,7 +8342,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 @@ -8736,16 +8363,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.5 - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.17): - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} @@ -8774,15 +8391,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.17): - resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.8): resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} @@ -8868,16 +8476,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-flow': 7.21.4 - /@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.22.17): - resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.17) - /@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} engines: {node: '>=6.9.0'} @@ -8906,15 +8504,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.17): - resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} engines: {node: '>=6.9.0'} @@ -8943,17 +8532,6 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.17): - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) - '@babel/helper-function-name': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -8984,15 +8562,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.17): - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -9019,15 +8588,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -9066,57 +8626,35 @@ packages: '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.8): + /@babel/plugin-transform-modules-commonjs@7.21.2: resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.8) + '@babel/helper-module-transforms': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.9): + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.8): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - - /@babel/plugin-transform-modules-commonjs@7.22.15: - resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-module-transforms': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - - /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-module-transforms': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.22.8 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.8) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.8): - resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.9): + resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 - '@babel/helper-module-transforms': 7.22.15(@babel/core@7.22.8) + '@babel/core': 7.22.9 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 @@ -9127,9 +8665,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-module-transforms': 7.22.15(@babel/core@7.22.9) + '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 + dev: false /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.8): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} @@ -9194,16 +8733,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.17): - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.17) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.8): resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} @@ -9272,18 +8801,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} @@ -9326,15 +8843,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.17): - resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.8): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -9361,15 +8869,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -9398,49 +8897,30 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.8): + /@babel/plugin-transform-react-display-name@7.16.7: resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.9): + /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-transform-react-display-name@7.22.5: - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.8): - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.9): + resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.9): @@ -9451,6 +8931,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-react-jsx-development@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} @@ -9470,7 +8951,6 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) - dev: true /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} @@ -9480,6 +8960,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.9) + dev: false /@babel/plugin-transform-react-jsx-self@7.18.6: resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} @@ -9489,15 +8970,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} @@ -9515,7 +8987,6 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-react-jsx-source@7.19.6: resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} @@ -9525,33 +8996,35 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.17): + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.8): resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.8): + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.9): resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.9): - resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} + /@babel/plugin-transform-react-jsx@7.18.10: + resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - dev: true + '@babel/plugin-syntax-jsx': 7.18.6 + '@babel/types': 7.22.5 /@babel/plugin-transform-react-jsx@7.18.10(@babel/core@7.22.8): resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} @@ -9578,45 +9051,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.9) '@babel/types': 7.22.5 - dev: true - - /@babel/plugin-transform-react-jsx@7.22.15: - resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5 - '@babel/types': 7.22.15 - - /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) - '@babel/types': 7.22.15 - - /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.8): - resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.8 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.8) - '@babel/types': 7.22.15 /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} @@ -9629,7 +9063,8 @@ packages: '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/types': 7.22.15 + '@babel/types': 7.22.17 + dev: false /@babel/plugin-transform-react-pure-annotations@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==} @@ -9651,7 +9086,6 @@ packages: '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} @@ -9662,6 +9096,7 @@ packages: '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.8): resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} @@ -9707,7 +9142,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3 babel-plugin-polyfill-corejs3: 0.5.2 @@ -9716,22 +9151,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-runtime@7.17.10(@babel/core@7.22.17): - resolution: {integrity: sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.17) - babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.22.17) - babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.22.17) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-runtime@7.17.10(@babel/core@7.22.8): resolution: {integrity: sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==} engines: {node: '>=6.9.0'} @@ -9739,7 +9158,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.8) babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.22.8) @@ -9755,7 +9174,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.9) babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.22.9) @@ -9772,15 +9191,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -9808,16 +9218,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.17): - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -9846,15 +9246,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -9881,15 +9272,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.17): - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -9926,51 +9308,43 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typescript@7.16.8(@babel/core@7.22.8): + /@babel/plugin-transform-typescript@7.16.8: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.8) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.8) - - /@babel/plugin-transform-typescript@7.22.15: - resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15 + '@babel/helper-create-class-features-plugin': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5 + '@babel/plugin-syntax-typescript': 7.17.10 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} + /@babel/plugin-transform-typescript@7.16.8(@babel/core@7.22.8): + resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.22.8 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.8) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.8) + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.8): - resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} + /@babel/plugin-transform-typescript@7.16.8(@babel/core@7.22.9): + resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.8) + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.8) + '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} @@ -9983,6 +9357,7 @@ packages: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) + dev: false /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.8): resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} @@ -10011,16 +9386,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.17): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.17) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -10295,28 +9660,28 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-flow@7.16.7(@babel/core@7.22.17): + /@babel/preset-flow@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.17) + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.8) + dev: true - /@babel/preset-flow@7.16.7(@babel/core@7.22.8): + /@babel/preset-flow@7.16.7(@babel/core@7.22.9): resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.8) - dev: true + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) /@babel/preset-modules@0.1.5(@babel/core@7.22.8): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -10370,7 +9735,6 @@ packages: '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx-development': 7.16.7(@babel/core@7.22.9) '@babel/plugin-transform-react-pure-annotations': 7.16.7(@babel/core@7.22.9) - dev: true /@babel/preset-react@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} @@ -10385,6 +9749,7 @@ packages: '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.9) + dev: false /@babel/preset-typescript@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} @@ -10394,21 +9759,23 @@ packages: dependencies: '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) + '@babel/helper-validator-option': 7.21.0 + '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) + transitivePeerDependencies: + - supports-color - /@babel/preset-typescript@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==} + /@babel/preset-typescript@7.16.7(@babel/core@7.22.9): + resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/helper-validator-option': 7.21.0 + '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.9) + transitivePeerDependencies: + - supports-color /@babel/preset-typescript@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==} @@ -10422,19 +9789,7 @@ packages: '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.9) '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.9) - - /@babel/register@7.17.7(@babel/core@7.22.17): - resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - 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 /@babel/register@7.17.7(@babel/core@7.22.9): resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} @@ -10448,7 +9803,6 @@ packages: make-dir: 2.1.0 pirates: 4.0.5 source-map-support: 0.5.21 - dev: true /@babel/regjsgen@0.8.0: resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} @@ -10483,15 +9837,7 @@ packages: dependencies: '@babel/code-frame': 7.22.5 '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 - - /@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/parser': 7.22.16 - '@babel/types': 7.22.17 + '@babel/types': 7.22.5 /@babel/template@7.22.5: resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} @@ -10512,7 +9858,7 @@ packages: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -10530,24 +9876,7 @@ packages: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - /@babel/traverse@7.22.17: - resolution: {integrity: sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.15 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.16 - '@babel/types': 7.22.17 + '@babel/types': 7.22.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -10564,12 +9893,11 @@ packages: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true /@babel/traverse@7.22.8: resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==} @@ -10610,7 +9938,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 dev: true @@ -10619,15 +9947,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.15 - to-fast-properties: 2.0.0 - - /@babel/types@7.22.15: - resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 /@babel/types@7.22.17: @@ -11303,13 +10623,13 @@ packages: '@cosmjs/utils': 0.26.6 dev: false - /@cosmjs/amino@0.28.4: - resolution: {integrity: sha512-b8y5gFC0eGrH0IoYSNtDmTdsTgeQ1KFZ5YVOeIiKmzF91MeiciYO/MNqc027kctacZ+UbnVWGEUGyRBPi9ta/g==} + /@cosmjs/amino@0.31.1: + resolution: {integrity: sha512-kkB9IAkNEUFtjp/uwHv95TgM8VGJ4VWfZwrTyLNqBDD1EpSX2dsNrmUe7k8OMPzKlZUFcKmD4iA0qGvIwzjbGA==} dependencies: - '@cosmjs/crypto': 0.28.4 - '@cosmjs/encoding': 0.28.4 - '@cosmjs/math': 0.28.4 - '@cosmjs/utils': 0.28.4 + '@cosmjs/crypto': 0.31.1 + '@cosmjs/encoding': 0.31.1 + '@cosmjs/math': 0.31.1 + '@cosmjs/utils': 0.31.1 dev: false /@cosmjs/crypto@0.24.1: @@ -11359,16 +10679,28 @@ packages: sha.js: 2.4.11 dev: false - /@cosmjs/crypto@0.28.4: - resolution: {integrity: sha512-JRxNLlED3DDh9d04A0RcRw3mYkoobN7q7wafUFy3vI1TjoyWx33v0gqqaYE6/hoo9ghUrJSVOfzVihl8fZajJA==} + /@cosmjs/crypto@0.31.0: + resolution: {integrity: sha512-UaqCe6Tgh0pe1QlZ66E13t6FlIF86QrnBXXq+EN7Xe1Rouza3fJ1ojGlPleJZkBoq3tAyYVIOOqdZIxtVj/sIQ==} dependencies: - '@cosmjs/encoding': 0.28.4 - '@cosmjs/math': 0.28.4 - '@cosmjs/utils': 0.28.4 + '@cosmjs/encoding': 0.31.1 + '@cosmjs/math': 0.31.1 + '@cosmjs/utils': 0.31.1 '@noble/hashes': 1.3.1 bn.js: 5.2.1 elliptic: 6.5.4 - libsodium-wrappers: 0.7.10 + libsodium-wrappers-sumo: 0.7.11 + dev: false + + /@cosmjs/crypto@0.31.1: + resolution: {integrity: sha512-4R/SqdzdVzd4E5dpyEh1IKm5GbTqwDogutyIyyb1bcOXiX/x3CrvPI9Tb4WSIMDLvlb5TVzu2YnUV51Q1+6mMA==} + dependencies: + '@cosmjs/encoding': 0.31.1 + '@cosmjs/math': 0.31.1 + '@cosmjs/utils': 0.31.1 + '@noble/hashes': 1.3.1 + bn.js: 5.2.1 + elliptic: 6.5.4 + libsodium-wrappers-sumo: 0.7.11 dev: false /@cosmjs/encoding@0.23.1: @@ -11403,8 +10735,8 @@ packages: readonly-date: 1.0.0 dev: false - /@cosmjs/encoding@0.28.4: - resolution: {integrity: sha512-N6Qnjs4dd8KwjW5m9t3L+rWYYGW2wyS+iLtJJ9DD8DiTTxpW9h7/AmUVO/dsRe5H2tV8/DzH/B9pFfpsgro22A==} + /@cosmjs/encoding@0.31.1: + resolution: {integrity: sha512-IuxP6ewwX6vg9sUJ8ocJD92pkerI4lyG8J5ynAM3NaX3q+n+uMoPRSQXNeL9bnlrv01FF1kIm8if/f5F7ZPtkA==} dependencies: base64-js: 1.5.1 bech32: 1.1.4 @@ -11448,18 +10780,6 @@ packages: fast-deep-equal: 3.1.3 dev: false - /@cosmjs/ledger-amino@0.26.6: - resolution: {integrity: sha512-L5KDfEq7EswV4ku2SbWlozfKVv9WJWtap4/7SMXKH0XrYWOIz0AYeBfM0OGtJQjuHAiD/1QJ8pam/kjUL3+quQ==} - dependencies: - '@cosmjs/amino': 0.26.6 - '@cosmjs/crypto': 0.26.6 - '@cosmjs/encoding': 0.26.6 - '@cosmjs/math': 0.26.6 - '@cosmjs/utils': 0.26.6 - ledger-cosmos-js: 2.1.8 - semver: 7.5.4 - dev: false - /@cosmjs/math@0.23.1: resolution: {integrity: sha512-xjGGogFZXLdmRumE1Wr+GlPfKznIl5Qa6K6QyZr4IjBhfB6/ZzLUihliDJp2d8zbjBJgQt9RUwP/PaFQ/yGQNg==} dependencies: @@ -11484,8 +10804,8 @@ packages: bn.js: 4.12.0 dev: false - /@cosmjs/math@0.28.4: - resolution: {integrity: sha512-wsWjbxFXvk46Dsx8jQ5vsBZOIQuiUIyaaZbUvxsgIhAMpuuBnV5O/drK87+B+4cL+umTelFqTbWnkqueVCIFxQ==} + /@cosmjs/math@0.31.1: + resolution: {integrity: sha512-kiuHV6m6DSB8/4UV1qpFhlc4ul8SgLXTGRlYkYiIIP4l0YNeJ+OpPYaOlEgx4Unk2mW3/O2FWYj7Jc93+BWXng==} dependencies: bn.js: 5.2.1 dev: false @@ -11653,17 +10973,17 @@ packages: resolution: {integrity: sha512-Zx60MMI1vffX8c2UbUMlszrGIug3TWa25bD7NF3blJ5k/MVCZFsPafEZ+jEi7kcqoxdhMhgJTI6AmUhnMfq9SQ==} dev: false - /@cosmjs/utils@0.28.4: - resolution: {integrity: sha512-lb3TU6833arPoPZF8HTeG9V418CpurvqH5Aa/ls0I0wYdPDEMO6622+PQNQhQ8Vw8Az2MXoSyc8jsqrgawT84Q==} + /@cosmjs/utils@0.31.1: + resolution: {integrity: sha512-n4Se1wu4GnKwztQHNFfJvUeWcpvx3o8cWhSbNs9JQShEuB3nv3R5lqFBtDCgHZF/emFQAP+ZjF8bTfCs9UBGhA==} dev: false - /@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.3): + /@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.0): resolution: {integrity: sha512-FNOxFrdAozLgNbV1HZH2gVjLDax4hFxFfVH/qntvkMEkcBO2ZCIBjqlSmmmuLLi3/QyCJAaFnduBJ74jIw8zUg==} engines: {node: '>13'} peerDependencies: esbuild: '>=0.15.10' dependencies: - esbuild: 0.19.3 + esbuild: 0.19.0 jsdom: 17.0.0 lodash.template: 4.5.0 transitivePeerDependencies: @@ -12111,7 +11431,6 @@ packages: /@discoveryjs/json-ext@0.5.7: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} - dev: true /@egjs/hammerjs@2.0.17: resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==} @@ -12263,7 +11582,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.20.13 + '@babel/runtime': 7.22.10 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -12312,11 +11631,16 @@ packages: resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} dev: false - /@emotion/native@11.11.0(react-native@0.71.6)(react@18.0.0): - resolution: {integrity: sha512-t1b5bLv+o5OUNLqXlnw+LJYU10OpmYkLC/1W873Y1ohG+vObx5TT3o3Eh1okXb2KCuZTTBPgsEnU/Sl7NNkJ9Q==} + /@emotion/native@11.0.0(@babel/core@7.22.8)(react-native@0.71.6)(react@18.0.0): + resolution: {integrity: sha512-IByi+OfagLtcQsXZMkS06ztcNMZePg6dqwzM4FIkXjN4PhoeJ/jTDRICT3pTIk3ChuurX2oF8fmE+0bfvYi/SA==} peerDependencies: + '@babel/core': ^7.0.0 react-native: '>=0.14.0 <1' + peerDependenciesMeta: + '@babel/core': + optional: true dependencies: + '@babel/core': 7.22.8 '@emotion/primitives-core': 11.11.0(react@18.0.0) react-native: 0.71.6(@babel/core@7.22.8)(@babel/preset-env@7.17.10)(metro-resolver@0.76.0)(metro-transform-worker@0.76.0)(react@18.0.0) transitivePeerDependencies: @@ -12330,7 +11654,7 @@ packages: '@emotion/react': ^11.0.0-rc.0 react: '>=16.8.0' dependencies: - css-to-react-native: 3.2.0 + css-to-react-native: 3.0.0 react: 18.0.0 dev: true @@ -12469,8 +11793,8 @@ packages: dev: true optional: true - /@esbuild/android-arm64@0.19.3: - resolution: {integrity: sha512-w+Akc0vv5leog550kjJV9Ru+MXMR2VuMrui3C61mnysim0gkFCPOUTAfzTP0qX+HpN9Syu3YA3p1hf3EPqObRw==} + /@esbuild/android-arm64@0.19.0: + resolution: {integrity: sha512-AzsozJnB+RNaDncBCs3Ys5g3kqhPFUueItfEaCpp89JH2naFNX2mYDIvUgPYMqqjm8hiFoo+jklb3QHZyR3ubw==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -12496,8 +11820,8 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.19.3: - resolution: {integrity: sha512-Lemgw4io4VZl9GHJmjiBGzQ7ONXRfRPHcUEerndjwiSkbxzrpq0Uggku5MxxrXdwJ+pTj1qyw4jwTu7hkPsgIA==} + /@esbuild/android-arm@0.19.0: + resolution: {integrity: sha512-GAkjUyHgWTYuex3evPd5V7uV/XS4LMKr1PWHRPW1xNyy/Jx08x3uTrDFRefBYLKT/KpaWM8/YMQcwbp5a3yIDA==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -12523,8 +11847,8 @@ packages: dev: true optional: true - /@esbuild/android-x64@0.19.3: - resolution: {integrity: sha512-FKQJKkK5MXcBHoNZMDNUAg1+WcZlV/cuXrWCoGF/TvdRiYS4znA0m5Il5idUwfxrE20bG/vU1Cr5e1AD6IEIjQ==} + /@esbuild/android-x64@0.19.0: + resolution: {integrity: sha512-SUG8/qiVhljBDpdkHQ9DvOWbp7hFFIP0OzxOTptbmVsgBgzY6JWowmMd6yJuOhapfxmj/DrvwKmjRLvVSIAKZg==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -12550,8 +11874,8 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64@0.19.3: - resolution: {integrity: sha512-kw7e3FXU+VsJSSSl2nMKvACYlwtvZB8RUIeVShIEY6PVnuZ3c9+L9lWB2nWeeKWNNYDdtL19foCQ0ZyUL7nqGw==} + /@esbuild/darwin-arm64@0.19.0: + resolution: {integrity: sha512-HkxZ8k3Jvcw0FORPNTavA8BMgQjLOB6AajT+iXmil7BwY3gU1hWvJJAyWyEogCmA4LdbGvKF8vEykdmJ4xNJJQ==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -12577,8 +11901,8 @@ packages: dev: true optional: true - /@esbuild/darwin-x64@0.19.3: - resolution: {integrity: sha512-tPfZiwF9rO0jW6Jh9ipi58N5ZLoSjdxXeSrAYypy4psA2Yl1dAMhM71KxVfmjZhJmxRjSnb29YlRXXhh3GqzYw==} + /@esbuild/darwin-x64@0.19.0: + resolution: {integrity: sha512-9IRWJjqpWFHM9a5Qs3r3bK834NCFuDY5ZaLrmTjqE+10B6w65UMQzeZjh794JcxpHolsAHqwsN/33crUXNCM2Q==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -12604,8 +11928,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64@0.19.3: - resolution: {integrity: sha512-ERDyjOgYeKe0Vrlr1iLrqTByB026YLPzTytDTz1DRCYM+JI92Dw2dbpRHYmdqn6VBnQ9Bor6J8ZlNwdZdxjlSg==} + /@esbuild/freebsd-arm64@0.19.0: + resolution: {integrity: sha512-s7i2WcXcK0V1PJHVBe7NsGddsL62a9Vhpz2U7zapPrwKoFuxPP9jybwX8SXnropR/AOj3ppt2ern4ItblU6UQQ==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -12631,8 +11955,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64@0.19.3: - resolution: {integrity: sha512-nXesBZ2Ad1qL+Rm3crN7NmEVJ5uvfLFPLJev3x1j3feCQXfAhoYrojC681RhpdOph8NsvKBBwpYZHR7W0ifTTA==} + /@esbuild/freebsd-x64@0.19.0: + resolution: {integrity: sha512-NMdBSSdgwHCqCsucU5k1xflIIRU0qi1QZnM6+vdGy5fvxm1c8rKh50VzsWsIVTFUG3l91AtRxVwoz3Lcvy3I5w==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -12658,8 +11982,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm64@0.19.3: - resolution: {integrity: sha512-qXvYKmXj8GcJgWq3aGvxL/JG1ZM3UR272SdPU4QSTzD0eymrM7leiZH77pvY3UetCy0k1xuXZ+VPvoJNdtrsWQ==} + /@esbuild/linux-arm64@0.19.0: + resolution: {integrity: sha512-I4zvE2srSZxRPapFnNqj+NL3sDJ1wkvEZqt903OZUlBBgigrQMvzUowvP/TTTu2OGYe1oweg5MFilfyrElIFag==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -12685,8 +12009,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm@0.19.3: - resolution: {integrity: sha512-zr48Cg/8zkzZCzDHNxXO/89bf9e+r4HtzNUPoz4GmgAkF1gFAFmfgOdCbR8zMbzFDGb1FqBBhdXUpcTQRYS1cQ==} + /@esbuild/linux-arm@0.19.0: + resolution: {integrity: sha512-2F1+lH7ZBcCcgxiSs8EXQV0PPJJdTNiNcXxDb61vzxTRJJkXX1I/ye9mAhfHyScXzHaEibEXg1Jq9SW586zz7w==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -12712,8 +12036,8 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.19.3: - resolution: {integrity: sha512-7XlCKCA0nWcbvYpusARWkFjRQNWNGlt45S+Q18UeS///K6Aw8bB2FKYe9mhVWy/XLShvCweOLZPrnMswIaDXQA==} + /@esbuild/linux-ia32@0.19.0: + resolution: {integrity: sha512-dz2Q7+P92r1Evc8kEN+cQnB3qqPjmCrOZ+EdBTn8lEc1yN8WDgaDORQQiX+mxaijbH8npXBT9GxUqE52Gt6Y+g==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -12739,8 +12063,8 @@ packages: dev: true optional: true - /@esbuild/linux-loong64@0.19.3: - resolution: {integrity: sha512-qGTgjweER5xqweiWtUIDl9OKz338EQqCwbS9c2Bh5jgEH19xQ1yhgGPNesugmDFq+UUSDtWgZ264st26b3de8A==} + /@esbuild/linux-loong64@0.19.0: + resolution: {integrity: sha512-IcVJovJVflih4oFahhUw+N7YgNbuMSVFNr38awb0LNzfaiIfdqIh518nOfYaNQU3aVfiJnOIRVJDSAP4k35WxA==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -12766,8 +12090,8 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el@0.19.3: - resolution: {integrity: sha512-gy1bFskwEyxVMFRNYSvBauDIWNggD6pyxUksc0MV9UOBD138dKTzr8XnM2R4mBsHwVzeuIH8X5JhmNs2Pzrx+A==} + /@esbuild/linux-mips64el@0.19.0: + resolution: {integrity: sha512-bZGRAGySMquWsKw0gIdsClwfvgbsSq/7oq5KVu1H1r9Il+WzOcfkV1hguntIuBjRVL8agI95i4AukjdAV2YpUw==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -12793,8 +12117,8 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64@0.19.3: - resolution: {integrity: sha512-UrYLFu62x1MmmIe85rpR3qou92wB9lEXluwMB/STDzPF9k8mi/9UvNsG07Tt9AqwPQXluMQ6bZbTzYt01+Ue5g==} + /@esbuild/linux-ppc64@0.19.0: + resolution: {integrity: sha512-3LC6H5/gCDorxoRBUdpLV/m7UthYSdar0XcCu+ypycQxMS08MabZ06y1D1yZlDzL/BvOYliRNRWVG/YJJvQdbg==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -12820,8 +12144,8 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64@0.19.3: - resolution: {integrity: sha512-9E73TfyMCbE+1AwFOg3glnzZ5fBAFK4aawssvuMgCRqCYzE0ylVxxzjEfut8xjmKkR320BEoMui4o/t9KA96gA==} + /@esbuild/linux-riscv64@0.19.0: + resolution: {integrity: sha512-jfvdKjWk+Cp2sgLtEEdSHXO7qckrw2B2eFBaoRdmfhThqZs29GMMg7q/LsQpybA7BxCLLEs4di5ucsWzZC5XPA==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -12847,8 +12171,8 @@ packages: dev: true optional: true - /@esbuild/linux-s390x@0.19.3: - resolution: {integrity: sha512-LlmsbuBdm1/D66TJ3HW6URY8wO6IlYHf+ChOUz8SUAjVTuaisfuwCOAgcxo3Zsu3BZGxmI7yt//yGOxV+lHcEA==} + /@esbuild/linux-s390x@0.19.0: + resolution: {integrity: sha512-ofcucfNLkoXmcnJaw9ugdEOf40AWKGt09WBFCkpor+vFJVvmk/8OPjl/qRtks2Z7BuZbG3ztJuK1zS9z5Cgx9A==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -12874,8 +12198,8 @@ packages: dev: true optional: true - /@esbuild/linux-x64@0.19.3: - resolution: {integrity: sha512-ogV0+GwEmvwg/8ZbsyfkYGaLACBQWDvO0Kkh8LKBGKj9Ru8VM39zssrnu9Sxn1wbapA2qNS6BiLdwJZGouyCwQ==} + /@esbuild/linux-x64@0.19.0: + resolution: {integrity: sha512-Fpf7zNDBti3xrQKQKLdXT0hTyOxgFdRJIMtNy8x1az9ATR9/GJ1brYbB/GLWoXhKiHsoWs+2DLkFVNNMTCLEwA==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -12901,8 +12225,8 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64@0.19.3: - resolution: {integrity: sha512-o1jLNe4uzQv2DKXMlmEzf66Wd8MoIhLNO2nlQBHLtWyh2MitDG7sMpfCO3NTcoTMuqHjfufgUQDFRI5C+xsXQw==} + /@esbuild/netbsd-x64@0.19.0: + resolution: {integrity: sha512-AMQAp/5oENgDOvVhvOlbhVe1pWii7oFAMRHlmTjSEMcpjTpIHtFXhv9uAFgUERHm3eYtNvS9Vf+gT55cwuI6Aw==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -12928,8 +12252,8 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64@0.19.3: - resolution: {integrity: sha512-AZJCnr5CZgZOdhouLcfRdnk9Zv6HbaBxjcyhq0StNcvAdVZJSKIdOiPB9az2zc06ywl0ePYJz60CjdKsQacp5Q==} + /@esbuild/openbsd-x64@0.19.0: + resolution: {integrity: sha512-fDztEve1QUs3h/Dw2AUmBlWGkNQbhDoD05ppm5jKvzQv+HVuV13so7m5RYeiSMIC2XQy7PAjZh+afkxAnCRZxA==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -12955,8 +12279,8 @@ packages: dev: true optional: true - /@esbuild/sunos-x64@0.19.3: - resolution: {integrity: sha512-Acsujgeqg9InR4glTRvLKGZ+1HMtDm94ehTIHKhJjFpgVzZG9/pIcWW/HA/DoMfEyXmANLDuDZ2sNrWcjq1lxw==} + /@esbuild/sunos-x64@0.19.0: + resolution: {integrity: sha512-bKZzJ2/rvUjDzA5Ddyva2tMk89WzNJEibZEaq+wY6SiqPlwgFbqyQLimouxLHiHh1itb5P3SNCIF1bc2bw5H9w==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -12982,8 +12306,8 @@ packages: dev: true optional: true - /@esbuild/win32-arm64@0.19.3: - resolution: {integrity: sha512-FSrAfjVVy7TifFgYgliiJOyYynhQmqgPj15pzLyJk8BUsnlWNwP/IAy6GAiB1LqtoivowRgidZsfpoYLZH586A==} + /@esbuild/win32-arm64@0.19.0: + resolution: {integrity: sha512-NQJ+4jmnA79saI+sE+QzcEls19uZkoEmdxo7r//PDOjIpX8pmoWtTnWg6XcbnO7o4fieyAwb5U2LvgWynF4diA==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -13009,8 +12333,8 @@ packages: dev: true optional: true - /@esbuild/win32-ia32@0.19.3: - resolution: {integrity: sha512-xTScXYi12xLOWZ/sc5RBmMN99BcXp/eEf7scUC0oeiRoiT5Vvo9AycuqCp+xdpDyAU+LkrCqEpUS9fCSZF8J3Q==} + /@esbuild/win32-ia32@0.19.0: + resolution: {integrity: sha512-uyxiZAnsfu9diHm9/rIH2soecF/HWLXYUhJKW4q1+/LLmNQ+55lRjvSUDhUmsgJtSUscRJB/3S4RNiTb9o9mCg==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -13036,8 +12360,8 @@ packages: dev: true optional: true - /@esbuild/win32-x64@0.19.3: - resolution: {integrity: sha512-FbUN+0ZRXsypPyWE2IwIkVjDkDnJoMJARWOcFZn4KPPli+QnKqF0z1anvfaYe3ev5HFCpRDLLBDHyOALLppWHw==} + /@esbuild/win32-x64@0.19.0: + resolution: {integrity: sha512-jl+NXUjK2StMgqnZnqgNjZuerFG8zQqWXMBZdMMv4W/aO1ZKQaYWZBxTrtWKphkCBVEMh0wMVfGgOd2BjOZqUQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -13078,7 +12402,7 @@ packages: dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.6.1 + espree: 9.5.2 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -14433,7 +13757,7 @@ packages: '@firebase/app-compat': 0.1.25 '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14452,7 +13776,7 @@ packages: '@firebase/installations': 0.5.9(@firebase/app@0.7.24) '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/app-check-compat@0.2.8(@firebase/app-compat@0.1.25)(@firebase/app@0.7.24): @@ -14466,7 +13790,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14488,7 +13812,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/app-compat@0.1.25: @@ -14498,7 +13822,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/app-types@0.7.0: @@ -14512,7 +13836,7 @@ packages: '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/auth-compat@0.2.14(@firebase/app-compat@0.1.25)(@firebase/app-types@0.7.0)(@firebase/app@0.7.24): @@ -14527,7 +13851,7 @@ packages: '@firebase/util': 1.6.0 node-fetch: 2.6.7 selenium-webdriver: 4.1.1 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -14567,7 +13891,7 @@ packages: '@firebase/util': 1.6.0 node-fetch: 2.6.7 selenium-webdriver: 4.1.1 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - bufferutil - encoding @@ -14578,7 +13902,7 @@ packages: resolution: {integrity: sha512-ct2p1MTMV5P/nGIlkC3XjAVwHwjsIZaeo8JVyDAkJCNTROu5mYX3FBK16hjIUIIVJDpgnnzFh9nP74gciL4WrA==} dependencies: '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/database-compat@0.2.0(@firebase/app-compat@0.1.25)(@firebase/app-types@0.7.0): @@ -14592,7 +13916,7 @@ packages: '@firebase/database-types': 0.9.8 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app-types' dev: false @@ -14612,7 +13936,7 @@ packages: '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 faye-websocket: 0.11.4 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app-types' dev: false @@ -14627,7 +13951,7 @@ packages: '@firebase/firestore': 3.4.9(@firebase/app@0.7.24) '@firebase/firestore-types': 2.5.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.0) '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -14658,7 +13982,7 @@ packages: '@grpc/grpc-js': 1.6.7 '@grpc/proto-loader': 0.6.12 node-fetch: 2.6.7 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - encoding dev: false @@ -14673,7 +13997,7 @@ packages: '@firebase/functions': 0.8.1(@firebase/app-types@0.7.0)(@firebase/app@0.7.24) '@firebase/functions-types': 0.5.0 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -14696,7 +14020,7 @@ packages: '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.0 node-fetch: 2.6.7 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app-types' - encoding @@ -14711,13 +14035,13 @@ packages: '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/logger@0.3.2: resolution: {integrity: sha512-lzLrcJp9QBWpo40OcOM9B8QEtBw2Fk1zOZQdvv+rWS6gKmhQBCEMc4SMABQfWdjsylBcDfniD1Q+fUX1dcBTXA==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/messaging-compat@0.1.13(@firebase/app-compat@0.1.25)(@firebase/app@0.7.24): @@ -14729,7 +14053,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/messaging': 0.9.13(@firebase/app@0.7.24) '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14749,7 +14073,7 @@ packages: '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/performance-compat@0.1.9(@firebase/app-compat@0.1.25)(@firebase/app@0.7.24): @@ -14763,7 +14087,7 @@ packages: '@firebase/performance': 0.5.9(@firebase/app@0.7.24) '@firebase/performance-types': 0.1.0 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14782,7 +14106,7 @@ packages: '@firebase/installations': 0.5.9(@firebase/app@0.7.24) '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/polyfill@0.3.36: @@ -14804,7 +14128,7 @@ packages: '@firebase/remote-config': 0.3.8(@firebase/app@0.7.24) '@firebase/remote-config-types': 0.2.0 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14823,7 +14147,7 @@ packages: '@firebase/installations': 0.5.9(@firebase/app@0.7.24) '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/storage-compat@0.1.14(@firebase/app-compat@0.1.25)(@firebase/app-types@0.7.0)(@firebase/app@0.7.24): @@ -14836,7 +14160,7 @@ packages: '@firebase/storage': 0.9.6(@firebase/app@0.7.24) '@firebase/storage-types': 0.6.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.0) '@firebase/util': 1.6.0 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -14862,7 +14186,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 node-fetch: 2.6.7 - tslib: 2.6.2 + tslib: 2.6.1 transitivePeerDependencies: - encoding dev: false @@ -14870,7 +14194,7 @@ packages: /@firebase/util@1.6.0: resolution: {integrity: sha512-6+hhqb4Zzjoo12xofTDHPkgW3FnN4ydBsjd5X2KuQI268DR3W3Ld64W/gkKPZrKRgUxeNeb+pykfP3qRe7q+vA==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@firebase/webchannel-wrapper@0.6.1: @@ -14884,7 +14208,7 @@ packages: /@floating-ui/core@1.4.1: resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==} dependencies: - '@floating-ui/utils': 0.1.1 + '@floating-ui/utils': 0.1.2 dev: false /@floating-ui/dom@0.1.10: @@ -14893,11 +14217,11 @@ packages: '@floating-ui/core': 0.3.1 dev: false - /@floating-ui/dom@1.5.1: - resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==} + /@floating-ui/dom@1.5.2: + resolution: {integrity: sha512-6ArmenS6qJEWmwzczWyhvrXRdI/rI78poBcW0h/456+onlabit+2G+QxHx5xTOX60NBJQXjsCLFbW2CmsXpUog==} dependencies: '@floating-ui/core': 1.4.1 - '@floating-ui/utils': 0.1.1 + '@floating-ui/utils': 0.1.2 dev: false /@floating-ui/react-dom@0.4.3(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): @@ -14914,34 +14238,34 @@ packages: - '@types/react' dev: false - /@floating-ui/utils@0.1.1: - resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==} + /@floating-ui/utils@0.1.2: + resolution: {integrity: sha512-ou3elfqG/hZsbmF4bxeJhPHIf3G2pm0ujc39hYEZrfVqt7Vk/Zji6CXc3W0pmYM8BW1g40U+akTl9DKZhFhInQ==} dev: false /@formatjs/ecma402-abstract@1.14.3: resolution: {integrity: sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg==} dependencies: '@formatjs/intl-localematcher': 0.2.32 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@formatjs/ecma402-abstract@1.17.0: resolution: {integrity: sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==} dependencies: '@formatjs/intl-localematcher': 0.4.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@formatjs/intl-enumerator@1.3.2: resolution: {integrity: sha512-bG0XyG0rCTdmoZRJJXe0oF0PTK7PzJjlLM6PmRlnZs6K5DQYHk4D9TNCwtK2e6OxvBI5EFW4Iy3dhQf/UToxPQ==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@formatjs/intl-getcanonicallocales@2.2.1: resolution: {integrity: sha512-KooqmyY+Mhq3ioASPzoU6p6Cy9Mx+cWSVQSP6lF+vEW2tiaN90ti08cp82p1dzFschenduOYgPKrNcBpsDi6+g==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@formatjs/intl-locale@3.3.2: @@ -14956,13 +14280,13 @@ packages: /@formatjs/intl-localematcher@0.2.32: resolution: {integrity: sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@formatjs/intl-localematcher@0.4.0: resolution: {integrity: sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@formatjs/intl-pluralrules@5.2.4: @@ -16292,30 +15616,14 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.18 - /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.19 - /@jridgewell/resolve-uri@3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} - /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - /@jridgewell/set-array@1.1.1: resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} engines: {node: '>=6.0.0'} - /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} - /@jridgewell/source-map@0.3.3: resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==} dependencies: @@ -16325,9 +15633,6 @@ packages: /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - /@jridgewell/trace-mapping@0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: @@ -16341,12 +15646,6 @@ packages: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@jridgewell/trace-mapping@0.3.19: - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: @@ -16428,13 +15727,22 @@ packages: semver: 7.5.4 dev: false + /@ledgerhq/devices@6.27.1: + resolution: {integrity: sha512-jX++oy89jtv7Dp2X6gwt3MMkoajel80JFWcdc0HCouwDsV1mVJ3SQdwl/bQU0zd8HI6KebvUP95QTwbQLLK/RQ==} + dependencies: + '@ledgerhq/errors': 6.14.0 + '@ledgerhq/logs': 6.10.1 + rxjs: 6.6.7 + semver: 7.5.4 + dev: false + /@ledgerhq/devices@8.0.7: resolution: {integrity: sha512-BbPyET52lXnVs7CxJWrGYqmtGdbGzj+XnfCqLsDnA7QYr1CZREysxmie+Rr6BKpNDBRVesAovXjtaVaZOn+upw==} dependencies: '@ledgerhq/errors': 6.14.0 '@ledgerhq/logs': 6.10.1 rxjs: 6.6.7 - semver: 7.3.7 + semver: 7.5.4 dev: false /@ledgerhq/errors@5.50.0: @@ -16459,12 +15767,22 @@ packages: '@ledgerhq/hw-transport': 6.28.8 '@ledgerhq/logs': 6.10.1 axios: 0.26.1 - ws: 7.5.9 + ws: 7.5.7 transitivePeerDependencies: - bufferutil - utf-8-validate dev: false + /@ledgerhq/hw-transport-u2f@5.36.0-deprecated: + resolution: {integrity: sha512-T/+mGHIiUK/ZQATad6DMDmobCMZ1mVST952009jKzhaE1Et2Uy2secU+QhRkx3BfEAkvwa0zSRSYCL9d20Iqjg==} + deprecated: '@ledgerhq/hw-transport-u2f is deprecated. Please use @ledgerhq/hw-transport-webusb or @ledgerhq/hw-transport-webhid. https://github.com/LedgerHQ/ledgerjs/blob/master/docs/migrate_webusb.md' + dependencies: + '@ledgerhq/errors': 5.50.0 + '@ledgerhq/hw-transport': 5.51.1 + '@ledgerhq/logs': 5.50.0 + u2f-api: 0.2.7 + dev: false + /@ledgerhq/hw-transport@5.11.0: resolution: {integrity: sha512-z56iwv0DZZu20T5q9sNMHFQNVuRKYqzCuNFhY9woWSpmOQkyVHCRiEgOQbN5h6kVri6fkfPkDzqqcsYjJlnT9g==} dependencies: @@ -16481,6 +15799,14 @@ packages: events: 3.3.0 dev: false + /@ledgerhq/hw-transport@6.27.1: + resolution: {integrity: sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==} + dependencies: + '@ledgerhq/devices': 6.27.1 + '@ledgerhq/errors': 6.14.0 + events: 3.3.0 + dev: false + /@ledgerhq/hw-transport@6.28.1: resolution: {integrity: sha512-RaZe+abn0zBIz82cE9tp7Y7aZkHWWbEaE2yJpfxT8AhFz3fx+BU0kLYzuRN9fmA7vKueNJ1MTVUCY+Ex9/CHSQ==} dependencies: @@ -16557,7 +15883,7 @@ packages: '@ledgerhq/wallet-api-core': 1.2.0 '@ledgerhq/wallet-api-server': 1.2.0(react@17.0.2) rxjs: 7.8.1 - ws: 8.14.1 + ws: 8.13.0 transitivePeerDependencies: - bufferutil - react @@ -17177,6 +16503,13 @@ packages: resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} dev: false + /@node-ipc/js-queue@2.0.3: + resolution: {integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==} + engines: {node: '>=1.0.0'} + dependencies: + easy-stack: 1.0.1 + dev: false + /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -17464,7 +16797,7 @@ packages: open: 8.4.0 picocolors: 1.0.0 tiny-glob: 0.2.9 - tslib: 2.6.2 + tslib: 2.6.1 /@playwright/test@1.34.3: resolution: {integrity: sha512-zPLef6w9P6T/iT6XDYG3mvGOqOyb6eHaV9XtkunYs0+OzxBtrPAAaHotc0X+PJ00WPPnLfFBTl7mf45Mn8DBmw==} @@ -17644,6 +16977,10 @@ packages: webpack: 4.42.1 dev: true + /@polka/url@1.0.0-next.21: + resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} + dev: false + /@polkadot/keyring@10.4.2: resolution: {integrity: sha512-7iHhJuXaHrRTG6cJDbZE9G+c1ts1dujp0qbO4RfAPmT7YUvphHvAtCKueN9UKPz5+TYDL+rP/jDEaSKU8jl/qQ==} engines: {node: '>=14.0.0'} @@ -18768,7 +18105,7 @@ packages: dependencies: '@react-navigation/routers': 6.1.9 escape-string-regexp: 4.0.0 - nanoid: 3.3.6 + nanoid: 3.3.4 query-string: 7.1.3 react: 18.0.0 react-is: 16.13.1 @@ -18841,7 +18178,7 @@ packages: '@react-navigation/core': 6.4.9(react@18.0.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 - nanoid: 3.3.6 + nanoid: 3.3.4 react: 18.0.0 react-native: 0.71.6(@babel/core@7.22.8)(metro-resolver@0.76.0)(metro-transform-worker@0.76.0)(react@18.0.0) dev: true @@ -18849,13 +18186,13 @@ packages: /@react-navigation/routers@6.1.6: resolution: {integrity: sha512-Z5DeCW3pUvMafbU9Cjy1qJYC2Bvl8iy3+PfsB0DsAwQ6zZ3WAXW5FTMX4Gb9H+Jg6qHWGbMFFwlYpS3UJ3tlVQ==} dependencies: - nanoid: 3.3.6 + nanoid: 3.3.4 dev: false /@react-navigation/routers@6.1.9: resolution: {integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==} dependencies: - nanoid: 3.3.6 + nanoid: 3.3.4 dev: true /@react-navigation/stack@6.3.1(@react-navigation/native@6.0.13)(react-native-gesture-handler@2.9.0)(react-native-safe-area-context@4.5.0)(react-native-screens@3.20.0)(react-native@0.71.6)(react@18.0.0): @@ -18981,7 +18318,7 @@ packages: optional: true dependencies: '@babel/core': 7.22.9 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 dev: false @@ -19489,7 +18826,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/config-resolver@1.0.2: @@ -19499,7 +18836,7 @@ packages: '@smithy/types': 1.1.1 '@smithy/util-config-provider': 1.0.2 '@smithy/util-middleware': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/credential-provider-imds@1.0.2: @@ -19510,7 +18847,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 '@smithy/url-parser': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/eventstream-codec@1.0.2: @@ -19519,7 +18856,7 @@ packages: '@aws-crypto/crc32': 3.0.0 '@smithy/types': 1.1.1 '@smithy/util-hex-encoding': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/eventstream-serde-browser@1.0.2: @@ -19528,7 +18865,7 @@ packages: dependencies: '@smithy/eventstream-serde-universal': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/eventstream-serde-config-resolver@1.0.2: @@ -19536,7 +18873,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/eventstream-serde-node@1.0.2: @@ -19545,7 +18882,7 @@ packages: dependencies: '@smithy/eventstream-serde-universal': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/eventstream-serde-universal@1.0.2: @@ -19554,7 +18891,7 @@ packages: dependencies: '@smithy/eventstream-codec': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/fetch-http-handler@1.0.2: @@ -19564,7 +18901,7 @@ packages: '@smithy/querystring-builder': 1.0.2 '@smithy/types': 1.1.1 '@smithy/util-base64': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/hash-node@1.0.2: @@ -19574,21 +18911,21 @@ packages: '@smithy/types': 1.1.1 '@smithy/util-buffer-from': 1.0.2 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/invalid-dependency@1.0.2: resolution: {integrity: sha512-B1Y3Tsa6dfC+Vvb+BJMhTHOfFieeYzY9jWQSTR1vMwKkxsymD0OIAnEw8rD/RiDj/4E4RPGFdx9Mdgnyd6Bv5Q==} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/is-array-buffer@1.0.2: resolution: {integrity: sha512-pkyBnsBRpe+c/6ASavqIMRBdRtZNJEVJOEzhpxZ9JoAXiZYbkfaSMRA/O1dUxGdJ653GHONunnZ4xMo/LJ7utQ==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/middleware-content-length@1.0.2: @@ -19597,7 +18934,7 @@ packages: dependencies: '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/middleware-endpoint@1.0.3: @@ -19608,7 +18945,7 @@ packages: '@smithy/types': 1.1.1 '@smithy/url-parser': 1.0.2 '@smithy/util-middleware': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/middleware-retry@1.0.4: @@ -19620,7 +18957,7 @@ packages: '@smithy/types': 1.1.1 '@smithy/util-middleware': 1.0.2 '@smithy/util-retry': 1.0.4 - tslib: 2.6.2 + tslib: 2.6.1 uuid: 8.3.2 dev: true @@ -19629,14 +18966,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/middleware-stack@1.0.2: resolution: {integrity: sha512-H7/uAQEcmO+eDqweEFMJ5YrIpsBwmrXSP6HIIbtxKJSQpAcMGY7KrR2FZgZBi1FMnSUOh+rQrbOyj5HQmSeUBA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/node-config-provider@1.0.2: @@ -19646,7 +18983,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/node-http-handler@1.0.3: @@ -19657,7 +18994,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/querystring-builder': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/property-provider@1.0.2: @@ -19665,7 +19002,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/protocol-http@1.1.1: @@ -19673,7 +19010,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/querystring-builder@1.0.2: @@ -19682,7 +19019,7 @@ packages: dependencies: '@smithy/types': 1.1.1 '@smithy/util-uri-escape': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/querystring-parser@1.0.2: @@ -19690,7 +19027,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/service-error-classification@1.0.3: @@ -19703,7 +19040,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/signature-v4@1.0.2: @@ -19717,7 +19054,7 @@ packages: '@smithy/util-middleware': 1.0.2 '@smithy/util-uri-escape': 1.0.2 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/smithy-client@1.0.4: @@ -19727,14 +19064,14 @@ packages: '@smithy/middleware-stack': 1.0.2 '@smithy/types': 1.1.1 '@smithy/util-stream': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/types@1.1.1: resolution: {integrity: sha512-tMpkreknl2gRrniHeBtdgQwaOlo39df8RxSrwsHVNIGXULy5XP6KqgScUw2m12D15wnJCKWxVhCX+wbrBW/y7g==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/url-parser@1.0.2: @@ -19742,7 +19079,7 @@ packages: dependencies: '@smithy/querystring-parser': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-base64@1.0.2: @@ -19750,20 +19087,20 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/util-buffer-from': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-body-length-browser@1.0.2: resolution: {integrity: sha512-Xh8L06H2anF5BHjSYTg8hx+Itcbf4SQZnVMl4PIkCOsKtneMJoGjPRLy17lEzfoh/GOaa0QxgCP6lRMQWzNl4w==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-body-length-node@1.0.2: resolution: {integrity: sha512-nXHbZsUtvZeyfL4Ceds9nmy2Uh2AhWXohG4vWHyjSdmT8cXZlJdmJgnH6SJKDjyUecbu+BpKeVvSrA4cWPSOPA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-buffer-from@1.0.2: @@ -19771,14 +19108,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/is-array-buffer': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-config-provider@1.0.2: resolution: {integrity: sha512-HOdmDm+3HUbuYPBABLLHtn8ittuRyy+BSjKOA169H+EMc+IozipvXDydf+gKBRAxUa4dtKQkLraypwppzi+PRw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-defaults-mode-browser@1.0.2: @@ -19788,7 +19125,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-defaults-mode-node@1.0.2: @@ -19800,21 +19137,21 @@ packages: '@smithy/node-config-provider': 1.0.2 '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-hex-encoding@1.0.2: resolution: {integrity: sha512-Bxydb5rMJorMV6AuDDMOxro3BMDdIwtbQKHpwvQFASkmr52BnpDsWlxgpJi8Iq7nk1Bt4E40oE1Isy/7ubHGzg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-middleware@1.0.2: resolution: {integrity: sha512-vtXK7GOR2BoseCX8NCGe9SaiZrm9M2lm/RVexFGyPuafTtry9Vyv7hq/vw8ifd/G/pSJ+msByfJVb1642oQHKw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-retry@1.0.4: @@ -19822,7 +19159,7 @@ packages: engines: {node: '>= 14.0.0'} dependencies: '@smithy/service-error-classification': 1.0.3 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-stream@1.0.2: @@ -19836,14 +19173,14 @@ packages: '@smithy/util-buffer-from': 1.0.2 '@smithy/util-hex-encoding': 1.0.2 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-uri-escape@1.0.2: resolution: {integrity: sha512-k8C0BFNS9HpBMHSgUDnWb1JlCQcFG+PPlVBq9keP4Nfwv6a9Q0yAfASWqUCtzjuMj1hXeLhn/5ADP6JxnID1Pg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-utf8@1.0.2: @@ -19851,7 +19188,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/util-buffer-from': 1.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /@smithy/util-waiter@1.0.2: @@ -19860,9 +19197,26 @@ packages: dependencies: '@smithy/abort-controller': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.2 + tslib: 2.6.1 dev: true + /@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.88.2): + resolution: {integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==} + engines: {node: '>=8.0.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + chalk: 3.0.0 + error-stack-parser: 2.0.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + webpack: 5.88.2 + dev: false + + /@soda/get-current-script@1.0.2: + resolution: {integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==} + dev: false + /@solana/buffer-layout-utils@0.2.0: resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==} engines: {node: '>= 10'} @@ -20296,7 +19650,7 @@ packages: '@babel/core': 7.22.9 '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) '@jest/transform': 26.6.2 '@mdx-js/loader': 1.6.22(react@17.0.2) @@ -20330,7 +19684,7 @@ packages: js-string-escape: 1.0.1 loader-utils: 2.0.4 lodash: 4.17.21 - nanoid: 3.3.6 + nanoid: 3.3.4 p-limit: 3.1.0 prettier: 2.3.0 prop-types: 15.8.1 @@ -20342,7 +19696,7 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - webpack: 5.72.1(esbuild@0.19.3) + webpack: 5.72.1(esbuild@0.19.0) transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' @@ -20375,7 +19729,7 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) '@babel/preset-env': 7.21.4(@babel/core@7.22.8) '@jest/transform': 26.6.2(metro@0.76.0) '@mdx-js/react': 1.6.22(react@18.0.0) @@ -20460,7 +19814,7 @@ packages: react-dom: 17.0.2(react@17.0.2) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - webpack: 5.72.1(esbuild@0.19.3) + webpack: 5.72.1(esbuild@0.19.0) transitivePeerDependencies: - '@storybook/angular' - '@storybook/builder-webpack5' @@ -20694,7 +20048,7 @@ packages: - react-dom dev: true - /@storybook/addon-ondevice-backgrounds@6.5.6(@emotion/native@11.11.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0): + /@storybook/addon-ondevice-backgrounds@6.5.6(@emotion/native@11.0.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0): resolution: {integrity: sha512-+UkFdVxB/wylMzlhxz3pKx2cDfR+ULm9DvmAiseYCJvpyB/pF2yqUCJe/LhsBZr8NNBGhbAoMbOIwVB3vJ5S2Q==} peerDependencies: '@emotion/native': '*' @@ -20704,7 +20058,7 @@ packages: '@emotion/native': optional: true dependencies: - '@emotion/native': 11.11.0(react-native@0.71.6)(react@18.0.0) + '@emotion/native': 11.0.0(@babel/core@7.22.8)(react-native@0.71.6)(react@18.0.0) '@storybook/addons': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/api': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/client-api': 6.5.16(react-dom@18.0.0)(react@18.0.0) @@ -21120,8 +20474,8 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) '@storybook/addons': 6.4.22(react-dom@17.0.2)(react@17.0.2) '@storybook/api': 6.4.22(react-dom@17.0.2)(react@17.0.2) '@storybook/channel-postmessage': 6.4.22 @@ -21704,7 +21058,7 @@ packages: typescript: 5.1.3 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.72.1(esbuild@0.19.3) + webpack: 5.72.1(esbuild@0.19.0) transitivePeerDependencies: - '@types/react' dev: true @@ -21885,8 +21239,8 @@ packages: '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) '@babel/register': 7.17.7(@babel/core@7.22.9) '@storybook/node-logger': 6.4.22 '@storybook/semver': 7.3.2 @@ -21956,8 +21310,8 @@ packages: '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) '@babel/register': 7.17.7(@babel/core@7.22.9) '@storybook/node-logger': 6.5.14 '@storybook/semver': 7.3.2 @@ -22027,8 +21381,8 @@ packages: '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) '@babel/register': 7.17.7(@babel/core@7.22.9) '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 @@ -22299,7 +21653,7 @@ packages: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) typescript: 5.1.3 - webpack: 5.72.1(esbuild@0.19.3) + webpack: 5.72.1(esbuild@0.19.0) transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' @@ -22362,10 +21716,10 @@ packages: '@babel/core': 7.22.9 '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.2--canary.87bc651.0 core-js: 3.22.5 @@ -22391,10 +21745,10 @@ packages: '@babel/core': 7.22.9 '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/mdx1-csf': 0.0.1(@babel/core@7.22.9) core-js: 3.22.5 @@ -22446,7 +21800,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) '@storybook/addons': 6.4.22(react-dom@17.0.2)(react@17.0.2) '@storybook/core-client': 6.4.22(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.3)(webpack@4.46.0) '@storybook/core-common': 6.4.22(eslint@8.41.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.3) @@ -22507,7 +21861,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) '@storybook/addons': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/core-client': 6.5.16(react-dom@18.0.0)(react@18.0.0)(typescript@5.1.3)(webpack@4.46.0) '@storybook/core-common': 6.5.16(eslint@8.41.0)(react-dom@18.0.0)(react@18.0.0)(typescript@5.1.3) @@ -22618,7 +21972,7 @@ packages: '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 '@babel/preset-env': 7.21.4(@babel/core@7.22.8) - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.198 js-string-escape: 1.0.1 @@ -22637,7 +21991,7 @@ packages: '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.198 js-string-escape: 1.0.1 @@ -22782,7 +22136,7 @@ packages: flat-cache: 3.0.4 micromatch: 4.0.5 react-docgen-typescript: 2.2.2(typescript@5.1.3) - tslib: 2.6.2 + tslib: 2.6.1 typescript: 5.1.3 webpack: 4.42.1 transitivePeerDependencies: @@ -22801,7 +22155,7 @@ packages: flat-cache: 3.0.4 micromatch: 4.0.5 react-docgen-typescript: 2.2.2(typescript@5.1.3) - tslib: 2.6.2 + tslib: 2.6.1 typescript: 5.1.3 webpack: 5.88.2(metro@0.76.0) transitivePeerDependencies: @@ -23202,7 +22556,7 @@ packages: fs-extra: 9.1.0 global: 4.4.0 isomorphic-unfetch: 3.1.0 - nanoid: 3.3.6 + nanoid: 3.3.4 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 transitivePeerDependencies: @@ -23561,7 +22915,7 @@ packages: resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@svgr/plugin-jsx@5.5.0: resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} @@ -23601,7 +22955,7 @@ packages: '@babel/core': 7.22.9 '@babel/plugin-transform-react-constant-elements': 7.17.6(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) '@svgr/core': 5.5.0(@svgr/plugin-svgo@5.5.0) '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -23613,13 +22967,13 @@ packages: /@swc/helpers@0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /@swc/helpers@0.5.1: resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 /@szmarczak/http-timer@1.1.2: resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} @@ -24012,8 +23366,8 @@ packages: /@types/babel__core@7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 + '@babel/parser': 7.22.5 + '@babel/types': 7.22.5 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.17.1 @@ -24021,18 +23375,18 @@ packages: /@types/babel__generator@7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@types/babel__traverse@7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 /@types/bchaddrjs@0.4.0: resolution: {integrity: sha512-Nvv3haWpXNWYfKasVoEp3VBgVsBTLTh45anhHUN8xVUPhn4ErU3FPS5AEcZtACWc5ICGUxbaiLTWOnwDkwYF1Q==} @@ -24470,7 +23824,6 @@ packages: /@types/minimist@1.2.2: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} - dev: true /@types/ms@0.7.31: resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} @@ -24542,7 +23895,6 @@ packages: /@types/normalize-package-data@2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} - dev: true /@types/npmlog@4.1.4: resolution: {integrity: sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==} @@ -24692,7 +24044,7 @@ packages: optional: true dependencies: '@types/react': 18.2.0 - csstype: 3.0.11 + csstype: 3.1.2 dev: true /@types/react-is@17.0.3(@types/react@17.0.53): @@ -24965,14 +24317,14 @@ packages: dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.0.11 + csstype: 3.1.2 /@types/react@18.2.0: resolution: {integrity: sha512-0FLj93y5USLHdnhIhABk83rm8XEGA7kH3cr+YUlvxoUGp1xNt/DINUMvqPxLyOQMzLmZe8i4RTHbvb8MC7NmrA==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.0.11 + csstype: 3.1.2 /@types/redux-actions@2.6.2: resolution: {integrity: sha512-TvcINy8rWFANcpc3EiEQX9Yv3owM3d3KIrqr2ryUIOhYIYzXA/bhDZeGSSSuai62iVR2qMZUgz9tQ5kr0Kl+Tg==} @@ -25176,7 +24528,6 @@ packages: /@types/webpack-env@1.16.4: resolution: {integrity: sha512-llS8qveOUX3wxHnSykP5hlYFFuMfJ9p5JvIyCiBgp7WTfl6K5ZcyHj8r8JsN/J6QODkAsRRCLIcTuOCu8etkUw==} - dev: true /@types/webpack-sources@3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} @@ -25222,7 +24573,6 @@ packages: resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==} dependencies: '@types/node': 18.16.19 - dev: true /@types/yargs-parser@21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} @@ -25684,7 +25034,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.3.1 - eslint-visitor-keys: 3.4.3 + eslint-visitor-keys: 3.4.1 dev: false /@typescript-eslint/visitor-keys@5.57.0: @@ -25692,7 +25042,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.57.0 - eslint-visitor-keys: 3.4.3 + eslint-visitor-keys: 3.4.1 dev: true /@typescript-eslint/visitor-keys@5.59.6: @@ -25700,7 +25050,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.59.6 - eslint-visitor-keys: 3.4.3 + eslint-visitor-keys: 3.4.1 dev: false /@typescript-eslint/visitor-keys@5.60.0: @@ -25708,7 +25058,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.60.0 - eslint-visitor-keys: 3.4.3 + eslint-visitor-keys: 3.4.1 dev: false /@typescript-eslint/visitor-keys@6.2.0: @@ -25716,7 +25066,7 @@ packages: engines: {node: ^16.0.0 || >=18.0.0} dependencies: '@typescript-eslint/types': 6.2.0 - eslint-visitor-keys: 3.4.3 + eslint-visitor-keys: 3.4.1 /@urql/core@2.3.6(graphql@15.8.0): resolution: {integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==} @@ -25752,70 +25102,390 @@ packages: - supports-color dev: true - /@vue/compiler-core@3.3.4: - resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} + /@vue/cli-overlay@5.0.8: + resolution: {integrity: sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==} + dev: false + + /@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8): + resolution: {integrity: sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==} + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 + dependencies: + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(vue@2.7.14) + '@vue/cli-shared-utils': 5.0.8 + transitivePeerDependencies: + - encoding + dev: false + + /@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8)(eslint@8.41.0)(typescript@5.1.3)(vue-template-compiler@2.7.14)(vue@2.7.14): + resolution: {integrity: sha512-JKJOwzJshBqsmp4yLBexwVMebOZ4VGJgbnYvmHVxasJOStF2RxwyW28ZF+zIvASGdat4sAUuo/3mAQyVhm7JHg==} + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 + cache-loader: ^4.1.0 + typescript: '>=2' + vue: ^2 || ^3.2.13 + vue-template-compiler: ^2.0.0 + peerDependenciesMeta: + cache-loader: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/core': 7.22.9 + '@types/webpack-env': 1.16.4 + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(vue@2.7.14) + '@vue/cli-shared-utils': 5.0.8 + babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.2) + fork-ts-checker-webpack-plugin: 6.5.2(eslint@8.41.0)(typescript@5.1.3)(vue-template-compiler@2.7.14)(webpack@5.88.2) + globby: 11.1.0 + thread-loader: 3.0.4(webpack@5.88.2) + ts-loader: 9.4.4(typescript@5.1.3)(webpack@5.88.2) + typescript: 5.1.3 + vue: 2.7.14 + vue-template-compiler: 2.7.14 + webpack: 5.88.2 + transitivePeerDependencies: + - '@swc/core' + - encoding + - esbuild + - eslint + - metro + - supports-color + - uglify-js + - webpack-cli + dev: false + + /@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8): + resolution: {integrity: sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==} + peerDependencies: + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 + dependencies: + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(vue@2.7.14) + dev: false + + /@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(vue@2.7.14): + resolution: {integrity: sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==} + engines: {node: ^12.0.0 || >= 14.0.0} + hasBin: true + peerDependencies: + cache-loader: '*' + less-loader: '*' + pug-plain-loader: '*' + raw-loader: '*' + sass-loader: '*' + stylus-loader: '*' + vue-template-compiler: ^2.0.0 + webpack-sources: '*' + peerDependenciesMeta: + cache-loader: + optional: true + less-loader: + optional: true + pug-plain-loader: + optional: true + raw-loader: + optional: true + sass-loader: + optional: true + stylus-loader: + optional: true + vue-template-compiler: + optional: true + webpack-sources: + optional: true + dependencies: + '@babel/helper-compilation-targets': 7.22.9 + '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.88.2) + '@soda/get-current-script': 1.0.2 + '@types/minimist': 1.2.2 + '@vue/cli-overlay': 5.0.8 + '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8) + '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8) + '@vue/cli-shared-utils': 5.0.8 + '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)(react-dom@17.0.2)(react@17.0.2) + '@vue/vue-loader-v15': /vue-loader@15.10.2(css-loader@6.7.1)(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(webpack@5.88.2) + '@vue/web-component-wrapper': 1.3.0 + acorn: 8.8.2 + acorn-walk: 8.2.0 + address: 1.2.0 + autoprefixer: 10.4.8(postcss@8.4.21) + browserslist: 4.21.9 + case-sensitive-paths-webpack-plugin: 2.4.0 + cli-highlight: 2.1.11 + clipboardy: 2.3.0 + cliui: 7.0.4 + copy-webpack-plugin: 9.1.0(webpack@5.88.2) + css-loader: 6.7.1(webpack@5.88.2) + css-minimizer-webpack-plugin: 3.4.1(webpack@5.88.2) + cssnano: 5.1.12(postcss@8.4.21) + debug: 4.3.4 + default-gateway: 6.0.3 + dotenv: 10.0.0 + dotenv-expand: 5.1.0 + fs-extra: 9.1.0 + globby: 11.1.0 + hash-sum: 2.0.0 + html-webpack-plugin: 5.5.0(webpack@5.88.2) + is-file-esm: 1.0.0 + launch-editor-middleware: 2.6.0 + lodash.defaultsdeep: 4.6.1 + lodash.mapvalues: 4.6.0 + mini-css-extract-plugin: 2.6.1(webpack@5.88.2) + minimist: 1.2.8 + module-alias: 2.2.3 + portfinder: 1.0.28 + postcss: 8.4.21 + postcss-loader: 6.2.1(browserslist@4.21.9)(postcss@8.4.21)(webpack@5.88.2) + progress-webpack-plugin: 1.0.16(webpack@5.88.2) + ssri: 8.0.1 + terser-webpack-plugin: 5.3.9(webpack@5.88.2) + thread-loader: 3.0.4(webpack@5.88.2) + vue-loader: 17.2.2(vue@2.7.14)(webpack@5.88.2) + vue-style-loader: 4.1.3 + vue-template-compiler: 2.7.14 + webpack: 5.88.2 + webpack-bundle-analyzer: 4.9.1 + webpack-chain: 6.5.1 + webpack-dev-server: 4.15.1(webpack@5.88.2) + webpack-merge: 5.9.0 + webpack-virtual-modules: 0.4.6 + whatwg-fetch: 3.6.2 + transitivePeerDependencies: + - '@babel/core' + - '@parcel/css' + - '@swc/core' + - '@vue/compiler-sfc' + - arc-templates + - atpl + - babel-core + - bracket-template + - bufferutil + - clean-css + - coffee-script + - csso + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - encoding + - esbuild + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - lodash + - marko + - metro + - mote + - mustache + - nunjucks + - plates + - prettier + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly + - supports-color + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - uglify-js + - underscore + - utf-8-validate + - vash + - velocityjs + - vue + - walrus + - webpack-cli + - whiskers + dev: false + + /@vue/cli-shared-utils@5.0.8: + resolution: {integrity: sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==} + dependencies: + '@achrinza/node-ipc': 9.2.7 + chalk: 4.1.2 + execa: 1.0.0 + joi: 17.6.0 + launch-editor: 2.6.0 + lru-cache: 6.0.0 + node-fetch: 2.6.9 + open: 8.4.0 + ora: 5.4.1 + read-pkg: 5.2.0 + semver: 7.5.4 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - encoding + dev: false + + /@vue/compiler-core@3.2.33: + resolution: {integrity: sha512-AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw==} requiresBuild: true dependencies: '@babel/parser': 7.22.7 - '@vue/shared': 3.3.4 + '@vue/shared': 3.2.33 estree-walker: 2.0.2 - source-map-js: 1.0.2 + source-map: 0.6.1 dev: true optional: true - /@vue/compiler-dom@3.3.4: - resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==} + /@vue/compiler-dom@3.2.33: + resolution: {integrity: sha512-GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ==} requiresBuild: true dependencies: - '@vue/compiler-core': 3.3.4 - '@vue/shared': 3.3.4 + '@vue/compiler-core': 3.2.33 + '@vue/shared': 3.2.33 dev: true optional: true - /@vue/compiler-sfc@3.3.4: - resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} + /@vue/compiler-sfc@2.7.14: + resolution: {integrity: sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==} + dependencies: + '@babel/parser': 7.22.7 + postcss: 8.4.21 + source-map: 0.6.1 + dev: false + + /@vue/compiler-sfc@3.2.33: + resolution: {integrity: sha512-H8D0WqagCr295pQjUYyO8P3IejM3vEzeCO1apzByAEaAR/WimhMYczHfZVvlCE/9yBaEu/eu9RdiWr0kF8b71Q==} requiresBuild: true dependencies: '@babel/parser': 7.22.7 - '@vue/compiler-core': 3.3.4 - '@vue/compiler-dom': 3.3.4 - '@vue/compiler-ssr': 3.3.4 - '@vue/reactivity-transform': 3.3.4 - '@vue/shared': 3.3.4 + '@vue/compiler-core': 3.2.33 + '@vue/compiler-dom': 3.2.33 + '@vue/compiler-ssr': 3.2.33 + '@vue/reactivity-transform': 3.2.33 + '@vue/shared': 3.2.33 estree-walker: 2.0.2 - magic-string: 0.30.3 - postcss: 8.4.29 - source-map-js: 1.0.2 + magic-string: 0.25.9 + postcss: 8.4.21 + source-map: 0.6.1 dev: true optional: true - /@vue/compiler-ssr@3.3.4: - resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==} + /@vue/compiler-ssr@3.2.33: + resolution: {integrity: sha512-XQh1Xdk3VquDpXsnoCd7JnMoWec9CfAzQDQsaMcSU79OrrO2PNR0ErlIjm/mGq3GmBfkQjzZACV+7GhfRB8xMQ==} requiresBuild: true dependencies: - '@vue/compiler-dom': 3.3.4 - '@vue/shared': 3.3.4 + '@vue/compiler-dom': 3.2.33 + '@vue/shared': 3.2.33 dev: true optional: true - /@vue/reactivity-transform@3.3.4: - resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} + /@vue/component-compiler-utils@3.3.0(lodash@4.17.21)(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==} + dependencies: + consolidate: 0.15.1(lodash@4.17.21)(react-dom@17.0.2)(react@17.0.2) + hash-sum: 1.0.2 + lru-cache: 4.1.5 + merge-source-map: 1.1.0 + postcss: 7.0.39 + postcss-selector-parser: 6.0.10 + source-map: 0.6.1 + vue-template-es2015-compiler: 1.9.1 + optionalDependencies: + prettier: 2.8.3 + transitivePeerDependencies: + - arc-templates + - atpl + - babel-core + - bracket-template + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - lodash + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - underscore + - vash + - velocityjs + - walrus + - whiskers + dev: false + + /@vue/reactivity-transform@3.2.33: + resolution: {integrity: sha512-4UL5KOIvSQb254aqenW4q34qMXbfZcmEsV/yVidLUgvwYQQ/D21bGX3DlgPUGI3c4C+iOnNmDCkIxkILoX/Pyw==} requiresBuild: true dependencies: '@babel/parser': 7.22.7 - '@vue/compiler-core': 3.3.4 - '@vue/shared': 3.3.4 + '@vue/compiler-core': 3.2.33 + '@vue/shared': 3.2.33 estree-walker: 2.0.2 - magic-string: 0.30.3 + magic-string: 0.25.9 dev: true optional: true - /@vue/shared@3.3.4: - resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==} + /@vue/shared@3.2.33: + resolution: {integrity: sha512-UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg==} requiresBuild: true dev: true optional: true + /@vue/web-component-wrapper@1.3.0: + resolution: {integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==} + dev: false + /@webassemblyjs/ast@1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: @@ -25827,7 +25497,6 @@ packages: dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - dev: true /@webassemblyjs/ast@1.9.0: resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==} @@ -25842,7 +25511,6 @@ packages: /@webassemblyjs/floating-point-hex-parser@1.11.6: resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - dev: true /@webassemblyjs/floating-point-hex-parser@1.9.0: resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==} @@ -25853,7 +25521,6 @@ packages: /@webassemblyjs/helper-api-error@1.11.6: resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - dev: true /@webassemblyjs/helper-api-error@1.9.0: resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==} @@ -25864,7 +25531,6 @@ packages: /@webassemblyjs/helper-buffer@1.11.6: resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} - dev: true /@webassemblyjs/helper-buffer@1.9.0: resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==} @@ -25899,14 +25565,12 @@ packages: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 '@xtuc/long': 4.2.2 - dev: true /@webassemblyjs/helper-wasm-bytecode@1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} /@webassemblyjs/helper-wasm-bytecode@1.11.6: resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - dev: true /@webassemblyjs/helper-wasm-bytecode@1.9.0: resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==} @@ -25927,7 +25591,6 @@ packages: '@webassemblyjs/helper-buffer': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/wasm-gen': 1.11.6 - dev: true /@webassemblyjs/helper-wasm-section@1.9.0: resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==} @@ -25947,7 +25610,6 @@ packages: resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} dependencies: '@xtuc/ieee754': 1.2.0 - dev: true /@webassemblyjs/ieee754@1.9.0: resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==} @@ -25964,7 +25626,6 @@ packages: resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} dependencies: '@xtuc/long': 4.2.2 - dev: true /@webassemblyjs/leb128@1.9.0: resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==} @@ -25977,7 +25638,6 @@ packages: /@webassemblyjs/utf8@1.11.6: resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - dev: true /@webassemblyjs/utf8@1.9.0: resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==} @@ -26006,7 +25666,6 @@ packages: '@webassemblyjs/wasm-opt': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 '@webassemblyjs/wast-printer': 1.11.6 - dev: true /@webassemblyjs/wasm-edit@1.9.0: resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==} @@ -26038,7 +25697,6 @@ packages: '@webassemblyjs/ieee754': 1.11.6 '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - dev: true /@webassemblyjs/wasm-gen@1.9.0: resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==} @@ -26065,7 +25723,6 @@ packages: '@webassemblyjs/helper-buffer': 1.11.6 '@webassemblyjs/wasm-gen': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 - dev: true /@webassemblyjs/wasm-opt@1.9.0: resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==} @@ -26095,7 +25752,6 @@ packages: '@webassemblyjs/ieee754': 1.11.6 '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - dev: true /@webassemblyjs/wasm-parser@1.9.0: resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==} @@ -26130,7 +25786,6 @@ packages: dependencies: '@webassemblyjs/ast': 1.11.6 '@xtuc/long': 4.2.2 - dev: true /@webassemblyjs/wast-printer@1.9.0: resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==} @@ -26148,7 +25803,6 @@ packages: dependencies: webpack: 5.88.2(webpack-cli@4.10.0) webpack-cli: 4.10.0(webpack-dev-server@4.15.1)(webpack@5.88.2) - dev: true /@webpack-cli/info@1.5.0(webpack-cli@4.10.0): resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} @@ -26157,7 +25811,6 @@ packages: dependencies: envinfo: 7.8.1 webpack-cli: 4.10.0(webpack-dev-server@4.15.1)(webpack@5.88.2) - dev: true /@webpack-cli/serve@1.7.0(webpack-cli@4.10.0)(webpack-dev-server@4.15.1): resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} @@ -26170,7 +25823,6 @@ packages: dependencies: webpack-cli: 4.10.0(webpack-dev-server@4.15.1)(webpack@5.88.2) webpack-dev-server: 4.15.1(webpack-cli@4.10.0)(webpack@5.88.2) - dev: true /@xmldom/xmldom@0.7.9: resolution: {integrity: sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==} @@ -26227,6 +25879,105 @@ packages: secp256k1: 5.0.0 dev: false + /@zondax/ledger-cosmos-js@3.0.3(@types/node@18.15.11)(eslint@8.41.0)(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.3): + resolution: {integrity: sha512-riIAlv8BcPXADIXaIrU8FSVtSlkFHcI9qVMD6eMqVtttynDdTt24ddn6UcgpTk4QiSjMI63n5k4M1T7GomKFgw==} + peerDependencies: + '@babel/core': ^7.17.5 + '@types/node': ^17.0.21 + dependencies: + '@babel/runtime': 7.22.10 + '@ledgerhq/hw-transport': 6.27.1 + '@ledgerhq/hw-transport-u2f': 5.36.0-deprecated + '@types/node': 18.15.11 + '@vue/cli-plugin-typescript': 5.0.8(@vue/cli-service@5.0.8)(eslint@8.41.0)(typescript@5.1.3)(vue-template-compiler@2.7.14)(vue@2.7.14) + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(vue@2.7.14) + bech32: 1.1.4 + buffer: 6.0.3 + crypto: 1.0.1 + crypto-browserify: 3.12.0 + ripemd160: 2.0.2 + stream-browserify: 3.0.0 + vue: 2.7.14 + vue-template-compiler: 2.7.14 + transitivePeerDependencies: + - '@parcel/css' + - '@swc/core' + - '@vue/compiler-sfc' + - arc-templates + - atpl + - babel-core + - bracket-template + - bufferutil + - cache-loader + - clean-css + - coffee-script + - csso + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - encoding + - esbuild + - eslint + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - less-loader + - liquid-node + - liquor + - lodash + - marko + - metro + - mote + - mustache + - nunjucks + - plates + - prettier + - pug + - pug-plain-loader + - qejs + - ractive + - raw-loader + - razor-tmpl + - react + - react-dom + - sass-loader + - slm + - squirrelly + - stylus-loader + - supports-color + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - typescript + - uglify-js + - underscore + - utf-8-validate + - vash + - velocityjs + - walrus + - webpack-cli + - webpack-sources + - whiskers + dev: false + /@zondax/ledger-filecoin@0.11.2: resolution: {integrity: sha512-S7dTCxSiB9cBQQc2zhLKQolU3EPVQD2tozXKnd5XTfIqBMkFP8Hi/6f7u3a196V3knMR62Sf4gsEM/cVV5QhAg==} dependencies: @@ -26307,7 +26058,7 @@ packages: /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 8.10.0 + acorn: 8.8.2 acorn-walk: 8.2.0 dev: true @@ -26332,7 +26083,6 @@ packages: acorn: ^8 dependencies: acorn: 8.8.2 - dev: true /acorn-jsx@5.3.2(acorn@7.4.1): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -26348,6 +26098,14 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.10.0 + dev: false + + /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: resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} @@ -26379,6 +26137,7 @@ packages: resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} engines: {node: '>=0.4.0'} hasBin: true + dev: false /acorn@8.7.1: resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} @@ -26621,7 +26380,6 @@ packages: /ansi-regex@3.0.1: resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} engines: {node: '>=4'} - dev: true /ansi-regex@4.1.1: resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} @@ -27062,7 +26820,7 @@ packages: resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} engines: {node: '>=4'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 /astral-regex@1.0.0: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} @@ -27095,7 +26853,6 @@ packages: resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} dependencies: lodash: 4.17.21 - dev: true /async@3.2.3: resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} @@ -27270,12 +27027,12 @@ packages: resolution: {integrity: sha512-J20PbRmSy38jW9TmqGEwd8xINUCuOm2I2bPQ1sK8LWLxKTbhPh0H48DJ27ff2qmSXvI30WYV0tKzSmGb+oCsXg==} dev: false - /babel-core@7.0.0-bridge.0(@babel/core@7.22.17): + /babel-core@7.0.0-bridge.0(@babel/core@7.22.9): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 /babel-jest@27.5.1(@babel/core@7.22.9): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} @@ -27385,7 +27142,7 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.72.1(esbuild@0.19.3) + webpack: 5.72.1(esbuild@0.19.0) dev: true /babel-loader@8.2.5(@babel/core@7.22.8)(webpack@5.76.1): @@ -27461,7 +27218,6 @@ packages: make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.88.2(metro@0.76.0) - dev: true /babel-plugin-add-react-displayname@0.0.5: resolution: {integrity: sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=} @@ -27483,7 +27239,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5 + '@babel/plugin-syntax-typescript': 7.17.10 '@babel/traverse': 7.22.8 transitivePeerDependencies: - supports-color @@ -27492,7 +27248,7 @@ packages: /babel-plugin-emotion@10.2.2: resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} dependencies: - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.4 '@emotion/serialize': 0.11.16 @@ -27526,7 +27282,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@babel/template': 7.22.5 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: false @@ -27536,7 +27292,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/template': 7.22.5 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -27546,7 +27302,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/template': 7.22.5 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -27607,18 +27363,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.17): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.17 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.8): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -27660,18 +27404,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-define-polyfill-provider': 0.3.3 - core-js-compat: 3.30.0 - transitivePeerDependencies: - - supports-color - - /babel-plugin-polyfill-corejs3@0.5.2(@babel/core@7.22.17): - resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) + '@babel/helper-define-polyfill-provider': 0.3.1 core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color @@ -27682,7 +27415,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.8) + '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.8) core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color @@ -27693,7 +27426,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9) + '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.9) core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color @@ -27725,17 +27458,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-define-polyfill-provider': 0.3.3 - transitivePeerDependencies: - - supports-color - - /babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.22.17): - resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) + '@babel/helper-define-polyfill-provider': 0.3.1 transitivePeerDependencies: - supports-color @@ -27745,7 +27468,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.8) + '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.8) transitivePeerDependencies: - supports-color @@ -27755,7 +27478,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9) + '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.9) transitivePeerDependencies: - supports-color @@ -27813,7 +27536,7 @@ packages: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 @@ -27895,7 +27618,7 @@ packages: dependencies: '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.8) '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) '@babel/preset-env': 7.21.4(@babel/core@7.22.8) babel-plugin-module-resolver: 4.1.0 babel-plugin-react-native-web: 0.18.12 @@ -27913,7 +27636,7 @@ packages: '@babel/plugin-proposal-object-rest-spread': 7.20.7 '@babel/plugin-syntax-class-properties': 7.12.13 '@babel/plugin-syntax-flow': 7.21.4 - '@babel/plugin-syntax-jsx': 7.22.5 + '@babel/plugin-syntax-jsx': 7.18.6 '@babel/plugin-syntax-object-rest-spread': 7.8.3 '@babel/plugin-transform-arrow-functions': 7.20.7 '@babel/plugin-transform-block-scoped-functions': 7.18.6 @@ -27926,12 +27649,12 @@ packages: '@babel/plugin-transform-function-name': 7.18.9 '@babel/plugin-transform-literals': 7.18.9 '@babel/plugin-transform-member-expression-literals': 7.18.6 - '@babel/plugin-transform-modules-commonjs': 7.22.15 + '@babel/plugin-transform-modules-commonjs': 7.21.2 '@babel/plugin-transform-object-super': 7.18.6 '@babel/plugin-transform-parameters': 7.21.3 '@babel/plugin-transform-property-literals': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.22.5 - '@babel/plugin-transform-react-jsx': 7.22.15 + '@babel/plugin-transform-react-display-name': 7.16.7 + '@babel/plugin-transform-react-jsx': 7.18.10 '@babel/plugin-transform-shorthand-properties': 7.18.6 '@babel/plugin-transform-spread': 7.20.7 '@babel/plugin-transform-template-literals': 7.18.9 @@ -27939,42 +27662,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-preset-fbjs@3.4.0(@babel/core@7.22.17): - resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.17) - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.17) - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.17) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.17) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.17) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) - babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 - transitivePeerDependencies: - - supports-color - /babel-preset-fbjs@3.4.0(@babel/core@7.22.8): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: @@ -27985,7 +27672,7 @@ packages: '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.8) '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.8) - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.8) + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.8) '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.8) '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.8) @@ -27998,12 +27685,12 @@ packages: '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) @@ -28021,7 +27708,7 @@ packages: '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9) '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.9) - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.9) '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.9) @@ -28034,19 +27721,18 @@ packages: '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.9) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.9) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color - dev: true /babel-preset-jest@27.5.1(@babel/core@7.22.9): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} @@ -28104,11 +27790,11 @@ packages: '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9) '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.9) '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.22.15(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.9) + '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) '@babel/runtime': 7.22.10 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 @@ -28780,25 +28466,25 @@ packages: picocolors: 1.0.0 dev: true - /browserslist@4.21.10: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} + /browserslist@4.21.3: + resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001532 - electron-to-chromium: 1.4.515 + caniuse-lite: 1.0.30001515 + electron-to-chromium: 1.4.459 node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.10) + update-browserslist-db: 1.0.10(browserslist@4.21.3) - /browserslist@4.21.3: - resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} + /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 dependencies: caniuse-lite: 1.0.30001515 electron-to-chromium: 1.4.459 node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.3) + update-browserslist-db: 1.0.10(browserslist@4.21.5) /browserslist@4.21.9: resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} @@ -29225,7 +28911,7 @@ packages: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.6.2 + tslib: 2.6.1 /camelcase-css@2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} @@ -29284,9 +28970,6 @@ packages: /caniuse-lite@1.0.30001515: resolution: {integrity: sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA==} - /caniuse-lite@1.0.30001532: - resolution: {integrity: sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==} - /canvas-confetti@1.6.0: resolution: {integrity: sha512-ej+w/m8Jzpv9Z7W7uJZer14Ke8P2ogsjg4ZMGIuq4iqUOqY2Jq8BNW42iGmNfRwREaaEfFIczLuZZiEVSYNHAA==} dev: false @@ -29547,7 +29230,7 @@ packages: normalize-path: 3.0.0 readdirp: 3.6.0 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 /chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} @@ -29659,6 +29342,19 @@ packages: restore-cursor: 4.0.0 dev: true + /cli-highlight@2.1.11: + resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} + engines: {node: '>=8.0.0', npm: '>=5.0.0'} + hasBin: true + dependencies: + chalk: 4.1.2 + highlight.js: 10.7.3 + mz: 2.7.0 + parse5: 5.1.1 + parse5-htmlparser2-tree-adapter: 6.0.1 + yargs: 16.2.0 + dev: false + /cli-spinners@2.6.1: resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} engines: {node: '>=6'} @@ -29710,6 +29406,15 @@ packages: execa: 0.8.0 dev: false + /clipboardy@2.3.0: + resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==} + engines: {node: '>=8'} + dependencies: + arch: 2.2.0 + execa: 1.0.0 + is-wsl: 2.2.0 + dev: false + /cliui@6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: @@ -29731,7 +29436,6 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: true /clone-buffer@1.0.0: resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} @@ -30169,6 +29873,178 @@ packages: /console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + /consolidate@0.15.1(lodash@4.17.21)(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==} + engines: {node: '>= 0.10.0'} + deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog + peerDependencies: + arc-templates: ^0.5.3 + atpl: '>=0.7.6' + babel-core: ^6.26.3 + bracket-template: ^1.1.5 + coffee-script: ^1.12.7 + dot: ^1.1.3 + dust: ^0.3.0 + dustjs-helpers: ^1.7.4 + dustjs-linkedin: ^2.7.5 + eco: ^1.1.0-rc-3 + ect: ^0.5.9 + ejs: ^3.1.5 + haml-coffee: ^1.14.1 + hamlet: ^0.3.3 + hamljs: ^0.6.2 + handlebars: ^4.7.6 + hogan.js: ^3.0.2 + htmling: ^0.0.8 + jade: ^1.11.0 + jazz: ^0.0.18 + jqtpl: ~1.1.0 + just: ^0.1.8 + liquid-node: ^3.0.1 + liquor: ^0.0.5 + lodash: ^4.17.20 + marko: ^3.14.4 + mote: ^0.2.0 + mustache: ^3.0.0 + nunjucks: ^3.2.2 + plates: ~0.4.11 + pug: ^3.0.0 + qejs: ^3.0.5 + ractive: ^1.3.12 + razor-tmpl: ^1.3.1 + react: ^16.13.1 + react-dom: ^16.13.1 + slm: ^2.0.0 + squirrelly: ^5.1.0 + swig: ^1.4.2 + swig-templates: ^2.0.3 + teacup: ^2.0.0 + templayed: '>=0.2.3' + then-jade: '*' + then-pug: '*' + tinyliquid: ^0.2.34 + toffee: ^0.3.6 + twig: ^1.15.2 + twing: ^5.0.2 + underscore: ^1.11.0 + vash: ^0.13.0 + velocityjs: ^2.0.1 + walrus: ^0.10.1 + whiskers: ^0.4.0 + peerDependenciesMeta: + arc-templates: + optional: true + atpl: + optional: true + babel-core: + optional: true + bracket-template: + optional: true + coffee-script: + optional: true + dot: + optional: true + dust: + optional: true + dustjs-helpers: + optional: true + dustjs-linkedin: + optional: true + eco: + optional: true + ect: + optional: true + ejs: + optional: true + haml-coffee: + optional: true + hamlet: + optional: true + hamljs: + optional: true + handlebars: + optional: true + hogan.js: + optional: true + htmling: + optional: true + jade: + optional: true + jazz: + optional: true + jqtpl: + optional: true + just: + optional: true + liquid-node: + optional: true + liquor: + optional: true + lodash: + optional: true + marko: + optional: true + mote: + optional: true + mustache: + optional: true + nunjucks: + optional: true + plates: + optional: true + pug: + optional: true + qejs: + optional: true + ractive: + optional: true + razor-tmpl: + optional: true + react: + optional: true + react-dom: + optional: true + slm: + optional: true + squirrelly: + optional: true + swig: + optional: true + swig-templates: + optional: true + teacup: + optional: true + templayed: + optional: true + then-jade: + optional: true + then-pug: + optional: true + tinyliquid: + optional: true + toffee: + optional: true + twig: + optional: true + twing: + optional: true + underscore: + optional: true + vash: + optional: true + velocityjs: + optional: true + walrus: + optional: true + whiskers: + optional: true + dependencies: + bluebird: 3.7.2 + lodash: 4.17.21 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + /constants-browserify@1.0.0: resolution: {integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=} @@ -30382,9 +30258,6 @@ packages: dependencies: safe-buffer: 5.1.2 - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} @@ -30451,6 +30324,21 @@ packages: webpack: 5.88.2(metro@0.76.0) dev: true + /copy-webpack-plugin@9.1.0(webpack@5.88.2): + resolution: {integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.1.0 + dependencies: + fast-glob: 3.2.12 + glob-parent: 6.0.2 + globby: 11.1.0 + normalize-path: 3.0.0 + schema-utils: 3.3.0 + serialize-javascript: 6.0.1 + webpack: 5.88.2 + dev: false + /core-js-compat@3.30.0: resolution: {integrity: sha512-P5A2h/9mRYZFIAP+5Ab8ns6083IyVpSclU74UNvbGVQ8VM7n3n3/g2yF3AkKQ9NXz2O+ioxLbEWKnDtgsFamhg==} dependencies: @@ -30736,6 +30624,11 @@ packages: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} + /crypto@1.0.1: + resolution: {integrity: sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==} + deprecated: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in. + dev: false + /css-blank-pseudo@3.0.3(postcss@7.0.39): resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} engines: {node: ^12 || ^14 || >=16} @@ -30762,13 +30655,13 @@ packages: resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} engines: {node: '>=4'} - /css-declaration-sorter@6.3.0(postcss@8.4.29): + /css-declaration-sorter@6.3.0(postcss@8.4.21): resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 /css-functions-list@3.1.0: resolution: {integrity: sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==} @@ -30832,13 +30725,13 @@ packages: peerDependencies: webpack: ^4.27.0 || ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.29) + icss-utils: 5.1.0(postcss@8.4.21) loader-utils: 2.0.4 - postcss: 8.4.29 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) - postcss-modules-scope: 3.0.0(postcss@8.4.29) - postcss-modules-values: 4.0.0(postcss@8.4.29) + 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 schema-utils: 3.3.0 semver: 7.5.4 @@ -30851,12 +30744,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.29) - postcss: 8.4.29 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) - postcss-modules-scope: 3.0.0(postcss@8.4.29) - postcss-modules-values: 4.0.0(postcss@8.4.29) + 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-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.76.1 @@ -30868,16 +30761,15 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.29) - postcss: 8.4.29 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) - postcss-modules-scope: 3.0.0(postcss@8.4.29) - postcss-modules-values: 4.0.0(postcss@8.4.29) + 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-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.88.2(metro@0.76.0) - dev: true /css-minimizer-webpack-plugin@3.4.1(metro@0.76.0)(webpack@5.88.2): resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} @@ -30898,9 +30790,9 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.12(postcss@8.4.29) + cssnano: 5.1.12(postcss@8.4.21) jest-worker: 27.5.1(metro@0.76.0) - postcss: 8.4.29 + postcss: 8.4.21 schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 @@ -30928,9 +30820,9 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.12(postcss@8.4.29) + cssnano: 5.1.12(postcss@8.4.21) jest-worker: 27.5.1 - postcss: 8.4.29 + postcss: 8.4.21 schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 @@ -30939,6 +30831,36 @@ packages: - metro dev: false + /css-minimizer-webpack-plugin@3.4.1(webpack@5.88.2): + resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@parcel/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + '@parcel/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + dependencies: + cssnano: 5.1.12(postcss@8.4.21) + jest-worker: 27.5.1 + postcss: 8.4.21 + schema-utils: 4.0.0 + serialize-javascript: 6.0.1 + source-map: 0.6.1 + webpack: 5.88.2 + transitivePeerDependencies: + - metro + dev: false + /css-prefers-color-scheme@6.0.3(postcss@7.0.39): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} engines: {node: ^12 || ^14 || >=16} @@ -31001,6 +30923,7 @@ packages: camelize: 1.0.0 css-color-keywords: 1.0.0 postcss-value-parser: 4.2.0 + dev: false /css-tree@1.0.0-alpha.37: resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} @@ -31040,60 +30963,60 @@ packages: resolution: {integrity: sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==} dev: true - /cssnano-preset-default@5.2.12(postcss@8.4.29): + /cssnano-preset-default@5.2.12(postcss@8.4.21): resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.0(postcss@8.4.29) - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 - postcss-calc: 8.2.4(postcss@8.4.29) - postcss-colormin: 5.3.0(postcss@8.4.29) - postcss-convert-values: 5.1.2(postcss@8.4.29) - postcss-discard-comments: 5.1.2(postcss@8.4.29) - postcss-discard-duplicates: 5.1.0(postcss@8.4.29) - postcss-discard-empty: 5.1.1(postcss@8.4.29) - postcss-discard-overridden: 5.1.0(postcss@8.4.29) - postcss-merge-longhand: 5.1.6(postcss@8.4.29) - postcss-merge-rules: 5.1.2(postcss@8.4.29) - postcss-minify-font-values: 5.1.0(postcss@8.4.29) - postcss-minify-gradients: 5.1.1(postcss@8.4.29) - postcss-minify-params: 5.1.3(postcss@8.4.29) - postcss-minify-selectors: 5.2.1(postcss@8.4.29) - postcss-normalize-charset: 5.1.0(postcss@8.4.29) - postcss-normalize-display-values: 5.1.0(postcss@8.4.29) - postcss-normalize-positions: 5.1.1(postcss@8.4.29) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.29) - postcss-normalize-string: 5.1.0(postcss@8.4.29) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.29) - postcss-normalize-unicode: 5.1.0(postcss@8.4.29) - postcss-normalize-url: 5.1.0(postcss@8.4.29) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.29) - postcss-ordered-values: 5.1.3(postcss@8.4.29) - postcss-reduce-initial: 5.1.0(postcss@8.4.29) - postcss-reduce-transforms: 5.1.0(postcss@8.4.29) - postcss-svgo: 5.1.0(postcss@8.4.29) - postcss-unique-selectors: 5.1.1(postcss@8.4.29) - - /cssnano-utils@3.1.0(postcss@8.4.29): + css-declaration-sorter: 6.3.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.0(postcss@8.4.21) + postcss-convert-values: 5.1.2(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.6(postcss@8.4.21) + postcss-merge-rules: 5.1.2(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.3(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.0(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.0(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: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 - /cssnano@5.1.12(postcss@8.4.29): + /cssnano@5.1.12(postcss@8.4.21): resolution: {integrity: sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.12(postcss@8.4.29) + cssnano-preset-default: 5.2.12(postcss@8.4.21) lilconfig: 2.0.6 - postcss: 8.4.29 + postcss: 8.4.21 yaml: 1.10.2 /csso@4.2.0: @@ -31634,8 +31557,6 @@ packages: /de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} requiresBuild: true - dev: true - optional: true /debounce-fn@4.0.0: resolution: {integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==} @@ -31811,6 +31732,11 @@ packages: resolution: {integrity: sha512-QkgBca0mL08P6HiOjoqvmm6xOAl2W6CT2+34Ljhg0OeFan8cwlcdq8jrLKsBBuUFAZLsN5b6y491KdKEoSo9lg==} dev: true + /deepmerge@1.5.2: + resolution: {integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==} + engines: {node: '>=0.10.0'} + dev: false + /deepmerge@3.3.0: resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==} engines: {node: '>=0.10.0'} @@ -32320,7 +32246,7 @@ packages: vinyl-fs: 3.0.3 yargs: 15.4.1 optionalDependencies: - '@vue/compiler-sfc': 3.3.4 + '@vue/compiler-sfc': 3.2.33 vue-template-compiler: 2.7.14 transitivePeerDependencies: - supports-color @@ -32434,7 +32360,7 @@ packages: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.6.1 /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} @@ -32488,7 +32414,7 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-is: 17.0.2 - tslib: 2.6.2 + tslib: 2.6.1 dev: true /dtrace-provider@0.8.8: @@ -32529,7 +32455,6 @@ packages: /easy-stack@1.0.1: resolution: {integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==} engines: {node: '>=6.0.0'} - dev: true /ecc-jsbn@0.1.2: resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} @@ -32657,9 +32582,6 @@ packages: /electron-to-chromium@1.4.459: resolution: {integrity: sha512-XXRS5NFv8nCrBL74Rm3qhJjA2VCsRFx0OjHKBMPI0otij56aun8UWiKTDABmd5/7GTR021pA4wivs+Ri6XCElg==} - /electron-to-chromium@1.4.515: - resolution: {integrity: sha512-VTq6vjk3kCfG2qdzQRd/i9dIyVVm0dbtZIgFzrLgfB73mXDQT2HPKVRc1EoZcAVUv9XhXAu08DWqJuababdGGg==} - /electron-updater@5.3.0: resolution: {integrity: sha512-iKEr7yQBcvnQUPnSDYGSWC9t0eF2YbZWeYYYZzYxdl+HiRejXFENjYMnYjoOm2zxyD6Cr2JTHZhp9pqxiXuCOw==} dependencies: @@ -32803,7 +32725,7 @@ packages: resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==} engines: {node: '>=10.13.0'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 tapable: 2.2.1 /enhanced-resolve@5.14.1: @@ -32968,7 +32890,6 @@ packages: /es-module-lexer@1.3.0: resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==} - dev: true /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} @@ -33125,34 +33046,34 @@ packages: '@esbuild/win32-x64': 0.18.20 dev: true - /esbuild@0.19.3: - resolution: {integrity: sha512-UlJ1qUUA2jL2nNib1JTSkifQTcYTroFqRjwCFW4QYEKEsixXD5Tik9xML7zh2gTxkYTBKGHNH9y7txMwVyPbjw==} + /esbuild@0.19.0: + resolution: {integrity: sha512-i7i8TP4vuG55bKeLyqqk5sTPu1ZjPH3wkcLvAj/0X/222iWFo3AJUYRKjbOoY6BWFMH3teizxHEdV9Su5ESl0w==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.19.3 - '@esbuild/android-arm64': 0.19.3 - '@esbuild/android-x64': 0.19.3 - '@esbuild/darwin-arm64': 0.19.3 - '@esbuild/darwin-x64': 0.19.3 - '@esbuild/freebsd-arm64': 0.19.3 - '@esbuild/freebsd-x64': 0.19.3 - '@esbuild/linux-arm': 0.19.3 - '@esbuild/linux-arm64': 0.19.3 - '@esbuild/linux-ia32': 0.19.3 - '@esbuild/linux-loong64': 0.19.3 - '@esbuild/linux-mips64el': 0.19.3 - '@esbuild/linux-ppc64': 0.19.3 - '@esbuild/linux-riscv64': 0.19.3 - '@esbuild/linux-s390x': 0.19.3 - '@esbuild/linux-x64': 0.19.3 - '@esbuild/netbsd-x64': 0.19.3 - '@esbuild/openbsd-x64': 0.19.3 - '@esbuild/sunos-x64': 0.19.3 - '@esbuild/win32-arm64': 0.19.3 - '@esbuild/win32-ia32': 0.19.3 - '@esbuild/win32-x64': 0.19.3 + '@esbuild/android-arm': 0.19.0 + '@esbuild/android-arm64': 0.19.0 + '@esbuild/android-x64': 0.19.0 + '@esbuild/darwin-arm64': 0.19.0 + '@esbuild/darwin-x64': 0.19.0 + '@esbuild/freebsd-arm64': 0.19.0 + '@esbuild/freebsd-x64': 0.19.0 + '@esbuild/linux-arm': 0.19.0 + '@esbuild/linux-arm64': 0.19.0 + '@esbuild/linux-ia32': 0.19.0 + '@esbuild/linux-loong64': 0.19.0 + '@esbuild/linux-mips64el': 0.19.0 + '@esbuild/linux-ppc64': 0.19.0 + '@esbuild/linux-riscv64': 0.19.0 + '@esbuild/linux-s390x': 0.19.0 + '@esbuild/linux-x64': 0.19.0 + '@esbuild/netbsd-x64': 0.19.0 + '@esbuild/openbsd-x64': 0.19.0 + '@esbuild/sunos-x64': 0.19.0 + '@esbuild/win32-arm64': 0.19.0 + '@esbuild/win32-ia32': 0.19.0 + '@esbuild/win32-x64': 0.19.0 dev: true /escalade@3.1.1: @@ -34090,9 +34011,9 @@ packages: resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.10.0 - acorn-jsx: 5.3.2(acorn@8.10.0) - eslint-visitor-keys: 3.4.3 + acorn: 8.8.2 + acorn-jsx: 5.3.2(acorn@8.8.2) + eslint-visitor-keys: 3.4.1 /espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} @@ -34101,6 +34022,7 @@ packages: acorn: 8.10.0 acorn-jsx: 5.3.2(acorn@8.10.0) eslint-visitor-keys: 3.4.3 + dev: false /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} @@ -34132,7 +34054,7 @@ packages: engines: {node: '>=8.3.0'} dependencies: '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 c8: 7.11.2 transitivePeerDependencies: - supports-color @@ -34466,7 +34388,6 @@ packages: /event-pubsub@4.3.0: resolution: {integrity: sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==} engines: {node: '>=4.0.0'} - dev: true /event-stream@3.3.4: resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} @@ -35627,7 +35548,6 @@ packages: /fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} - dev: true /fastq@1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} @@ -35722,7 +35642,6 @@ packages: engines: {node: '>=4'} dependencies: escape-string-regexp: 1.0.5 - dev: true /figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} @@ -35774,7 +35693,7 @@ packages: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} engines: {node: '>= 12'} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 dev: false /file-system-cache@1.0.5: @@ -36124,6 +36043,39 @@ packages: - supports-color dev: true + /fork-ts-checker-webpack-plugin@6.5.2(eslint@8.41.0)(typescript@5.1.3)(vue-template-compiler@2.7.14)(webpack@5.88.2): + resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.22.5 + '@types/json-schema': 7.0.12 + chalk: 4.1.2 + chokidar: 3.5.3 + cosmiconfig: 6.0.0 + deepmerge: 4.3.0 + eslint: 8.41.0 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.4.6 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.5.4 + tapable: 1.1.3 + typescript: 5.1.3 + vue-template-compiler: 2.7.14 + webpack: 5.88.2 + dev: false + /fork-ts-checker-webpack-plugin@6.5.2(eslint@8.41.0)(typescript@5.1.3)(webpack@4.46.0): resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} @@ -36409,7 +36361,7 @@ packages: engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 - graceful-fs: 4.2.11 + graceful-fs: 4.2.10 jsonfile: 6.1.0 universalify: 2.0.0 @@ -36473,14 +36425,6 @@ packages: engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true - dev: true - optional: true - - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true optional: true /fstream@1.0.12: @@ -37123,7 +37067,7 @@ packages: 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.6.2 + tslib: 2.6.1 /graphql@15.8.0: resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} @@ -37304,6 +37248,14 @@ packages: type-fest: 1.4.0 dev: false + /hash-sum@1.0.2: + resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==} + dev: false + + /hash-sum@2.0.0: + resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} + dev: false + /hash.js@1.1.7: resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} dependencies: @@ -37552,7 +37504,6 @@ packages: /highlight.js@10.7.3: resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} - dev: true /history@4.10.1: resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} @@ -37596,7 +37547,6 @@ packages: /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - dev: true /hosted-git-info@3.0.8: resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} @@ -37736,7 +37686,6 @@ packages: pretty-error: 4.0.0 tapable: 2.2.1 webpack: 5.88.2(webpack-cli@4.10.0) - dev: true /htmlparser2@6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} @@ -37970,13 +37919,13 @@ packages: postcss: 7.0.39 dev: true - /icss-utils@5.1.0(postcss@8.4.29): + /icss-utils@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 /idb@7.0.1: resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==} @@ -38182,7 +38131,6 @@ packages: /interpret@2.2.0: resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} engines: {node: '>= 0.10'} - dev: true /intersection-observer@0.12.2: resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==} @@ -38450,6 +38398,12 @@ packages: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} + /is-file-esm@1.0.0: + resolution: {integrity: sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==} + dependencies: + read-pkg-up: 7.0.1 + dev: false + /is-finite@1.1.0: resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} engines: {node: '>=0.10.0'} @@ -38944,7 +38898,7 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 '@babel/parser': 7.22.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -39004,6 +38958,10 @@ packages: filelist: 1.0.3 minimatch: 3.1.2 + /javascript-stringify@2.1.0: + resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} + dev: false + /jayson@4.1.0: resolution: {integrity: sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==} engines: {node: '>=8'} @@ -40368,7 +40326,7 @@ packages: sane: 4.1.0 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro - supports-color @@ -40392,7 +40350,7 @@ packages: sane: 4.1.0 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro - supports-color @@ -40415,7 +40373,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro dev: false @@ -40437,7 +40395,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro dev: true @@ -40458,7 +40416,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro dev: true @@ -40479,7 +40437,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro dev: true @@ -40500,7 +40458,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro dev: true @@ -40521,7 +40479,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro dev: true @@ -41140,9 +41098,9 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/generator': 7.22.9 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 @@ -41170,10 +41128,10 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/generator': 7.22.5 + '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 @@ -41202,10 +41160,10 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/generator': 7.22.5 + '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3(metro@0.76.0) '@jest/types': 28.1.3 @@ -41235,9 +41193,9 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/generator': 7.22.9 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/types': 7.22.15 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) + '@babel/types': 7.22.5 '@jest/expect-utils': 29.6.2 '@jest/transform': 29.6.2 '@jest/types': 29.6.1 @@ -41289,7 +41247,7 @@ packages: '@types/node': 18.16.19 chalk: 4.1.2 ci-info: 3.3.2 - graceful-fs: 4.2.11 + graceful-fs: 4.2.10 picomatch: 2.3.1 /jest-util@29.5.0: @@ -41937,7 +41895,6 @@ packages: /js-message@1.0.7: resolution: {integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==} engines: {node: '>=0.6.0'} - dev: true /js-queue@2.0.2: resolution: {integrity: sha512-pbKLsbCfi7kriM3s1J4DDCo7jQkI58zPLHi0heXPzPlj0hjUsm+FesPUbE0DSbIVIK503A36aUBoCN7eMFedkA==} @@ -42008,16 +41965,16 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) - '@babel/preset-flow': 7.16.7(@babel/core@7.22.17) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) - '@babel/register': 7.17.7(@babel/core@7.22.17) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.17) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) + '@babel/preset-flow': 7.16.7(@babel/core@7.22.9) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) + '@babel/register': 7.17.7(@babel/core@7.22.9) + babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) chalk: 4.1.2 flow-parser: 0.185.2 graceful-fs: 4.2.11 @@ -42036,17 +41993,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) '@babel/preset-env': 7.17.10(@babel/core@7.22.8) - '@babel/preset-flow': 7.16.7(@babel/core@7.22.17) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) - '@babel/register': 7.17.7(@babel/core@7.22.17) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.17) + '@babel/preset-flow': 7.16.7(@babel/core@7.22.9) + '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) + '@babel/register': 7.17.7(@babel/core@7.22.9) + babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) chalk: 4.1.2 flow-parser: 0.185.2 graceful-fs: 4.2.11 @@ -42069,7 +42026,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.10.0 + acorn: 8.8.2 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 @@ -42093,7 +42050,7 @@ packages: whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 - ws: 7.5.9 + ws: 7.5.7 xml-name-validator: 3.0.0 transitivePeerDependencies: - bufferutil @@ -42111,7 +42068,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.10.0 + acorn: 8.8.2 acorn-globals: 6.0.0 cssom: 0.5.0 cssstyle: 2.3.0 @@ -42153,7 +42110,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.10.0 + acorn: 8.8.2 acorn-globals: 6.0.0 cssom: 0.5.0 cssstyle: 2.3.0 @@ -42195,7 +42152,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.10.0 + acorn: 8.8.2 acorn-globals: 7.0.1 cssom: 0.5.0 cssstyle: 2.3.0 @@ -42707,6 +42664,12 @@ packages: package-json: 6.4.0 dev: false + /launch-editor-middleware@2.6.0: + resolution: {integrity: sha512-K2yxgljj5TdCeRN1lBtO3/J26+AIDDDw+04y6VAiZbWcTdBwsYN6RrZBnW5DN/QiSIdKNjKdATLUUluWWFYTIA==} + dependencies: + launch-editor: 2.6.0 + dev: false + /launch-editor@2.6.0: resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==} dependencies: @@ -42761,15 +42724,6 @@ packages: buffer-pipe: 0.0.3 dev: false - /ledger-cosmos-js@2.1.8: - resolution: {integrity: sha512-Gl7SWMq+3R9OTkF1hLlg5+1geGOmcHX9OdS+INDsGNxSiKRWlsWCvQipGoDnRIQ6CPo2i/Ze58Dw0Mt/l3UYyA==} - dependencies: - '@babel/runtime': 7.22.10 - '@ledgerhq/hw-transport': 5.51.1 - bech32: 1.1.4 - ripemd160: 2.0.2 - dev: false - /level-blobs@0.1.7: resolution: {integrity: sha1-mrm5e7mfHtv594o0M+Ie1WOGva8=} dependencies: @@ -42858,6 +42812,16 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 + /libsodium-sumo@0.7.11: + resolution: {integrity: sha512-bY+7ph7xpk51Ez2GbE10lXAQ5sJma6NghcIDaSPbM/G9elfrjLa0COHl/7P6Wb/JizQzl5UQontOOP1z0VwbLA==} + dev: false + + /libsodium-wrappers-sumo@0.7.11: + resolution: {integrity: sha512-DGypHOmJbB1nZn89KIfGOAkDgfv5N6SBGC3Qvmy/On0P0WD1JQvNRS/e3UL3aFF+xC0m+MYz5M+MnRnK2HMrKQ==} + dependencies: + libsodium-sumo: 0.7.11 + dev: false + /libsodium-wrappers@0.7.10: resolution: {integrity: sha512-pO3F1Q9NPLB/MWIhehim42b/Fwb30JNScCNh8TcQ/kIc+qGLQch8ag8wb0keK3EP5kbGakk1H8Wwo7v+36rNQg==} dependencies: @@ -42891,8 +42855,8 @@ packages: /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lint-staged@14.0.1: - resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==} + /lint-staged@14.0.0: + resolution: {integrity: sha512-0tLf0pqZYkar/wu3nTctk4rVIG+d7PanDYv4/IQR4qwdqfQkTDziLRFnqMcLuLBTuUqmcLwsHPD2EjQ18d/oaA==} engines: {node: ^16.14.0 || >=18.0.0} hasBin: true dependencies: @@ -43068,7 +43032,6 @@ packages: big.js: 5.2.2 emojis-list: 3.0.0 json5: 1.0.1 - dev: true /loader-utils@2.0.0: resolution: {integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==} @@ -43181,6 +43144,14 @@ packages: resolution: {integrity: sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=} dev: false + /lodash.defaultsdeep@4.6.1: + resolution: {integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==} + dev: false + + /lodash.escape@4.0.1: + resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==} + dev: false + /lodash.escaperegexp@4.1.2: resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} dev: false @@ -43197,6 +43168,10 @@ packages: resolution: {integrity: sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=} dev: false + /lodash.invokemap@4.6.0: + resolution: {integrity: sha512-CfkycNtMqgUlfjfdh2BhKO/ZXrP8ePOX5lEU/g0R3ItJcnuxWDwokMGKx1hWcfOikmyOVx6X9IwWnDGlgKl61w==} + dev: false + /lodash.isarguments@3.1.0: resolution: {integrity: sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=} dev: false @@ -43236,6 +43211,10 @@ packages: resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} dev: true + /lodash.mapvalues@4.6.0: + resolution: {integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==} + dev: false + /lodash.memoize@4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} @@ -43258,6 +43237,10 @@ packages: lodash: 4.17.21 dev: false + /lodash.pullall@4.2.0: + resolution: {integrity: sha512-VhqxBKH0ZxPpLhiu68YD1KnHmbhQJQctcipvmFnqIBDYzcIHzf3Zpu0tpeOKtR4x76p9yohc506eGdOjTmyIBg==} + dev: false + /lodash.set@4.3.2: resolution: {integrity: sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==} dev: true @@ -43296,6 +43279,10 @@ packages: /lodash.uniq@4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + /lodash.uniqby@4.7.0: + resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} + dev: false + /lodash.upperfirst@4.3.1: resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} dev: true @@ -43324,13 +43311,12 @@ packages: is-unicode-supported: 0.1.0 /log-update@2.3.0: - resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} + resolution: {integrity: sha1-iDKP19HOeTiykoN0bwsbwSayRwg=} engines: {node: '>=4'} dependencies: ansi-escapes: 3.2.0 cli-cursor: 2.1.0 wrap-ansi: 3.0.1 - dev: true /log-update@5.0.1: resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==} @@ -43424,7 +43410,7 @@ packages: /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 /lowercase-keys@1.0.1: resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} @@ -43635,7 +43621,6 @@ packages: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: sourcemap-codec: 1.4.8 - dev: false /magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} @@ -43644,15 +43629,6 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 dev: true - /magic-string@0.30.3: - resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==} - engines: {node: '>=12'} - requiresBuild: true - dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 - dev: true - optional: true - /make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} @@ -44268,6 +44244,12 @@ packages: dependencies: is-plain-obj: 2.1.0 + /merge-source-map@1.1.0: + resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==} + dependencies: + source-map: 0.6.1 + dev: false + /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -44321,7 +44303,7 @@ packages: /metro-babel-transformer@0.73.9: resolution: {integrity: sha512-DlYwg9wwYIZTHtic7dyD4BP0SDftoltZ3clma76nHu43blMWsCnrImHeHsAVne3XsQ+RJaSRxhN5nkG2VyVHwA==} dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 hermes-parser: 0.8.0 metro-source-map: 0.73.9 nullthrows: 1.1.1 @@ -44572,7 +44554,7 @@ packages: nullthrows: 1.1.1 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro - supports-color @@ -44595,7 +44577,7 @@ packages: nullthrows: 1.1.1 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - metro - supports-color @@ -44632,7 +44614,7 @@ packages: connect: 3.7.0 debug: 2.6.9 ws: 7.5.7 - yargs: 17.5.1 + yargs: 17.7.2 transitivePeerDependencies: - bufferutil - supports-color @@ -44710,11 +44692,11 @@ packages: '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.8) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) '@babel/plugin-transform-object-assign': 7.16.7(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.8) '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.8) @@ -44723,7 +44705,7 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.8) '@babel/template': 7.22.5 react-refresh: 0.4.3 @@ -44759,11 +44741,11 @@ packages: '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.9) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.9) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) '@babel/plugin-transform-object-assign': 7.16.7(@babel/core@7.22.9) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.9) '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.9) @@ -44772,7 +44754,7 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.9) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.9) + '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.9) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.9) '@babel/template': 7.22.5 react-refresh: 0.4.3 @@ -44807,11 +44789,11 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.8) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.8) '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.8) @@ -44819,7 +44801,7 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.8) '@babel/template': 7.22.5 react-refresh: 0.4.3 @@ -44832,7 +44814,7 @@ packages: peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.21.0 '@babel/plugin-proposal-async-generator-functions': 7.20.7 '@babel/plugin-proposal-class-properties': 7.18.6 '@babel/plugin-proposal-export-default-from': 7.16.7 @@ -44854,11 +44836,11 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7 '@babel/plugin-transform-function-name': 7.18.9 '@babel/plugin-transform-literals': 7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.22.15 + '@babel/plugin-transform-modules-commonjs': 7.21.2 '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5 '@babel/plugin-transform-parameters': 7.21.3 - '@babel/plugin-transform-react-display-name': 7.22.5 - '@babel/plugin-transform-react-jsx': 7.22.15 + '@babel/plugin-transform-react-display-name': 7.16.7 + '@babel/plugin-transform-react-jsx': 7.18.10 '@babel/plugin-transform-react-jsx-self': 7.18.6 '@babel/plugin-transform-react-jsx-source': 7.19.6 '@babel/plugin-transform-runtime': 7.17.10 @@ -44866,59 +44848,13 @@ packages: '@babel/plugin-transform-spread': 7.20.7 '@babel/plugin-transform-sticky-regex': 7.18.6 '@babel/plugin-transform-template-literals': 7.18.9 - '@babel/plugin-transform-typescript': 7.22.15 + '@babel/plugin-transform-typescript': 7.16.8 '@babel/plugin-transform-unicode-regex': 7.18.6 '@babel/template': 7.22.5 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color - /metro-react-native-babel-preset@0.73.9(@babel/core@7.22.17): - resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} - peerDependencies: - '@babel/core': '*' - dependencies: - '@babel/core': 7.22.17 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.17) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.17) - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.17) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.17) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.17) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.17) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.17) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.17) - '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.17) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.17) - '@babel/template': 7.22.5 - react-refresh: 0.4.3 - transitivePeerDependencies: - - supports-color - /metro-react-native-babel-preset@0.73.9(@babel/core@7.22.8): resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} peerDependencies: @@ -44946,11 +44882,11 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.8) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.8) '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.8) @@ -44958,13 +44894,59 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) + '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.8) '@babel/template': 7.22.5 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color + /metro-react-native-babel-preset@0.73.9(@babel/core@7.22.9): + resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.22.9 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.9) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.9) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.9) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) + '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.9) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.9) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.9) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) + '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.9) + '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.9) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.9) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) + '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.9) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.9) + '@babel/template': 7.22.5 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + /metro-react-native-babel-preset@0.76.0(@babel/core@7.22.8): resolution: {integrity: sha512-2sM6dy9uAbuQlg7l/VOdiudUUMFRkABJ1YLkZU6Fpqi/rJCXn4fbF0pO+TwCFbBYNIQBY50clv9RPvD2n64hXg==} engines: {node: '>=16'} @@ -45034,7 +45016,7 @@ packages: peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.21.0 babel-preset-fbjs: 3.4.0 hermes-parser: 0.8.0 metro-babel-transformer: 0.73.9 @@ -45117,7 +45099,7 @@ packages: resolution: {integrity: sha512-yxypInsRo3SfS00IgTuL6a2W2tfwLY//vA2E+GeqGBF5zTbJZAhwNGIEl8S87XXZhwzJcxf5/8LjJC1YDzabww==} dependencies: '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 invariant: 2.2.4 metro-symbolicate: 0.67.0 nullthrows: 1.1.1 @@ -45132,7 +45114,7 @@ packages: resolution: {integrity: sha512-l4VZKzdqafipriETYR6lsrwtavCF1+CMhCOY9XbyWeTrpGSNgJQgdeJpttzEZTHQQTLR0csQo0nD1ef3zEP6IQ==} dependencies: '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 invariant: 2.2.4 metro-symbolicate: 0.73.9 nullthrows: 1.1.1 @@ -45215,7 +45197,7 @@ packages: /metro-transform-plugins@0.73.9: resolution: {integrity: sha512-r9NeiqMngmooX2VOKLJVQrMuV7PAydbqst5bFhdVBPcFpZkxxqyzjzo+kzrszGy2UpSQBZr2P1L6OMjLHwQwfQ==} dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 '@babel/generator': 7.22.9 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 @@ -45246,7 +45228,7 @@ packages: '@babel/core': 7.22.9 '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 babel-preset-fbjs: 3.4.0(@babel/core@7.22.9) metro: 0.67.0 metro-babel-transformer: 0.67.0 @@ -45271,11 +45253,11 @@ packages: metro-minify-terser: optional: true dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 - '@babel/types': 7.22.15 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.17) + '@babel/types': 7.22.5 + babel-preset-fbjs: 3.4.0(@babel/core@7.22.9) metro: 0.73.9 metro-babel-transformer: 0.73.9 metro-cache: 0.73.9 @@ -45358,7 +45340,7 @@ packages: '@babel/parser': 7.22.7 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 absolute-path: 0.0.0 accepts: 1.3.8 async: 2.6.4 @@ -45416,12 +45398,12 @@ packages: hasBin: true dependencies: '@babel/code-frame': 7.22.5 - '@babel/core': 7.22.17 + '@babel/core': 7.22.9 '@babel/generator': 7.22.9 '@babel/parser': 7.22.7 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.15 + '@babel/types': 7.22.5 absolute-path: 0.0.0 accepts: 1.3.8 async: 3.2.3 @@ -45447,7 +45429,7 @@ packages: 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.22.17) + metro-react-native-babel-preset: 0.73.9(@babel/core@7.22.9) metro-resolver: 0.73.9 metro-runtime: 0.73.9 metro-source-map: 0.73.9 @@ -45464,7 +45446,7 @@ packages: temp: 0.8.3 throat: 5.0.0 ws: 7.5.7 - yargs: 17.5.1 + yargs: 17.7.2 transitivePeerDependencies: - bufferutil - encoding @@ -45740,8 +45722,8 @@ packages: /micromark-extension-mdxjs@1.0.1: resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} dependencies: - acorn: 8.10.0 - acorn-jsx: 5.3.2(acorn@8.10.0) + acorn: 8.8.2 + acorn-jsx: 5.3.2(acorn@8.8.2) micromark-extension-mdx-expression: 1.0.8 micromark-extension-mdx-jsx: 1.0.5 micromark-extension-mdx-md: 1.0.1 @@ -46069,7 +46051,6 @@ packages: dependencies: schema-utils: 4.0.0 webpack: 5.88.2(metro@0.76.0) - dev: true /minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} @@ -46245,6 +46226,10 @@ packages: engines: {node: '>=0.10.0'} dev: true + /module-alias@2.2.3: + resolution: {integrity: sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==} + dev: false + /module-deps-sortable@5.0.3: resolution: {integrity: sha512-eiyIZj/A0dj1o4ywXWqicazUL3l0HP3TydUR6xF0X3xh3LGBMLqW8a9aFe6MuNH4mxNMk53QKBHM6LOPR8kSgw==} engines: {node: '>= 0.6'} @@ -46318,6 +46303,11 @@ packages: engines: {node: '>=4'} dev: false + /mrmime@1.0.1: + resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} + engines: {node: '>=10'} + dev: false + /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -46458,6 +46448,7 @@ packages: resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + dev: false /nanomatch@1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} @@ -46778,7 +46769,7 @@ packages: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.6.2 + tslib: 2.6.1 /nocache@2.1.0: resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==} @@ -47062,7 +47053,6 @@ packages: resolve: 1.22.1 semver: 5.7.1 validate-npm-package-license: 3.0.4 - dev: true /normalize-package-data@3.0.3: resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} @@ -47446,7 +47436,6 @@ packages: /opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true - dev: true /optionator@0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} @@ -47722,7 +47711,7 @@ packages: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.6.1 /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -47852,6 +47841,16 @@ packages: parse-path: 7.0.0 dev: false + /parse5-htmlparser2-tree-adapter@6.0.1: + resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} + dependencies: + parse5: 6.0.1 + dev: false + + /parse5@5.1.1: + resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + dev: false + /parse5@6.0.1: resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} @@ -47868,7 +47867,7 @@ packages: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.6.1 /pascalcase@0.1.1: resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} @@ -47894,7 +47893,6 @@ packages: /path-dirname@1.0.2: resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} - requiresBuild: true dev: true /path-exists@2.1.0: @@ -48253,7 +48251,6 @@ packages: mkdirp: 0.5.6 transitivePeerDependencies: - supports-color - dev: true /posix-character-classes@0.1.1: resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} @@ -48301,12 +48298,12 @@ packages: postcss: 7.0.39 dev: true - /postcss-calc@8.2.4(postcss@8.4.29): + /postcss-calc@8.2.4(postcss@8.4.21): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 @@ -48390,7 +48387,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-colormin@5.3.0(postcss@8.4.29): + /postcss-colormin@5.3.0(postcss@8.4.21): resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -48399,17 +48396,17 @@ packages: browserslist: 4.21.9 caniuse-api: 3.0.0 colord: 2.9.2 - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-convert-values@5.1.2(postcss@8.4.29): + /postcss-convert-values@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 /postcss-custom-media@8.0.2(postcss@7.0.39): @@ -48492,37 +48489,37 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-discard-comments@5.1.2(postcss@8.4.29): + /postcss-discard-comments@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 - /postcss-discard-duplicates@5.1.0(postcss@8.4.29): + /postcss-discard-duplicates@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 - /postcss-discard-empty@5.1.1(postcss@8.4.29): + /postcss-discard-empty@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 - /postcss-discard-overridden@5.1.0(postcss@8.4.29): + /postcss-discard-overridden@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 /postcss-double-position-gradients@3.1.2(postcss@7.0.39): resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} @@ -48682,13 +48679,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-import@14.1.0(postcss@8.4.29): + /postcss-import@14.1.0(postcss@8.4.21): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 @@ -48710,14 +48707,14 @@ packages: postcss: 8.4.21 dev: false - /postcss-js@4.0.0(postcss@8.4.29): + /postcss-js@4.0.0(postcss@8.4.21): resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.29 + postcss: 8.4.21 dev: false /postcss-lab-function@4.2.1(postcss@7.0.39): @@ -48742,7 +48739,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-load-config@3.1.4(postcss@8.4.29): + /postcss-load-config@3.1.4(postcss@8.4.21): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -48755,7 +48752,7 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.29 + postcss: 8.4.21 yaml: 1.10.2 dev: false @@ -48815,6 +48812,25 @@ packages: - browserslist dev: false + /postcss-loader@6.2.1(browserslist@4.21.9)(postcss@8.4.21)(webpack@5.88.2): + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + dependencies: + cosmiconfig: 7.0.1 + klona: 2.0.5 + postcss: 8.4.21 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.21) + postcss-normalize: 10.0.1(browserslist@4.21.9)(postcss@8.4.21) + postcss-preset-env: 7.7.2(postcss@8.4.21) + semver: 7.5.4 + webpack: 5.88.2 + transitivePeerDependencies: + - browserslist + dev: false + /postcss-logical@5.0.4(postcss@7.0.39): resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} engines: {node: ^12 || ^14 || >=16} @@ -48855,17 +48871,17 @@ packages: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} dev: true - /postcss-merge-longhand@5.1.6(postcss@8.4.29): + /postcss-merge-longhand@5.1.6(postcss@8.4.21): resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - stylehacks: 5.1.0(postcss@8.4.29) + stylehacks: 5.1.0(postcss@8.4.21) - /postcss-merge-rules@5.1.2(postcss@8.4.29): + /postcss-merge-rules@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -48873,48 +48889,48 @@ packages: dependencies: browserslist: 4.21.9 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.21) + postcss: 8.4.21 postcss-selector-parser: 6.0.10 - /postcss-minify-font-values@5.1.0(postcss@8.4.29): + /postcss-minify-font-values@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-minify-gradients@5.1.1(postcss@8.4.29): + /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.2 - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.21) + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-minify-params@5.1.3(postcss@8.4.29): + /postcss-minify-params@5.1.3(postcss@8.4.21): resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 + 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.29): + /postcss-minify-selectors@5.2.1(postcss@8.4.21): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 /postcss-modules-extract-imports@2.0.0: @@ -48924,13 +48940,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.29): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.21): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 /postcss-modules-local-by-default@3.0.3: resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} @@ -48942,14 +48958,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default@4.0.0(postcss@8.4.29): + /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.29) - postcss: 8.4.29 + icss-utils: 5.1.0(postcss@8.4.21) + postcss: 8.4.21 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 @@ -48961,13 +48977,13 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-scope@3.0.0(postcss@8.4.29): + /postcss-modules-scope@3.0.0(postcss@8.4.21): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 /postcss-modules-values@3.0.0: @@ -48977,22 +48993,22 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values@4.0.0(postcss@8.4.29): + /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.29) - postcss: 8.4.29 + icss-utils: 5.1.0(postcss@8.4.21) + postcss: 8.4.21 - /postcss-nested@5.0.6(postcss@8.4.29): + /postcss-nested@5.0.6(postcss@8.4.21): resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: false @@ -49018,86 +49034,86 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-normalize-charset@5.1.0(postcss@8.4.29): + /postcss-normalize-charset@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 - /postcss-normalize-display-values@5.1.0(postcss@8.4.29): + /postcss-normalize-display-values@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-positions@5.1.1(postcss@8.4.29): + /postcss-normalize-positions@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.29): + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-string@5.1.0(postcss@8.4.29): + /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: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.29): + /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: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-unicode@5.1.0(postcss@8.4.29): + /postcss-normalize-unicode@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-url@5.1.0(postcss@8.4.29): + /postcss-normalize-url@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-whitespace@5.1.1(postcss@8.4.29): + /postcss-normalize-whitespace@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 /postcss-normalize@10.0.1(browserslist@4.21.9)(postcss@8.4.21): @@ -49131,14 +49147,14 @@ packages: resolution: {integrity: sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==} engines: {node: ^12 || ^14 || >=16} - /postcss-ordered-values@5.1.3(postcss@8.4.29): + /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.29) - postcss: 8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.21) + postcss: 8.4.21 postcss-value-parser: 4.2.0 /postcss-overflow-shorthand@3.0.4(postcss@7.0.39): @@ -49329,7 +49345,7 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-reduce-initial@5.1.0(postcss@8.4.29): + /postcss-reduce-initial@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -49337,15 +49353,15 @@ packages: dependencies: browserslist: 4.21.9 caniuse-api: 3.0.0 - postcss: 8.4.29 + postcss: 8.4.21 - /postcss-reduce-transforms@5.1.0(postcss@8.4.29): + /postcss-reduce-transforms@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 /postcss-replace-overflow-wrap@4.0.0(postcss@7.0.39): @@ -49404,23 +49420,23 @@ packages: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo@5.1.0(postcss@8.4.29): + /postcss-svgo@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-value-parser: 4.2.0 svgo: 2.8.0 - /postcss-unique-selectors@5.1.1(postcss@8.4.29): + /postcss-unique-selectors@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 /postcss-value-parser@4.2.0: @@ -49445,7 +49461,7 @@ packages: resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.6 + nanoid: 3.3.4 picocolors: 1.0.0 source-map-js: 1.0.2 dev: true @@ -49454,7 +49470,7 @@ packages: resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.6 + nanoid: 3.3.4 picocolors: 1.0.0 source-map-js: 1.0.2 @@ -49465,6 +49481,7 @@ packages: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 + dev: false /prando@5.1.2: resolution: {integrity: sha512-PaJxPMw8UugKUeUq27oZ8dqW2CgysXf2MjmlyCcRq+Es8Bcxgac7+nO6/tRGKmLOnUG1GPbAATNAZmzwD1hbIA==} @@ -49537,7 +49554,6 @@ packages: resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} engines: {node: '>=10.13.0'} hasBin: true - dev: true /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} @@ -49677,6 +49693,18 @@ packages: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} + /progress-webpack-plugin@1.0.16(webpack@5.88.2): + resolution: {integrity: sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + dependencies: + chalk: 2.4.2 + figures: 2.0.0 + log-update: 2.3.0 + webpack: 5.88.2 + dev: false + /progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} @@ -50973,6 +51001,8 @@ packages: invariant: 2.2.4 react: 18.0.0 react-native: 0.71.6(@babel/core@7.22.8)(metro-resolver@0.76.0)(metro-transform-worker@0.76.0)(react@18.0.0) + transitivePeerDependencies: + - supports-color /react-native-restart@0.0.24(react-native@0.71.6)(react@18.0.0): resolution: {integrity: sha512-pvJNU3NwQk6bCG2gOWcQpZ4IxhtELB0K9gzmtixfsaTFbW1UXXHkJNjk1kHazcbH5hrD7QbUkR63fsAVh8X4VQ==} @@ -51379,7 +51409,7 @@ packages: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 dev: false /react-redux@7.2.9(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): @@ -51555,7 +51585,7 @@ packages: webpack-manifest-plugin: 4.1.1(webpack@5.76.1) workbox-webpack-plugin: 6.5.4(webpack@5.76.1) optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 transitivePeerDependencies: - '@babel/plugin-syntax-flow' - '@babel/plugin-transform-react-jsx' @@ -51637,7 +51667,7 @@ packages: '@babel/runtime': 7.22.10 '@emotion/cache': 11.7.1 '@emotion/react': 11.9.0(@types/react@18.2.0)(react@18.2.0) - '@floating-ui/dom': 1.5.1 + '@floating-ui/dom': 1.5.2 '@types/react-transition-group': 4.4.4(@types/react@18.2.0) memoize-one: 6.0.0 prop-types: 15.8.1 @@ -51888,7 +51918,6 @@ packages: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - dev: true /read-pkg@1.1.0: resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} @@ -51918,7 +51947,6 @@ packages: normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - dev: true /read-yaml-file@1.1.0: resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} @@ -52048,14 +52076,13 @@ packages: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.2 + tslib: 2.6.1 /rechoir@0.7.1: resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} engines: {node: '>= 0.10'} dependencies: resolve: 1.22.1 - dev: true /recursive-readdir@2.2.2: resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==} @@ -52943,7 +52970,7 @@ packages: engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 dev: false /rollup@3.12.1: @@ -52951,7 +52978,7 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 dev: true /rpc-websockets@7.5.1: @@ -52960,10 +52987,10 @@ packages: '@babel/runtime': 7.22.10 eventemitter3: 4.0.7 uuid: 8.3.2 - ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) + ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.9) optionalDependencies: bufferutil: 4.0.7 - utf-8-validate: 5.0.10 + utf-8-validate: 5.0.9 dev: false /rsvp@4.8.5: @@ -53011,7 +53038,7 @@ packages: /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.6.2 + tslib: 2.6.1 /sade@1.8.1: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} @@ -53680,6 +53707,15 @@ packages: semver: 7.5.4 dev: true + /sirv@2.0.3: + resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.21 + mrmime: 1.0.1 + totalist: 3.0.1 + dev: false + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} @@ -53824,8 +53860,8 @@ packages: uuid: 8.3.2 websocket-driver: 0.7.4 - /sodium-native@3.4.1: - resolution: {integrity: sha512-PaNN/roiFWzVVTL6OqjzYct38NSXewdl2wz8SRB51Br/MLIJPrbM3XexhVWkq7D3UWMysfrhKVf1v1phZq6MeQ==} + /sodium-native@3.3.0: + resolution: {integrity: sha512-rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==} requiresBuild: true dependencies: node-gyp-build: 4.6.0 @@ -53967,7 +54003,6 @@ packages: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} deprecated: Please use @jridgewell/sourcemap-codec instead requiresBuild: true - dev: false /space-separated-tokens@1.1.5: resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} @@ -53993,22 +54028,18 @@ packages: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.11 - dev: true /spdx-exceptions@2.3.0: resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - dev: true /spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.11 - dev: true /spdx-license-ids@3.0.11: resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} - dev: true /spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} @@ -54191,7 +54222,7 @@ packages: sha.js: 2.4.11 tweetnacl: 1.0.3 optionalDependencies: - sodium-native: 3.4.1 + sodium-native: 3.3.0 dev: false /stellar-sdk@10.1.2: @@ -54422,7 +54453,6 @@ packages: dependencies: is-fullwidth-code-point: 2.0.0 strip-ansi: 4.0.0 - dev: true /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} @@ -54548,7 +54578,6 @@ packages: engines: {node: '>=4'} dependencies: ansi-regex: 3.0.1 - dev: true /strip-ansi@5.2.0: resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} @@ -54872,14 +54901,14 @@ packages: '@styled-system/variant': 5.1.5 object-assign: 4.1.1 - /stylehacks@5.1.0(postcss@8.4.29): + /stylehacks@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.9 - postcss: 8.4.29 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 /stylelint-config-recommended@13.0.0(stylelint@14.10.0): @@ -55199,7 +55228,7 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@pkgr/utils': 2.3.1 - tslib: 2.6.2 + tslib: 2.6.1 /tabbable@5.3.2: resolution: {integrity: sha512-6G/8EWRFx8CiSe2++/xHhXkmCRq2rHtDtZbQFHx34cvDfZzIBfvwG9zGUNTWMXWLCYvDj3aQqOzdl3oCxKuBkQ==} @@ -55244,11 +55273,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.29 - postcss-import: 14.1.0(postcss@8.4.29) - postcss-js: 4.0.0(postcss@8.4.29) - postcss-load-config: 3.1.4(postcss@8.4.29) - postcss-nested: 5.0.6(postcss@8.4.29) + postcss: 8.4.21 + postcss-import: 14.1.0(postcss@8.4.21) + postcss-js: 4.0.0(postcss@8.4.21) + postcss-load-config: 3.1.4(postcss@8.4.21) + postcss-nested: 5.0.6(postcss@8.4.21) postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -55500,7 +55529,7 @@ packages: - metro dev: true - /terser-webpack-plugin@5.3.1(esbuild@0.19.3)(webpack@5.72.1): + /terser-webpack-plugin@5.3.1(esbuild@0.19.0)(webpack@5.72.1): resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -55516,13 +55545,13 @@ packages: uglify-js: optional: true dependencies: - esbuild: 0.19.3 + esbuild: 0.19.0 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 source-map: 0.6.1 terser: 5.16.8 - webpack: 5.72.1(esbuild@0.19.3) + webpack: 5.72.1(esbuild@0.19.0) transitivePeerDependencies: - metro dev: true @@ -55628,7 +55657,6 @@ packages: webpack: 5.88.2(metro@0.76.0) transitivePeerDependencies: - metro - dev: true /terser-webpack-plugin@5.3.9(webpack@5.88.2): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} @@ -55654,14 +55682,13 @@ packages: webpack: 5.88.2(webpack-cli@4.10.0) transitivePeerDependencies: - metro - dev: true /terser@4.8.0: resolution: {integrity: sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - acorn: 8.10.0 + acorn: 8.8.2 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 @@ -55673,7 +55700,7 @@ packages: hasBin: true dependencies: '@jridgewell/source-map': 0.3.3 - acorn: 8.10.0 + acorn: 8.8.2 commander: 2.20.3 source-map-support: 0.5.21 @@ -55716,6 +55743,20 @@ packages: dependencies: any-promise: 1.3.0 + /thread-loader@3.0.4(webpack@5.88.2): + resolution: {integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.27.0 || ^5.0.0 + dependencies: + json-parse-better-errors: 1.0.2 + loader-runner: 4.3.0 + loader-utils: 2.0.4 + neo-async: 2.6.2 + schema-utils: 3.3.0 + webpack: 5.88.2 + dev: false + /throat@5.0.0: resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} @@ -55944,6 +55985,11 @@ packages: resolution: {integrity: sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==} dev: false + /totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + dev: false + /touch@3.1.0: resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} hasBin: true @@ -56294,6 +56340,21 @@ packages: yargs-parser: 21.1.1 dev: true + /ts-loader@9.4.4(typescript@5.1.3)(webpack@5.88.2): + resolution: {integrity: sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==} + engines: {node: '>=12.0.0'} + peerDependencies: + typescript: '*' + webpack: ^5.0.0 + dependencies: + chalk: 4.1.2 + enhanced-resolve: 5.15.0 + micromatch: 4.0.5 + semver: 7.5.4 + typescript: 5.1.3 + webpack: 5.88.2 + dev: false + /ts-node@10.7.0(@types/node@18.15.11)(source-map-support@0.5.21)(typescript@5.1.3): resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} hasBin: true @@ -56593,10 +56654,6 @@ packages: /tslib@2.6.1: resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==} - dev: false - - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} /tsscmp@1.0.6: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} @@ -56776,7 +56833,6 @@ packages: /type-fest@0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} engines: {node: '>=10'} - requiresBuild: true /type-fest@0.16.0: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} @@ -56802,7 +56858,6 @@ packages: /type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} - dev: true /type-fest@0.7.1: resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} @@ -56900,6 +56955,10 @@ packages: engines: {node: '>=10'} dev: true + /u2f-api@0.2.7: + resolution: {integrity: sha512-fqLNg8vpvLOD5J/z4B6wpPg4Lvowz1nJ9xdHcCzdUPKcFE/qNCceV2gNZxSJd5vhAZemHr/K/hbzVA0zxB5mkg==} + dev: false + /u3@0.1.1: resolution: {integrity: sha512-+J5D5ir763y+Am/QY6hXNRlwljIeRMZMGs0cT6qqZVVzzT3X3nFPXVyPOFRMOR4kupB0T8JnCdpWdp6Q/iXn3w==} dev: false @@ -57358,23 +57417,23 @@ packages: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} - /update-browserslist-db@1.0.11(browserslist@4.21.10): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} + /update-browserslist-db@1.0.10(browserslist@4.21.3): + resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.10 + browserslist: 4.21.3 escalade: 3.1.1 picocolors: 1.0.0 - /update-browserslist-db@1.0.11(browserslist@4.21.3): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} + /update-browserslist-db@1.0.10(browserslist@4.21.5): + resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.3 + browserslist: 4.21.5 escalade: 3.1.1 picocolors: 1.0.0 @@ -57602,8 +57661,8 @@ packages: engines: {node: '>=0.10.0'} requiresBuild: true - /utf-8-validate@5.0.10: - resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} + /utf-8-validate@5.0.9: + resolution: {integrity: sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q==} engines: {node: '>=6.14.2'} requiresBuild: true dependencies: @@ -57754,7 +57813,6 @@ packages: dependencies: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 - dev: true /validate-npm-package-name@3.0.0: resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} @@ -58349,7 +58407,7 @@ packages: resolve: 1.22.1 rollup: 3.12.1 optionalDependencies: - fsevents: 2.3.3 + fsevents: 2.3.2 dev: true /vlq@0.2.3: @@ -58402,14 +58460,137 @@ packages: resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==} dev: true + /vue-hot-reload-api@2.3.4: + resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==} + dev: false + + /vue-loader@15.10.2(css-loader@6.7.1)(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(webpack@5.88.2): + resolution: {integrity: sha512-ndeSe/8KQc/nlA7TJ+OBhv2qalmj1s+uBs7yHDRFaAXscFTApBzY9F1jES3bautmgWjDlDct0fw8rPuySDLwxw==} + peerDependencies: + '@vue/compiler-sfc': ^3.0.8 + cache-loader: '*' + css-loader: '*' + prettier: '*' + vue-template-compiler: '*' + webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0 + peerDependenciesMeta: + '@vue/compiler-sfc': + optional: true + cache-loader: + optional: true + prettier: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)(react-dom@17.0.2)(react@17.0.2) + css-loader: 6.7.1(webpack@5.88.2) + hash-sum: 1.0.2 + loader-utils: 1.4.0 + prettier: 2.8.3 + vue-hot-reload-api: 2.3.4 + vue-style-loader: 4.1.3 + vue-template-compiler: 2.7.14 + webpack: 5.88.2 + transitivePeerDependencies: + - arc-templates + - atpl + - babel-core + - bracket-template + - coffee-script + - dot + - dust + - dustjs-helpers + - dustjs-linkedin + - eco + - ect + - ejs + - haml-coffee + - hamlet + - hamljs + - handlebars + - hogan.js + - htmling + - jade + - jazz + - jqtpl + - just + - liquid-node + - liquor + - lodash + - marko + - mote + - mustache + - nunjucks + - plates + - pug + - qejs + - ractive + - razor-tmpl + - react + - react-dom + - slm + - squirrelly + - swig + - swig-templates + - teacup + - templayed + - then-jade + - then-pug + - tinyliquid + - toffee + - twig + - twing + - underscore + - vash + - velocityjs + - walrus + - whiskers + dev: false + + /vue-loader@17.2.2(vue@2.7.14)(webpack@5.88.2): + resolution: {integrity: sha512-aqNvKJvnz2A/6VWeJZodAo8XLoAlVwBv+2Z6dama+LHsAF+P/xijQ+OfWrxIs0wcGSJduvdzvTuATzXbNKkpiw==} + peerDependencies: + '@vue/compiler-sfc': '*' + vue: '*' + webpack: ^4.1.0 || ^5.0.0-0 + peerDependenciesMeta: + '@vue/compiler-sfc': + optional: true + vue: + optional: true + dependencies: + chalk: 4.1.2 + hash-sum: 2.0.0 + vue: 2.7.14 + watchpack: 2.4.0 + webpack: 5.88.2 + dev: false + + /vue-style-loader@4.1.3: + resolution: {integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==} + dependencies: + hash-sum: 1.0.2 + loader-utils: 1.4.0 + dev: false + /vue-template-compiler@2.7.14: resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==} requiresBuild: true dependencies: de-indent: 1.0.2 he: 1.2.0 - dev: true - optional: true + + /vue-template-es2015-compiler@1.9.1: + resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==} + dev: false + + /vue@2.7.14: + resolution: {integrity: sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==} + dependencies: + '@vue/compiler-sfc': 2.7.14 + csstype: 3.1.2 + dev: false /w3c-hr-time@1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} @@ -59071,6 +59252,41 @@ packages: engines: {node: '>=12'} dev: true + /webpack-bundle-analyzer@4.9.1: + resolution: {integrity: sha512-jnd6EoYrf9yMxCyYDPj8eutJvtjQNp8PHmni/e/ulydHBWhT5J3menXt3HEkScsu9YqMAcG4CfFjs3rj5pVU1w==} + engines: {node: '>= 10.13.0'} + hasBin: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + acorn: 8.8.2 + acorn-walk: 8.2.0 + commander: 7.2.0 + escape-string-regexp: 4.0.0 + gzip-size: 6.0.0 + is-plain-object: 5.0.0 + lodash.debounce: 4.0.8 + lodash.escape: 4.0.1 + lodash.flatten: 4.4.0 + lodash.invokemap: 4.6.0 + lodash.pullall: 4.2.0 + lodash.uniqby: 4.7.0 + opener: 1.5.2 + picocolors: 1.0.0 + sirv: 2.0.3 + ws: 7.5.7 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + + /webpack-chain@6.5.1: + resolution: {integrity: sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==} + engines: {node: '>=8'} + dependencies: + deepmerge: 1.5.2 + javascript-stringify: 2.1.0 + dev: false + /webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.88.2): resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} engines: {node: '>=10.13.0'} @@ -59105,7 +59321,6 @@ packages: webpack: 5.88.2(webpack-cli@4.10.0) webpack-dev-server: 4.15.1(webpack-cli@4.10.0)(webpack@5.88.2) webpack-merge: 5.9.0 - dev: true /webpack-dev-middleware@3.7.3(webpack@4.46.0): resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} @@ -59161,7 +59376,6 @@ packages: range-parser: 1.2.1 schema-utils: 4.0.0 webpack: 5.88.2(webpack-cli@4.10.0) - dev: true /webpack-dev-server@4.12.0(webpack@5.76.1): resolution: {integrity: sha512-XRN9YRnvOj3TQQ5w/0pR1y1xDcVnbWtNkTri46kuEbaWUPTHsWUvOyAAI7PZHLY+hsFki2kRltJjKMw7e+IiqA==} @@ -59259,7 +59473,6 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true /webpack-dev-server@4.15.1(webpack@5.88.2): resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==} @@ -59309,7 +59522,6 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true /webpack-filter-warnings-plugin@1.2.1(webpack@4.46.0): resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} @@ -59365,7 +59577,6 @@ packages: dependencies: clone-deep: 4.0.1 wildcard: 2.0.1 - dev: true /webpack-sources@1.4.3: resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} @@ -59394,7 +59605,6 @@ packages: /webpack-virtual-modules@0.4.6: resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} - dev: true /webpack@4.42.1: resolution: {integrity: sha512-SGfYMigqEfdGchGhFFJ9KyRpQKnipvEvjc1TwrXEPCM6H5Wywu10ka8o3KGrMzSMxMQKt8aCHUFh5DaQ9UmyRg==} @@ -59476,7 +59686,7 @@ packages: - supports-color dev: true - /webpack@5.72.1(esbuild@0.19.3): + /webpack@5.72.1(esbuild@0.19.0): resolution: {integrity: sha512-dXG5zXCLspQR4krZVR6QgajnZOjW2K/djHvdcRaDQvsjV9z9vaW6+ja5dZOYbqBBjF6kGXka/2ZyxNdc+8Jung==} engines: {node: '>=10.13.0'} hasBin: true @@ -59507,7 +59717,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.1(esbuild@0.19.3)(webpack@5.72.1) + terser-webpack-plugin: 5.3.1(esbuild@0.19.0)(webpack@5.72.1) watchpack: 2.3.1 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -59598,6 +59808,47 @@ packages: - metro - uglify-js + /webpack@5.88.2: + resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.3 + '@types/estree': 1.0.1 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/wasm-edit': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + acorn: 8.8.2 + acorn-import-assertions: 1.9.0(acorn@8.8.2) + browserslist: 4.21.9 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.15.0 + es-module-lexer: 1.3.0 + 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.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.9(webpack@5.88.2) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - metro + - uglify-js + dev: false + /webpack@5.88.2(metro@0.76.0): resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} engines: {node: '>=10.13.0'} @@ -59637,7 +59888,6 @@ packages: - esbuild - metro - uglify-js - dev: true /webpack@5.88.2(webpack-cli@4.10.0): resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} @@ -59679,7 +59929,6 @@ packages: - esbuild - metro - uglify-js - dev: true /webpod@0.0.2: resolution: {integrity: sha512-cSwwQIeg8v4i3p4ajHhwgR7N6VyxAf+KYSSsY6Pd3aETE+xEU4vbitz7qQkB0I321xnhDdgtxuiSfk5r/FVtjg==} @@ -59706,7 +59955,7 @@ packages: debug: 2.6.9 es5-ext: 0.10.61 typedarray-to-buffer: 3.1.5 - utf-8-validate: 5.0.10 + utf-8-validate: 5.0.9 yaeti: 0.0.6 transitivePeerDependencies: - supports-color @@ -59873,7 +60122,6 @@ packages: /wildcard@2.0.1: resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} - dev: true /winston-transport@4.5.0: resolution: {integrity: sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==} @@ -60101,7 +60349,6 @@ packages: dependencies: string-width: 2.1.1 strip-ansi: 4.0.0 - dev: true /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} @@ -60228,19 +60475,6 @@ packages: utf-8-validate: optional: true - /ws@7.5.9: - resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: false - /ws@8.13.0: resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} engines: {node: '>=10.0.0'} @@ -60253,7 +60487,7 @@ packages: utf-8-validate: optional: true - /ws@8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.10): + /ws@8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.9): resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -60266,20 +60500,7 @@ packages: optional: true dependencies: bufferutil: 4.0.7 - utf-8-validate: 5.0.10 - dev: false - - /ws@8.14.1: - resolution: {integrity: sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + utf-8-validate: 5.0.9 dev: false /ws@8.6.0: @@ -60548,7 +60769,6 @@ packages: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 - dev: true /yarn-add-no-save@1.0.3: resolution: {integrity: sha512-ngmmxwYOogvYPjFDXGjoj35r/DteDzfiyoq5BI+kKSCCXW/I2gJA3KAgbm/7yFmcDE9CGSaORpNbYfglGYuxtA==} From 14af3418a34cf73830b2c8b36874b771112fd17e Mon Sep 17 00:00:00 2001 From: Hedi EDELBLOUTE Date: Mon, 18 Sep 2023 12:56:50 +0200 Subject: [PATCH 2/4] update pnpm lock + type --- .../src/renderer/screens/market/MarketRowItem.tsx | 4 ++-- pnpm-lock.yaml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/ledger-live-desktop/src/renderer/screens/market/MarketRowItem.tsx b/apps/ledger-live-desktop/src/renderer/screens/market/MarketRowItem.tsx index e7bcefa9c383..7d2a2ca41b7d 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/market/MarketRowItem.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/market/MarketRowItem.tsx @@ -2,7 +2,7 @@ import React, { useCallback, memo } from "react"; import { useHistory } from "react-router-dom"; import { useDispatch, useSelector } from "react-redux"; import { accountsSelector } from "~/renderer/reducers/accounts"; -import styled, { CSSProperties } from "styled-components"; +import styled from "styled-components"; import { Flex, Text, Icon } from "@ledgerhq/react-ui"; import FormattedVal from "~/renderer/components/FormattedVal"; import { setTrackingSource } from "~/renderer/analytics/TrackPage"; @@ -42,7 +42,7 @@ const EllipsisText = styled(Text)` type Props = { currency?: CurrencyData | null; counterCurrency?: string; - style: CSSProperties; + style: React.CSSProperties; loading: boolean; locale: string; isStarred: boolean; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7247293746cb..2d6b0812e8bf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27540,7 +27540,7 @@ packages: babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.5(react-dom@17.0.2)(react-is@17.0.2)(react@17.0.2) + styled-components: 5.3.5(react-is@18.1.0)(react@18.0.0) /babel-plugin-syntax-jsx@6.18.0: resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} @@ -54830,7 +54830,6 @@ packages: react-is: 18.1.0 shallowequal: 1.1.0 supports-color: 5.5.0 - dev: false /styled-components@6.0.7(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xIwWuiRMYR43mskVsW9MGTRjSo7ol4bcVjT595fGUp3OLBJOlOgaiKaxsHdC4a2HqWKqKnh0CmcRbk5ogyDjTg==} From 218adaf5ca0d57fff2bb9a2526743e7169b15e1e Mon Sep 17 00:00:00 2001 From: haammar-ledger Date: Mon, 18 Sep 2023 13:14:05 +0200 Subject: [PATCH 3/4] Remove unused @cosmjs/launchpad and regen pnpm-lock --- libs/ledger-live-common/package.json | 1 - pnpm-lock.yaml | 4740 ++++++++++++++++++-------- 2 files changed, 3327 insertions(+), 1414 deletions(-) diff --git a/libs/ledger-live-common/package.json b/libs/ledger-live-common/package.json index 2f6dd3238a79..4be070bbaf77 100644 --- a/libs/ledger-live-common/package.json +++ b/libs/ledger-live-common/package.json @@ -117,7 +117,6 @@ "@celo/wallet-base": "^3.0.1", "@celo/wallet-ledger": "^3.0.1", "@cosmjs/crypto": "^0.31.0", - "@cosmjs/launchpad": "^0.26.5", "@cosmjs/stargate": "^0.26.5", "@cosmjs/amino": "^0.31.1", "@crypto-org-chain/chain-jslib": "1.1.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2d6b0812e8bf..292cd6b89706 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1968,9 +1968,6 @@ importers: '@cosmjs/crypto': specifier: ^0.31.0 version: 0.31.0 - '@cosmjs/launchpad': - specifier: ^0.26.5 - version: 0.26.6 '@cosmjs/stargate': specifier: ^0.26.5 version: 0.26.6 @@ -4366,7 +4363,7 @@ importers: version: 11.0.0 lint-staged: specifier: ^14.0.0 - version: 14.0.0 + version: 14.0.1 libs/ui/examples/next.js: dependencies: @@ -4475,7 +4472,7 @@ importers: version: 6.3.0 esbuild: specifier: ^0.19.0 - version: 0.19.0 + version: 0.19.3 glob: specifier: ^7.2.0 version: 7.2.0 @@ -4526,7 +4523,7 @@ importers: version: 6.3.0 esbuild: specifier: ^0.19.0 - version: 0.19.0 + version: 0.19.3 glob: specifier: ^7.2.0 version: 7.2.0 @@ -4626,7 +4623,7 @@ importers: version: 11.0.0 '@emotion/native': specifier: ^11.0.0 - version: 11.0.0(@babel/core@7.22.8)(react-native@0.71.6)(react@18.0.0) + version: 11.11.0(react-native@0.71.6)(react@18.0.0) '@expo/metro-config': specifier: ^0.7.1 version: 0.7.1 @@ -4662,7 +4659,7 @@ importers: version: 6.5.6(@storybook/addon-actions@6.5.16)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) '@storybook/addon-ondevice-backgrounds': specifier: 6.5.6 - version: 6.5.6(@emotion/native@11.0.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) + version: 6.5.6(@emotion/native@11.11.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) '@storybook/addon-ondevice-controls': specifier: 6.5.6 version: 6.5.6(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.4.2)(@storybook/addon-controls@6.5.16)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0) @@ -4966,7 +4963,7 @@ importers: version: 3.0.11 esbuild: specifier: ^0.19.0 - version: 0.19.0 + version: 0.19.3 eslint-plugin-react: specifier: ^7.32.2 version: 7.32.2(eslint@8.41.0) @@ -5005,7 +5002,7 @@ importers: version: 0.2.9 webpack: specifier: '*' - version: 5.72.1(esbuild@0.19.0) + version: 5.72.1(esbuild@0.19.3) dependenciesMeta: '@ledgerhq/crypto-icons-ui': injected: true @@ -5016,7 +5013,7 @@ importers: devDependencies: esbuild: specifier: ^0.19.0 - version: 0.19.0 + version: 0.19.3 tiny-glob: specifier: ^0.2.9 version: 0.2.9 @@ -5234,13 +5231,13 @@ importers: devDependencies: '@craftamap/esbuild-plugin-html': specifier: ^0.6.0 - version: 0.6.1(esbuild@0.19.0) + version: 0.6.1(esbuild@0.19.3) dotenv: specifier: ^16.0.0 version: 16.0.3 esbuild: specifier: ^0.19.0 - version: 0.19.0 + version: 0.19.3 esbuild-plugin-import-glob: specifier: ^0.1.1 version: 0.1.1 @@ -5443,6 +5440,13 @@ packages: '@jridgewell/gen-mapping': 0.1.1 '@jridgewell/trace-mapping': 0.3.18 + /@ampproject/remapping@2.2.1: + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.19 + /@apideck/better-ajv-errors@0.3.6(ajv@8.11.0): resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} engines: {node: '>=10'} @@ -5528,13 +5532,13 @@ packages: resolution: {integrity: sha512-RuhyUY9hCd6KWA2DMF/U6rilYLLRYrDY6e0lq3Of1yzSRFxi4bk9ZMCF0mxf/9ppsB5eudUjrOypYgm6Axt3zw==} dependencies: '@aws-sdk/util-base64': 3.310.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/chunked-blob-reader@3.310.0: resolution: {integrity: sha512-CrJS3exo4mWaLnWxfCH+w88Ou0IcAZSIkk4QbmxiHl/5Dq705OLoxf4385MVyExpqpeVJYOYQ2WaD8i/pQZ2fg==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/client-s3@3.370.0: @@ -5636,7 +5640,7 @@ packages: '@smithy/util-defaults-mode-node': 1.0.2 '@smithy/util-retry': 1.0.4 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: true @@ -5677,7 +5681,7 @@ packages: '@smithy/util-defaults-mode-node': 1.0.2 '@smithy/util-retry': 1.0.4 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: true @@ -5722,7 +5726,7 @@ packages: '@smithy/util-retry': 1.0.4 '@smithy/util-utf8': 1.0.2 fast-xml-parser: 4.2.5 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: true @@ -5734,7 +5738,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/credential-provider-ini@3.370.0: @@ -5750,7 +5754,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: true @@ -5769,7 +5773,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: true @@ -5782,7 +5786,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/credential-provider-sso@3.370.0: @@ -5795,7 +5799,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: true @@ -5807,7 +5811,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/hash-blob-browser@3.370.0: @@ -5816,7 +5820,7 @@ packages: '@aws-sdk/chunked-blob-reader': 3.310.0 '@aws-sdk/chunked-blob-reader-native': 3.310.0 '@aws-sdk/types': 3.370.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/hash-stream-node@3.370.0: @@ -5825,14 +5829,14 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@aws-sdk/util-utf8': 3.310.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/is-array-buffer@3.310.0: resolution: {integrity: sha512-urnbcCR+h9NWUnmOtet/s4ghvzsidFmspfhYaHAmSRdy9yDjdjBJMFjjsn85A1ODUktztm+cVncXjQ38WCMjMQ==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/md5-js@3.370.0: @@ -5840,7 +5844,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@aws-sdk/util-utf8': 3.310.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-bucket-endpoint@3.370.0: @@ -5852,7 +5856,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 '@smithy/util-config-provider': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-expect-continue@3.370.0: @@ -5862,7 +5866,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-flexible-checksums@3.370.0: @@ -5876,7 +5880,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-host-header@3.370.0: @@ -5886,7 +5890,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-location-constraint@3.370.0: @@ -5895,7 +5899,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-logger@3.370.0: @@ -5904,7 +5908,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-recursion-detection@3.370.0: @@ -5914,7 +5918,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-sdk-s3@3.370.0: @@ -5925,7 +5929,7 @@ packages: '@aws-sdk/util-arn-parser': 3.310.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-sdk-sts@3.370.0: @@ -5935,7 +5939,7 @@ packages: '@aws-sdk/middleware-signing': 3.370.0 '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-signing@3.370.0: @@ -5948,7 +5952,7 @@ packages: '@smithy/signature-v4': 1.0.2 '@smithy/types': 1.1.1 '@smithy/util-middleware': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-ssec@3.370.0: @@ -5957,7 +5961,7 @@ packages: dependencies: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/middleware-user-agent@3.370.0: @@ -5968,7 +5972,7 @@ packages: '@aws-sdk/util-endpoints': 3.370.0 '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/signature-v4-multi-region@3.370.0: @@ -5984,7 +5988,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/signature-v4': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/token-providers@3.370.0: @@ -5996,7 +6000,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: true @@ -6006,14 +6010,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-arn-parser@3.310.0: resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-base64@3.310.0: @@ -6021,7 +6025,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/util-buffer-from': 3.310.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-buffer-from@3.310.0: @@ -6029,7 +6033,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/is-array-buffer': 3.310.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-endpoints@3.370.0: @@ -6037,14 +6041,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/types': 3.370.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-locate-window@3.310.0: resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-user-agent-browser@3.370.0: @@ -6053,7 +6057,7 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/types': 1.1.1 bowser: 2.11.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-user-agent-node@3.370.0: @@ -6068,13 +6072,13 @@ packages: '@aws-sdk/types': 3.370.0 '@smithy/node-config-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-utf8-browser@3.259.0: resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/util-utf8@3.310.0: @@ -6082,21 +6086,21 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/util-buffer-from': 3.310.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@aws-sdk/xml-builder@3.310.0: resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@azure/abort-controller@1.1.0: resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@azure/core-asynciterator-polyfill@1.0.2: @@ -6109,7 +6113,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@azure/abort-controller': 1.1.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@azure/core-http@2.2.6: @@ -6126,7 +6130,7 @@ packages: node-fetch: 2.6.9 process: 0.11.10 tough-cookie: 4.0.0 - tslib: 2.6.1 + tslib: 2.6.2 tunnel: 0.0.6 uuid: 8.3.2 xml2js: 0.4.23 @@ -6140,14 +6144,14 @@ packages: dependencies: '@azure/abort-controller': 1.1.0 '@azure/logger': 1.0.3 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@azure/core-paging@1.3.0: resolution: {integrity: sha512-H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@azure/core-tracing@1.0.0-preview.13: @@ -6155,14 +6159,14 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@opentelemetry/api': 1.1.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@azure/logger@1.0.3: resolution: {integrity: sha512-aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@azure/ms-rest-js@2.6.2: @@ -6192,7 +6196,7 @@ packages: '@azure/core-tracing': 1.0.0-preview.13 '@azure/logger': 1.0.3 events: 3.3.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - encoding dev: true @@ -6220,7 +6224,7 @@ packages: /@babel/code-frame@7.10.4: resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==} dependencies: - '@babel/highlight': 7.22.5 + '@babel/highlight': 7.22.13 /@babel/code-frame@7.21.4: resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} @@ -6228,16 +6232,19 @@ packages: dependencies: '@babel/highlight': 7.22.5 + /@babel/code-frame@7.22.13: + resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.22.13 + chalk: 2.4.2 + /@babel/code-frame@7.22.5: resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.22.5 - /@babel/compat-data@7.22.5: - resolution: {integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==} - engines: {node: '>=6.9.0'} - /@babel/compat-data@7.22.9: resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} engines: {node: '>=6.9.0'} @@ -6248,12 +6255,12 @@ packages: dependencies: '@babel/code-frame': 7.22.5 '@babel/generator': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.12.3) + '@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.3) '@babel/helpers': 7.22.6 '@babel/parser': 7.22.7 '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -6270,15 +6277,15 @@ packages: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.12.9) - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 - convert-source-map: 1.8.0 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.22.15 + '@babel/helper-module-transforms': 7.22.17(@babel/core@7.12.9) + '@babel/helpers': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -6290,25 +6297,25 @@ packages: - supports-color dev: true - /@babel/core@7.21.0: - resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==} + /@babel/core@7.22.17: + resolution: {integrity: sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==} engines: {node: '>=6.9.0'} dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.21.0) - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - convert-source-map: 1.8.0 + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.22.15 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) + '@babel/helpers': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -6373,7 +6380,7 @@ packages: /@babel/generator@7.12.1: resolution: {integrity: sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 jsesc: 2.5.2 source-map: 0.5.7 dev: true @@ -6391,18 +6398,18 @@ packages: resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.18 jsesc: 2.5.2 - /@babel/generator@7.22.5: - resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==} + /@babel/generator@7.22.15: + resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 - '@jridgewell/gen-mapping': 0.3.2 - '@jridgewell/trace-mapping': 0.3.18 + '@babel/types': 7.22.17 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 /@babel/generator@7.22.9: @@ -6418,7 +6425,7 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} @@ -6431,28 +6438,38 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 - /@babel/helper-compilation-targets@7.22.5(@babel/core@7.21.0): - resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==} + /@babel/helper-compilation-targets@7.22.15: + resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/helper-validator-option': 7.22.15 + browserslist: 4.21.10 + lru-cache: 5.1.1 + semver: 6.3.1 + + /@babel/helper-compilation-targets@7.22.9: + resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.21.0 + '@babel/compat-data': 7.22.9 '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.5 + browserslist: 4.21.9 lru-cache: 5.1.1 - semver: 6.3.0 + semver: 6.3.1 - /@babel/helper-compilation-targets@7.22.9: + /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.17): resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.17 '@babel/helper-validator-option': 7.22.5 browserslist: 4.21.9 lru-cache: 5.1.1 @@ -6502,6 +6519,56 @@ packages: - supports-color dev: true + /@babel/helper-create-class-features-plugin@7.22.15: + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.17): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.8): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.8) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} @@ -6538,6 +6605,25 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.22.17): + resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.22.8): resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} engines: {node: '>=6.9.0'} @@ -6575,6 +6661,7 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-create-regexp-features-plugin@7.17.0(@babel/core@7.22.8): resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} @@ -6596,6 +6683,16 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 + /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.17): + resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.8): resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} engines: {node: '>=6.9.0'} @@ -6615,17 +6712,18 @@ packages: '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 + dev: false - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.22.9): + /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.22.17): resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.22.17 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/traverse': 7.22.8 + '@babel/traverse': 7.22.17 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -6634,49 +6732,13 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.3.1: - resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/helper-compilation-targets': 7.22.9 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/traverse': 7.22.8 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - /@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.22.8): - resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.22.8 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.8) - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/traverse': 7.22.8 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - /@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.22.9): - resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} + /@babel/helper-define-polyfill-provider@0.3.3: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/traverse': 7.22.8 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -6684,12 +6746,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-define-polyfill-provider@0.3.3: + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.17): resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/helper-compilation-targets': 7.22.9 + '@babel/core': 7.22.17 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -6704,7 +6767,7 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.8) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -6719,7 +6782,7 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -6727,6 +6790,7 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-environment-visitor@7.22.5: resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} @@ -6736,26 +6800,26 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-function-name@7.22.5: resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/types': 7.22.17 /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-member-expression-to-functions@7.17.7: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 dev: true /@babel/helper-member-expression-to-functions@7.22.15: @@ -6763,20 +6827,18 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.17 - dev: false /@babel/helper-member-expression-to-functions@7.22.5: resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-module-imports@7.22.15: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.17 - dev: false /@babel/helper-module-imports@7.22.5: resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} @@ -6784,74 +6846,98 @@ packages: dependencies: '@babel/types': 7.22.5 - /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.9): + /@babel/helper-module-transforms@7.22.15(@babel/core@7.12.3): + resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.12.3 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.15 + dev: true + + /@babel/helper-module-transforms@7.22.17: resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.15 - dev: false - /@babel/helper-module-transforms@7.22.5: - resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==} + /@babel/helper-module-transforms@7.22.17(@babel/core@7.12.9): + resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: + '@babel/core': 7.12.9 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.15 + dev: true - /@babel/helper-module-transforms@7.22.9: - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17): + resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: + '@babel/core': 7.22.17 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.12.3): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.8): + resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.12.3 + '@babel/core': 7.22.8 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 - dev: true + '@babel/helper-validator-identifier': 7.22.15 + + /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.9): + resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.15 + dev: false - /@babel/helper-module-transforms@7.22.9(@babel/core@7.12.9): + /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.17): resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.22.17 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-module-imports': 7.22.5 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.5 - dev: true /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.8): resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} @@ -6883,23 +6969,19 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 dev: true /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-plugin-utils@7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true - /@babel/helper-plugin-utils@7.16.7: - resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} - engines: {node: '>=6.9.0'} - /@babel/helper-plugin-utils@7.18.9: resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} engines: {node: '>=6.9.0'} @@ -6921,7 +7003,21 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 + transitivePeerDependencies: + - supports-color + + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.17): + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-wrap-function': 7.20.5 + '@babel/types': 7.22.17 transitivePeerDependencies: - supports-color @@ -6935,7 +7031,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 transitivePeerDependencies: - supports-color @@ -6949,19 +7045,20 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-replace-supers@7.16.7: resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 transitivePeerDependencies: - supports-color dev: true @@ -6973,12 +7070,44 @@ packages: '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-member-expression-to-functions': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 transitivePeerDependencies: - supports-color + /@babel/helper-replace-supers@7.22.9: + resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + + /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.17): + resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + + /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.8): + resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9): resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} engines: {node: '>=6.9.0'} @@ -6995,7 +7124,7 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-skip-transparent-expression-wrappers@7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} @@ -7007,19 +7136,13 @@ packages: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 - - /@babel/helper-split-export-declaration@7.22.5: - resolution: {integrity: sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} @@ -7033,14 +7156,9 @@ packages: resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.21.0: - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} - engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.22.15: resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} - dev: false /@babel/helper-validator-option@7.22.5: resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} @@ -7051,19 +7169,19 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 transitivePeerDependencies: - supports-color - /@babel/helpers@7.22.5: - resolution: {integrity: sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==} + /@babel/helpers@7.22.15: + resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 transitivePeerDependencies: - supports-color @@ -7077,11 +7195,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/highlight@7.22.13: + resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.22.15 + chalk: 2.4.2 + js-tokens: 4.0.0 + /@babel/highlight@7.22.5: resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 chalk: 2.4.2 js-tokens: 4.0.0 @@ -7090,7 +7216,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 dev: true /@babel/parser@7.18.11: @@ -7098,7 +7224,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 dev: true /@babel/parser@7.21.4: @@ -7106,14 +7232,14 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 - /@babel/parser@7.22.5: - resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==} + /@babel/parser@7.22.16: + resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@babel/parser@7.22.7: resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==} @@ -7122,6 +7248,15 @@ packages: dependencies: '@babel/types': 7.22.5 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -7139,6 +7274,18 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} @@ -7161,6 +7308,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) + dev: false /@babel/plugin-external-helpers@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-ngnNEWxmykPk82mH4ajZT0qTztr3Je6hrMuKAslZVM8G1YZTENJSYwrIGtt6KOtznug3exmAtF4so/nPqJuA4A==} @@ -7175,6 +7323,7 @@ packages: /@babel/plugin-proposal-async-generator-functions@7.20.7: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7185,9 +7334,25 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17) + transitivePeerDependencies: + - supports-color + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7202,6 +7367,7 @@ packages: /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.9): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7212,6 +7378,7 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} @@ -7238,6 +7405,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + transitivePeerDependencies: + - supports-color + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -7263,10 +7443,26 @@ packages: '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color + dev: false + + /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.17): + resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.17) + transitivePeerDependencies: + - supports-color /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -7280,6 +7476,7 @@ packages: /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.9): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -7289,6 +7486,22 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9) transitivePeerDependencies: - supports-color + dev: false + + /@babel/plugin-proposal-decorators@7.17.9(@babel/core@7.22.17): + resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17) + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/plugin-syntax-decorators': 7.17.0(@babel/core@7.22.17) + charcodes: 0.2.0 + dev: true /@babel/plugin-proposal-decorators@7.17.9(@babel/core@7.22.8): resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==} @@ -7297,14 +7510,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.8) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.8) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.8) '@babel/helper-split-export-declaration': 7.22.6 '@babel/plugin-syntax-decorators': 7.17.0(@babel/core@7.22.8) charcodes: 0.2.0 - transitivePeerDependencies: - - supports-color /@babel/plugin-proposal-decorators@7.17.9(@babel/core@7.22.9): resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==} @@ -7313,18 +7524,29 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) '@babel/helper-split-export-declaration': 7.22.6 '@babel/plugin-syntax-decorators': 7.17.0(@babel/core@7.22.9) charcodes: 0.2.0 - transitivePeerDependencies: - - supports-color + dev: false + + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7335,12 +7557,14 @@ packages: /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) + dev: false /@babel/plugin-proposal-export-default-from@7.16.7: resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} @@ -7348,28 +7572,28 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-default-from': 7.16.7 - /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.22.8): + /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.22.17): resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.8) + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.17) - /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.22.9): + /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.9) + '@babel/core': 7.22.8 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.8) /@babel/plugin-proposal-export-namespace-from@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} @@ -7382,6 +7606,16 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.8) dev: true + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.17): + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.17) + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -7401,10 +7635,23 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9) + dev: false + + /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17) /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7415,16 +7662,30 @@ packages: /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) + dev: false + + /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17) /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7435,12 +7696,14 @@ packages: /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.9): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) + dev: false /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} @@ -7451,6 +7714,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -7470,10 +7743,23 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + dev: false + + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17) /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7484,12 +7770,14 @@ packages: /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) + dev: false /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} @@ -7511,7 +7799,7 @@ packages: dependencies: '@babel/compat-data': 7.22.9 '@babel/core': 7.22.8 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.8) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) @@ -7530,6 +7818,20 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3 '@babel/plugin-transform-parameters': 7.21.3 + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.17 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -7557,19 +7859,33 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) + dev: false /@babel/plugin-proposal-optional-catch-binding@7.18.6: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3 + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17) + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7580,12 +7896,14 @@ packages: /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) + dev: false /@babel/plugin-proposal-optional-chaining@7.21.0: resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} @@ -7597,6 +7915,17 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-syntax-optional-chaining': 7.8.3 + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.17): + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@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.22.17) + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} @@ -7618,10 +7947,25 @@ packages: '@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.22.9) + dev: false + + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + transitivePeerDependencies: + - supports-color /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7634,6 +7978,7 @@ packages: /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7642,15 +7987,32 @@ packages: '@babel/helper-plugin-utils': 7.22.5 transitivePeerDependencies: - supports-color + dev: false + + /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.17): + resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17) + transitivePeerDependencies: + - supports-color /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.8) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.8) @@ -7660,20 +8022,34 @@ packages: /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.9): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) transitivePeerDependencies: - supports-color + dev: false + + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -7684,12 +8060,14 @@ packages: /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-async-generators@7.8.4: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -7698,6 +8076,14 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.17): + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.8): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -7714,6 +8100,14 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: @@ -7738,6 +8132,14 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.17): + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.8): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -7754,6 +8156,15 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.17): + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.8): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -7771,6 +8182,17 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-decorators@7.17.0(@babel/core@7.22.17): + resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-syntax-decorators@7.17.0(@babel/core@7.22.8): resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==} @@ -7789,13 +8211,22 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-dynamic-import@7.8.3: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -7803,7 +8234,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -7811,7 +8242,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-export-default-from@7.16.7: resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} @@ -7821,22 +8253,30 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.22.8): + /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.22.17): resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.22.9): + /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.8 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.8): @@ -7854,6 +8294,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-flow@7.21.4: resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==} @@ -7863,6 +8304,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.22.17): + 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.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-flow@7.21.4(@babel/core@7.22.8): resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==} engines: {node: '>=6.9.0'} @@ -7880,6 +8330,16 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.17): + resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.8): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} @@ -7898,6 +8358,15 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.17): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.8): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -7916,6 +8385,14 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -7948,6 +8425,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} @@ -7966,6 +8444,33 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-jsx@7.22.5: + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.17): + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.8): + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} @@ -7977,6 +8482,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.17): + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.8): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -8000,6 +8513,14 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -8016,6 +8537,14 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.17): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.8): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -8048,6 +8577,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -8071,6 +8608,14 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -8094,6 +8639,14 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.17): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.8): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -8110,6 +8663,15 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.17): + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.8): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -8127,6 +8689,16 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.17): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.8): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} @@ -8146,30 +8718,30 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.17.10: - resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} + /@babel/plugin-syntax-typescript@7.22.5: + resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.17.10(@babel/core@7.22.8): - resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.17): + resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.17.10(@babel/core@7.22.9): - resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.8): + resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9): @@ -8180,7 +8752,6 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 - dev: false /@babel/plugin-transform-arrow-functions@7.20.7: resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} @@ -8190,6 +8761,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} @@ -8207,6 +8787,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.20.2 + dev: false /@babel/plugin-transform-async-to-generator@7.20.7: resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} @@ -8220,6 +8801,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.17) + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} @@ -8245,6 +8839,7 @@ packages: '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.9) transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-block-scoped-functions@7.18.6: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} @@ -8254,6 +8849,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -8271,6 +8875,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-block-scoping@7.21.0: resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} @@ -8280,6 +8885,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.17): + resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} @@ -8297,6 +8911,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-classes@7.21.0: resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} @@ -8304,7 +8919,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.9 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 @@ -8316,6 +8931,25 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.17): + resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} @@ -8323,7 +8957,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.8) '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 @@ -8342,7 +8976,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 @@ -8353,6 +8987,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-computed-properties@7.20.7: resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} @@ -8363,6 +8998,16 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.5 + /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.5 + /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} @@ -8382,6 +9027,7 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.5 + dev: false /@babel/plugin-transform-destructuring@7.21.3: resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} @@ -8391,6 +9037,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.17): + resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.8): resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} @@ -8408,6 +9063,17 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} @@ -8428,6 +9094,16 @@ packages: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.17): + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} @@ -8446,6 +9122,17 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} @@ -8466,6 +9153,7 @@ packages: '@babel/core': 7.22.9 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-flow-strip-types@7.16.7: resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} @@ -8476,6 +9164,16 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-flow': 7.21.4 + /@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.22.17): + resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.17) + /@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} engines: {node: '>=6.9.0'} @@ -8495,6 +9193,7 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.9) + dev: false /@babel/plugin-transform-for-of@7.21.0: resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} @@ -8504,6 +9203,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.17): + resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.8): resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} engines: {node: '>=6.9.0'} @@ -8521,6 +9229,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-function-name@7.18.9: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} @@ -8532,6 +9241,17 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.17): + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) + '@babel/helper-function-name': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -8553,6 +9273,7 @@ packages: '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-literals@7.18.9: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} @@ -8562,6 +9283,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.17): + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -8579,6 +9309,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-member-expression-literals@7.18.6: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} @@ -8588,6 +9319,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -8605,6 +9345,17 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.17): + resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.8): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} @@ -8625,14 +9376,16 @@ packages: '@babel/core': 7.22.9 '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + dev: false - /@babel/plugin-transform-modules-commonjs@7.21.2: + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.17): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-module-transforms': 7.22.9 + '@babel/core': 7.22.17 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.17) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 @@ -8657,6 +9410,39 @@ packages: '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 + dev: false + + /@babel/plugin-transform-modules-commonjs@7.22.15: + resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-module-transforms': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + + /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.17): + resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + + /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.8): + resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.8) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} @@ -8670,6 +9456,18 @@ packages: '@babel/helper-simple-access': 7.22.5 dev: false + /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.17): + resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 + /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.8): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} @@ -8693,6 +9491,17 @@ packages: '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.5 + dev: false + + /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} @@ -8713,6 +9522,7 @@ packages: '@babel/core': 7.22.9 '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-named-capturing-groups-regex@7.17.10(@babel/core@7.22.8): resolution: {integrity: sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==} @@ -8733,6 +9543,16 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.17): + resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.8): resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} @@ -8752,6 +9572,16 @@ packages: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} @@ -8770,25 +9600,26 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false - /@babel/plugin-transform-object-assign@7.16.7(@babel/core@7.22.8): + /@babel/plugin-transform-object-assign@7.16.7(@babel/core@7.22.17): resolution: {integrity: sha512-R8mawvm3x0COTJtveuoqZIjNypn2FjfvXZr4pSQ8VhEFBuQGBz4XhHasZtHXjgXU4XptZ4HtGof3NoYc93ZH9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-object-assign@7.16.7(@babel/core@7.22.9): + /@babel/plugin-transform-object-assign@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-R8mawvm3x0COTJtveuoqZIjNypn2FjfvXZr4pSQ8VhEFBuQGBz4XhHasZtHXjgXU4XptZ4HtGof3NoYc93ZH9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-object-super@7.18.6: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} @@ -8801,6 +9632,18 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.5 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} @@ -8824,6 +9667,7 @@ packages: '@babel/helper-replace-supers': 7.22.5 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-parameters@7.21.3: resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} @@ -8843,6 +9687,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.17): + resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.8): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -8860,6 +9713,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-property-literals@7.18.6: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} @@ -8869,6 +9723,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -8886,6 +9749,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-react-constant-elements@7.17.6(@babel/core@7.22.9): resolution: {integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==} @@ -8897,30 +9761,49 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-react-display-name@7.16.7: + /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.8): + /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.9): resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: true - /@babel/plugin-transform-react-display-name@7.16.7(@babel/core@7.22.9): - resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} + /@babel/plugin-transform-react-display-name@7.22.5: + resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.17): + resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.8): + resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.9): @@ -8951,6 +9834,17 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) + dev: true + + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.17): + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + dev: true /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} @@ -8970,22 +9864,22 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.17): resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.9): + /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-react-jsx-source@7.19.6: @@ -8996,35 +9890,23 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.8): + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.17): resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.9): + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.8): resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-transform-react-jsx@7.18.10: - resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.18.6 - '@babel/types': 7.22.5 /@babel/plugin-transform-react-jsx@7.18.10(@babel/core@7.22.8): resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} @@ -9051,6 +9933,45 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.9) '@babel/types': 7.22.5 + dev: true + + /@babel/plugin-transform-react-jsx@7.22.15: + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5 + '@babel/types': 7.22.17 + + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) + '@babel/types': 7.22.17 + + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.8): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.8) + '@babel/types': 7.22.17 /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} @@ -9086,6 +10007,18 @@ packages: '@babel/core': 7.22.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.17): + resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.9): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} @@ -9098,6 +10031,16 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false + /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.17): + resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + regenerator-transform: 0.15.1 + /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.8): resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} @@ -9117,6 +10060,16 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 + dev: false + + /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} @@ -9135,6 +10088,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-runtime@7.17.10: resolution: {integrity: sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==} @@ -9142,7 +10096,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3 babel-plugin-polyfill-corejs3: 0.5.2 @@ -9151,6 +10105,22 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-runtime@7.17.10(@babel/core@7.22.17): + resolution: {integrity: sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.17) + babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.22.17) + babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.22.17) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-runtime@7.17.10(@babel/core@7.22.8): resolution: {integrity: sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==} engines: {node: '>=6.9.0'} @@ -9158,7 +10128,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.8) babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.22.8) @@ -9174,7 +10144,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.9) babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.22.9) @@ -9182,6 +10152,7 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-shorthand-properties@7.18.6: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} @@ -9191,6 +10162,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -9208,6 +10188,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.20.2 + dev: false /@babel/plugin-transform-spread@7.20.7: resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} @@ -9218,6 +10199,16 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.17): + resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.8): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -9237,6 +10228,7 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: false /@babel/plugin-transform-sticky-regex@7.18.6: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} @@ -9246,6 +10238,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -9263,6 +10264,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-template-literals@7.18.9: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} @@ -9272,6 +10274,15 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.17): + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -9290,6 +10301,15 @@ packages: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.17): + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.8): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -9307,44 +10327,53 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false - /@babel/plugin-transform-typescript@7.16.8: + /@babel/plugin-transform-typescript@7.16.8(@babel/core@7.22.8): resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-create-class-features-plugin': 7.22.5 + '@babel/core': 7.22.8 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.8) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.17.10 - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.8) - /@babel/plugin-transform-typescript@7.16.8(@babel/core@7.22.8): - resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} + /@babel/plugin-transform-typescript@7.22.15: + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.8 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.8) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-typescript': 7.22.5 - /@babel/plugin-transform-typescript@7.16.8(@babel/core@7.22.9): - resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.17): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.17) + + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.8): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.8 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.8) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.8) /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} @@ -9359,6 +10388,15 @@ packages: '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) dev: false + /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.17): + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.8): resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} @@ -9376,6 +10414,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-unicode-regex@7.18.6: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} @@ -9386,6 +10425,16 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.17): + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.8): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -9405,6 +10454,7 @@ packages: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.9) '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/preset-env@7.17.10(@babel/core@7.22.8): resolution: {integrity: sha512-YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g==} @@ -9490,6 +10540,91 @@ packages: transitivePeerDependencies: - supports-color + /@babel/preset-env@7.21.4(@babel/core@7.22.17): + resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.17 + '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.17) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.17) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.17) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.17) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.17) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.17) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.17) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.17) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.17) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.17) + '@babel/preset-modules': 0.1.5(@babel/core@7.22.17) + '@babel/types': 7.22.5 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.17) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.17) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.17) + core-js-compat: 3.30.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + /@babel/preset-env@7.21.4(@babel/core@7.22.8): resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==} engines: {node: '>=6.9.0'} @@ -9659,6 +10794,18 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: false + + /@babel/preset-flow@7.16.7(@babel/core@7.22.17): + resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.17) /@babel/preset-flow@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} @@ -9668,20 +10815,21 @@ packages: dependencies: '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 + '@babel/helper-validator-option': 7.22.15 '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.8) dev: true - /@babel/preset-flow@7.16.7(@babel/core@7.22.9): - resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} - engines: {node: '>=6.9.0'} + /@babel/preset-modules@0.1.5(@babel/core@7.22.17): + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.17) + '@babel/types': 7.22.5 + esutils: 2.0.3 /@babel/preset-modules@0.1.5(@babel/core@7.22.8): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -9706,6 +10854,7 @@ packages: '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.9) '@babel/types': 7.22.5 esutils: 2.0.3 + dev: false /@babel/preset-react@7.16.7(@babel/core@7.22.8): resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==} @@ -9735,6 +10884,22 @@ packages: '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx-development': 7.16.7(@babel/core@7.22.9) '@babel/plugin-transform-react-pure-annotations': 7.16.7(@babel/core@7.22.9) + dev: true + + /@babel/preset-react@7.22.15(@babel/core@7.22.17): + resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.17) + dev: true /@babel/preset-react@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} @@ -9759,23 +10924,21 @@ packages: dependencies: '@babel/core': 7.22.8 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) - /@babel/preset-typescript@7.16.7(@babel/core@7.22.9): - resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} + /@babel/preset-typescript@7.22.15(@babel/core@7.22.17): + resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.9) - transitivePeerDependencies: - - supports-color + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.17) /@babel/preset-typescript@7.22.15(@babel/core@7.22.9): resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==} @@ -9791,13 +10954,13 @@ packages: '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.9) dev: false - /@babel/register@7.17.7(@babel/core@7.22.9): + /@babel/register@7.17.7(@babel/core@7.22.17): resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -9837,7 +11000,15 @@ packages: dependencies: '@babel/code-frame': 7.22.5 '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 + + /@babel/template@7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/parser': 7.22.16 + '@babel/types': 7.22.17 /@babel/template@7.22.5: resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} @@ -9851,14 +11022,14 @@ packages: resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.22.15 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/parser': 7.22.16 + '@babel/types': 7.22.17 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -9876,7 +11047,24 @@ packages: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/traverse@7.22.17: + resolution: {integrity: sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.22.15 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.22.16 + '@babel/types': 7.22.17 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -9893,11 +11081,12 @@ packages: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/traverse@7.22.8: resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==} @@ -9938,7 +11127,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 to-fast-properties: 2.0.0 dev: true @@ -9947,7 +11136,15 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 + to-fast-properties: 2.0.0 + + /@babel/types@7.22.15: + resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 to-fast-properties: 2.0.0 /@babel/types@7.22.17: @@ -10688,7 +11885,7 @@ packages: '@noble/hashes': 1.3.1 bn.js: 5.2.1 elliptic: 6.5.4 - libsodium-wrappers-sumo: 0.7.11 + libsodium-wrappers-sumo: 0.7.13 dev: false /@cosmjs/crypto@0.31.1: @@ -10700,7 +11897,7 @@ packages: '@noble/hashes': 1.3.1 bn.js: 5.2.1 elliptic: 6.5.4 - libsodium-wrappers-sumo: 0.7.11 + libsodium-wrappers-sumo: 0.7.13 dev: false /@cosmjs/encoding@0.23.1: @@ -10768,18 +11965,6 @@ packages: fast-deep-equal: 3.1.3 dev: false - /@cosmjs/launchpad@0.26.6: - resolution: {integrity: sha512-3wQLITadLaZ4VmDJJn+QofI6np7kNSfuYEcIKgrnF45vSERtYn/Zc+TiYIlhl/oj/kEp2iX1teJwjkFMAs/KOA==} - dependencies: - '@cosmjs/amino': 0.26.6 - '@cosmjs/crypto': 0.26.6 - '@cosmjs/encoding': 0.26.6 - '@cosmjs/math': 0.26.6 - '@cosmjs/utils': 0.26.6 - axios: 0.21.4 - fast-deep-equal: 3.1.3 - dev: false - /@cosmjs/math@0.23.1: resolution: {integrity: sha512-xjGGogFZXLdmRumE1Wr+GlPfKznIl5Qa6K6QyZr4IjBhfB6/ZzLUihliDJp2d8zbjBJgQt9RUwP/PaFQ/yGQNg==} dependencies: @@ -10851,8 +12036,8 @@ packages: resolution: {integrity: sha512-hu+pW3Fy0IuhstXgxnZ2Iq0RUnGYoTWfqrxbTsgXBJge4MpEQs2YwGXgJZPMJXedBQivG0tU3r/Wvam0EWuRkQ==} dependencies: '@cosmjs/stream': 0.25.6 - isomorphic-ws: 4.0.1(ws@7.5.7) - ws: 7.5.7 + isomorphic-ws: 4.0.1(ws@7.5.9) + ws: 7.5.9 xstream: 11.14.0 transitivePeerDependencies: - bufferutil @@ -10863,8 +12048,8 @@ packages: resolution: {integrity: sha512-JLizR/QlRJ+nBE/A4QfhinTLycI7a20w0hgHhkq9UUvRlFEh+j6bBK7TilDYZpX0Yjb+wJhCt7wHTiJo+uLjSA==} dependencies: '@cosmjs/stream': 0.26.6 - isomorphic-ws: 4.0.1(ws@7.5.7) - ws: 7.5.7 + isomorphic-ws: 4.0.1(ws@7.5.9) + ws: 7.5.9 xstream: 11.14.0 transitivePeerDependencies: - bufferutil @@ -10977,13 +12162,13 @@ packages: resolution: {integrity: sha512-n4Se1wu4GnKwztQHNFfJvUeWcpvx3o8cWhSbNs9JQShEuB3nv3R5lqFBtDCgHZF/emFQAP+ZjF8bTfCs9UBGhA==} dev: false - /@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.0): + /@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.3): resolution: {integrity: sha512-FNOxFrdAozLgNbV1HZH2gVjLDax4hFxFfVH/qntvkMEkcBO2ZCIBjqlSmmmuLLi3/QyCJAaFnduBJ74jIw8zUg==} engines: {node: '>13'} peerDependencies: esbuild: '>=0.15.10' dependencies: - esbuild: 0.19.0 + esbuild: 0.19.3 jsdom: 17.0.0 lodash.template: 4.5.0 transitivePeerDependencies: @@ -11104,6 +12289,17 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /@csstools/postcss-cascade-layers@1.0.5(postcss@8.4.29): + resolution: {integrity: sha512-Id/9wBT7FkgFzdEpiEWrsVd4ltDxN0rI0QS0SChbeQiSuux3z21SJCRLu6h2cvCEUmaRi+VD0mHFj+GJD4GFnw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.0.2(postcss-selector-parser@6.0.10)(postcss@8.4.29) + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /@csstools/postcss-color-function@1.1.1(postcss@7.0.39): resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} engines: {node: ^12 || ^14 || >=16} @@ -11126,6 +12322,17 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-color-function@1.1.1(postcss@8.4.29): + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-font-format-keywords@1.0.1(postcss@7.0.39): resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} engines: {node: ^12 || ^14 || >=16} @@ -11146,6 +12353,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.29): + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-hwb-function@1.0.2(postcss@7.0.39): resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} engines: {node: ^12 || ^14 || >=16} @@ -11166,6 +12383,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.29): + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-ic-unit@1.0.1(postcss@7.0.39): resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} engines: {node: ^12 || ^14 || >=16} @@ -11188,6 +12415,17 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.29): + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-is-pseudo-class@2.0.7(postcss@7.0.39): resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} engines: {node: ^12 || ^14 || >=16} @@ -11210,6 +12448,17 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.29): + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.0.2(postcss-selector-parser@6.0.10)(postcss@8.4.29) + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /@csstools/postcss-normalize-display-values@1.0.1(postcss@7.0.39): resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} engines: {node: ^12 || ^14 || >=16} @@ -11230,6 +12479,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.29): + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-oklab-function@1.1.1(postcss@7.0.39): resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} engines: {node: ^12 || ^14 || >=16} @@ -11252,6 +12511,17 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.29): + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@7.0.39): resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} engines: {node: ^12 || ^14 || >=16} @@ -11272,6 +12542,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.29): + resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-stepped-value-functions@1.0.1(postcss@7.0.39): resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} engines: {node: ^12 || ^14 || >=16} @@ -11292,6 +12572,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.29): + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-trigonometric-functions@1.0.2(postcss@7.0.39): resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} engines: {node: ^14 || >=16} @@ -11312,6 +12602,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.29): + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} + engines: {node: ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /@csstools/postcss-unset-value@1.0.2(postcss@7.0.39): resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} engines: {node: ^12 || ^14 || >=16} @@ -11330,6 +12630,15 @@ packages: postcss: 8.4.21 dev: false + /@csstools/postcss-unset-value@1.0.2(postcss@8.4.29): + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + dev: false + /@csstools/selector-specificity@2.0.2(postcss-selector-parser@6.0.10)(postcss@7.0.39): resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} @@ -11363,6 +12672,17 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /@csstools/selector-specificity@2.0.2(postcss-selector-parser@6.0.10)(postcss@8.4.29): + resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + postcss-selector-parser: ^6.0.10 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /@dabh/diagnostics@2.0.3: resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} dependencies: @@ -11525,14 +12845,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/plugin-syntax-jsx': 7.18.6 '@babel/runtime': 7.22.10 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.5 '@emotion/serialize': 1.0.3 babel-plugin-macros: 2.8.0 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 find-root: 1.1.0 source-map: 0.5.7 @@ -11545,14 +12865,14 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.8) '@babel/runtime': 7.22.10 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.5 '@emotion/serialize': 1.0.3 babel-plugin-macros: 2.8.0 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 find-root: 1.1.0 source-map: 0.5.7 @@ -11582,7 +12902,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.20.13 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -11631,16 +12951,11 @@ packages: resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} dev: false - /@emotion/native@11.0.0(@babel/core@7.22.8)(react-native@0.71.6)(react@18.0.0): - resolution: {integrity: sha512-IByi+OfagLtcQsXZMkS06ztcNMZePg6dqwzM4FIkXjN4PhoeJ/jTDRICT3pTIk3ChuurX2oF8fmE+0bfvYi/SA==} + /@emotion/native@11.11.0(react-native@0.71.6)(react@18.0.0): + resolution: {integrity: sha512-t1b5bLv+o5OUNLqXlnw+LJYU10OpmYkLC/1W873Y1ohG+vObx5TT3o3Eh1okXb2KCuZTTBPgsEnU/Sl7NNkJ9Q==} peerDependencies: - '@babel/core': ^7.0.0 react-native: '>=0.14.0 <1' - peerDependenciesMeta: - '@babel/core': - optional: true dependencies: - '@babel/core': 7.22.8 '@emotion/primitives-core': 11.11.0(react@18.0.0) react-native: 0.71.6(@babel/core@7.22.8)(@babel/preset-env@7.17.10)(metro-resolver@0.76.0)(metro-transform-worker@0.76.0)(react@18.0.0) transitivePeerDependencies: @@ -11654,7 +12969,7 @@ packages: '@emotion/react': ^11.0.0-rc.0 react: '>=16.8.0' dependencies: - css-to-react-native: 3.0.0 + css-to-react-native: 3.2.0 react: 18.0.0 dev: true @@ -11793,8 +13108,8 @@ packages: dev: true optional: true - /@esbuild/android-arm64@0.19.0: - resolution: {integrity: sha512-AzsozJnB+RNaDncBCs3Ys5g3kqhPFUueItfEaCpp89JH2naFNX2mYDIvUgPYMqqjm8hiFoo+jklb3QHZyR3ubw==} + /@esbuild/android-arm64@0.19.3: + resolution: {integrity: sha512-w+Akc0vv5leog550kjJV9Ru+MXMR2VuMrui3C61mnysim0gkFCPOUTAfzTP0qX+HpN9Syu3YA3p1hf3EPqObRw==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -11820,8 +13135,8 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.19.0: - resolution: {integrity: sha512-GAkjUyHgWTYuex3evPd5V7uV/XS4LMKr1PWHRPW1xNyy/Jx08x3uTrDFRefBYLKT/KpaWM8/YMQcwbp5a3yIDA==} + /@esbuild/android-arm@0.19.3: + resolution: {integrity: sha512-Lemgw4io4VZl9GHJmjiBGzQ7ONXRfRPHcUEerndjwiSkbxzrpq0Uggku5MxxrXdwJ+pTj1qyw4jwTu7hkPsgIA==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -11847,8 +13162,8 @@ packages: dev: true optional: true - /@esbuild/android-x64@0.19.0: - resolution: {integrity: sha512-SUG8/qiVhljBDpdkHQ9DvOWbp7hFFIP0OzxOTptbmVsgBgzY6JWowmMd6yJuOhapfxmj/DrvwKmjRLvVSIAKZg==} + /@esbuild/android-x64@0.19.3: + resolution: {integrity: sha512-FKQJKkK5MXcBHoNZMDNUAg1+WcZlV/cuXrWCoGF/TvdRiYS4znA0m5Il5idUwfxrE20bG/vU1Cr5e1AD6IEIjQ==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -11874,8 +13189,8 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64@0.19.0: - resolution: {integrity: sha512-HkxZ8k3Jvcw0FORPNTavA8BMgQjLOB6AajT+iXmil7BwY3gU1hWvJJAyWyEogCmA4LdbGvKF8vEykdmJ4xNJJQ==} + /@esbuild/darwin-arm64@0.19.3: + resolution: {integrity: sha512-kw7e3FXU+VsJSSSl2nMKvACYlwtvZB8RUIeVShIEY6PVnuZ3c9+L9lWB2nWeeKWNNYDdtL19foCQ0ZyUL7nqGw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -11901,8 +13216,8 @@ packages: dev: true optional: true - /@esbuild/darwin-x64@0.19.0: - resolution: {integrity: sha512-9IRWJjqpWFHM9a5Qs3r3bK834NCFuDY5ZaLrmTjqE+10B6w65UMQzeZjh794JcxpHolsAHqwsN/33crUXNCM2Q==} + /@esbuild/darwin-x64@0.19.3: + resolution: {integrity: sha512-tPfZiwF9rO0jW6Jh9ipi58N5ZLoSjdxXeSrAYypy4psA2Yl1dAMhM71KxVfmjZhJmxRjSnb29YlRXXhh3GqzYw==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -11928,8 +13243,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64@0.19.0: - resolution: {integrity: sha512-s7i2WcXcK0V1PJHVBe7NsGddsL62a9Vhpz2U7zapPrwKoFuxPP9jybwX8SXnropR/AOj3ppt2ern4ItblU6UQQ==} + /@esbuild/freebsd-arm64@0.19.3: + resolution: {integrity: sha512-ERDyjOgYeKe0Vrlr1iLrqTByB026YLPzTytDTz1DRCYM+JI92Dw2dbpRHYmdqn6VBnQ9Bor6J8ZlNwdZdxjlSg==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -11955,8 +13270,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64@0.19.0: - resolution: {integrity: sha512-NMdBSSdgwHCqCsucU5k1xflIIRU0qi1QZnM6+vdGy5fvxm1c8rKh50VzsWsIVTFUG3l91AtRxVwoz3Lcvy3I5w==} + /@esbuild/freebsd-x64@0.19.3: + resolution: {integrity: sha512-nXesBZ2Ad1qL+Rm3crN7NmEVJ5uvfLFPLJev3x1j3feCQXfAhoYrojC681RhpdOph8NsvKBBwpYZHR7W0ifTTA==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -11982,8 +13297,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm64@0.19.0: - resolution: {integrity: sha512-I4zvE2srSZxRPapFnNqj+NL3sDJ1wkvEZqt903OZUlBBgigrQMvzUowvP/TTTu2OGYe1oweg5MFilfyrElIFag==} + /@esbuild/linux-arm64@0.19.3: + resolution: {integrity: sha512-qXvYKmXj8GcJgWq3aGvxL/JG1ZM3UR272SdPU4QSTzD0eymrM7leiZH77pvY3UetCy0k1xuXZ+VPvoJNdtrsWQ==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -12009,8 +13324,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm@0.19.0: - resolution: {integrity: sha512-2F1+lH7ZBcCcgxiSs8EXQV0PPJJdTNiNcXxDb61vzxTRJJkXX1I/ye9mAhfHyScXzHaEibEXg1Jq9SW586zz7w==} + /@esbuild/linux-arm@0.19.3: + resolution: {integrity: sha512-zr48Cg/8zkzZCzDHNxXO/89bf9e+r4HtzNUPoz4GmgAkF1gFAFmfgOdCbR8zMbzFDGb1FqBBhdXUpcTQRYS1cQ==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -12036,8 +13351,8 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.19.0: - resolution: {integrity: sha512-dz2Q7+P92r1Evc8kEN+cQnB3qqPjmCrOZ+EdBTn8lEc1yN8WDgaDORQQiX+mxaijbH8npXBT9GxUqE52Gt6Y+g==} + /@esbuild/linux-ia32@0.19.3: + resolution: {integrity: sha512-7XlCKCA0nWcbvYpusARWkFjRQNWNGlt45S+Q18UeS///K6Aw8bB2FKYe9mhVWy/XLShvCweOLZPrnMswIaDXQA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -12063,8 +13378,8 @@ packages: dev: true optional: true - /@esbuild/linux-loong64@0.19.0: - resolution: {integrity: sha512-IcVJovJVflih4oFahhUw+N7YgNbuMSVFNr38awb0LNzfaiIfdqIh518nOfYaNQU3aVfiJnOIRVJDSAP4k35WxA==} + /@esbuild/linux-loong64@0.19.3: + resolution: {integrity: sha512-qGTgjweER5xqweiWtUIDl9OKz338EQqCwbS9c2Bh5jgEH19xQ1yhgGPNesugmDFq+UUSDtWgZ264st26b3de8A==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -12090,8 +13405,8 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el@0.19.0: - resolution: {integrity: sha512-bZGRAGySMquWsKw0gIdsClwfvgbsSq/7oq5KVu1H1r9Il+WzOcfkV1hguntIuBjRVL8agI95i4AukjdAV2YpUw==} + /@esbuild/linux-mips64el@0.19.3: + resolution: {integrity: sha512-gy1bFskwEyxVMFRNYSvBauDIWNggD6pyxUksc0MV9UOBD138dKTzr8XnM2R4mBsHwVzeuIH8X5JhmNs2Pzrx+A==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -12117,8 +13432,8 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64@0.19.0: - resolution: {integrity: sha512-3LC6H5/gCDorxoRBUdpLV/m7UthYSdar0XcCu+ypycQxMS08MabZ06y1D1yZlDzL/BvOYliRNRWVG/YJJvQdbg==} + /@esbuild/linux-ppc64@0.19.3: + resolution: {integrity: sha512-UrYLFu62x1MmmIe85rpR3qou92wB9lEXluwMB/STDzPF9k8mi/9UvNsG07Tt9AqwPQXluMQ6bZbTzYt01+Ue5g==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -12144,8 +13459,8 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64@0.19.0: - resolution: {integrity: sha512-jfvdKjWk+Cp2sgLtEEdSHXO7qckrw2B2eFBaoRdmfhThqZs29GMMg7q/LsQpybA7BxCLLEs4di5ucsWzZC5XPA==} + /@esbuild/linux-riscv64@0.19.3: + resolution: {integrity: sha512-9E73TfyMCbE+1AwFOg3glnzZ5fBAFK4aawssvuMgCRqCYzE0ylVxxzjEfut8xjmKkR320BEoMui4o/t9KA96gA==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -12171,8 +13486,8 @@ packages: dev: true optional: true - /@esbuild/linux-s390x@0.19.0: - resolution: {integrity: sha512-ofcucfNLkoXmcnJaw9ugdEOf40AWKGt09WBFCkpor+vFJVvmk/8OPjl/qRtks2Z7BuZbG3ztJuK1zS9z5Cgx9A==} + /@esbuild/linux-s390x@0.19.3: + resolution: {integrity: sha512-LlmsbuBdm1/D66TJ3HW6URY8wO6IlYHf+ChOUz8SUAjVTuaisfuwCOAgcxo3Zsu3BZGxmI7yt//yGOxV+lHcEA==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -12198,8 +13513,8 @@ packages: dev: true optional: true - /@esbuild/linux-x64@0.19.0: - resolution: {integrity: sha512-Fpf7zNDBti3xrQKQKLdXT0hTyOxgFdRJIMtNy8x1az9ATR9/GJ1brYbB/GLWoXhKiHsoWs+2DLkFVNNMTCLEwA==} + /@esbuild/linux-x64@0.19.3: + resolution: {integrity: sha512-ogV0+GwEmvwg/8ZbsyfkYGaLACBQWDvO0Kkh8LKBGKj9Ru8VM39zssrnu9Sxn1wbapA2qNS6BiLdwJZGouyCwQ==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -12225,8 +13540,8 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64@0.19.0: - resolution: {integrity: sha512-AMQAp/5oENgDOvVhvOlbhVe1pWii7oFAMRHlmTjSEMcpjTpIHtFXhv9uAFgUERHm3eYtNvS9Vf+gT55cwuI6Aw==} + /@esbuild/netbsd-x64@0.19.3: + resolution: {integrity: sha512-o1jLNe4uzQv2DKXMlmEzf66Wd8MoIhLNO2nlQBHLtWyh2MitDG7sMpfCO3NTcoTMuqHjfufgUQDFRI5C+xsXQw==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -12252,8 +13567,8 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64@0.19.0: - resolution: {integrity: sha512-fDztEve1QUs3h/Dw2AUmBlWGkNQbhDoD05ppm5jKvzQv+HVuV13so7m5RYeiSMIC2XQy7PAjZh+afkxAnCRZxA==} + /@esbuild/openbsd-x64@0.19.3: + resolution: {integrity: sha512-AZJCnr5CZgZOdhouLcfRdnk9Zv6HbaBxjcyhq0StNcvAdVZJSKIdOiPB9az2zc06ywl0ePYJz60CjdKsQacp5Q==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -12279,8 +13594,8 @@ packages: dev: true optional: true - /@esbuild/sunos-x64@0.19.0: - resolution: {integrity: sha512-bKZzJ2/rvUjDzA5Ddyva2tMk89WzNJEibZEaq+wY6SiqPlwgFbqyQLimouxLHiHh1itb5P3SNCIF1bc2bw5H9w==} + /@esbuild/sunos-x64@0.19.3: + resolution: {integrity: sha512-Acsujgeqg9InR4glTRvLKGZ+1HMtDm94ehTIHKhJjFpgVzZG9/pIcWW/HA/DoMfEyXmANLDuDZ2sNrWcjq1lxw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -12306,8 +13621,8 @@ packages: dev: true optional: true - /@esbuild/win32-arm64@0.19.0: - resolution: {integrity: sha512-NQJ+4jmnA79saI+sE+QzcEls19uZkoEmdxo7r//PDOjIpX8pmoWtTnWg6XcbnO7o4fieyAwb5U2LvgWynF4diA==} + /@esbuild/win32-arm64@0.19.3: + resolution: {integrity: sha512-FSrAfjVVy7TifFgYgliiJOyYynhQmqgPj15pzLyJk8BUsnlWNwP/IAy6GAiB1LqtoivowRgidZsfpoYLZH586A==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -12333,8 +13648,8 @@ packages: dev: true optional: true - /@esbuild/win32-ia32@0.19.0: - resolution: {integrity: sha512-uyxiZAnsfu9diHm9/rIH2soecF/HWLXYUhJKW4q1+/LLmNQ+55lRjvSUDhUmsgJtSUscRJB/3S4RNiTb9o9mCg==} + /@esbuild/win32-ia32@0.19.3: + resolution: {integrity: sha512-xTScXYi12xLOWZ/sc5RBmMN99BcXp/eEf7scUC0oeiRoiT5Vvo9AycuqCp+xdpDyAU+LkrCqEpUS9fCSZF8J3Q==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -12360,8 +13675,8 @@ packages: dev: true optional: true - /@esbuild/win32-x64@0.19.0: - resolution: {integrity: sha512-jl+NXUjK2StMgqnZnqgNjZuerFG8zQqWXMBZdMMv4W/aO1ZKQaYWZBxTrtWKphkCBVEMh0wMVfGgOd2BjOZqUQ==} + /@esbuild/win32-x64@0.19.3: + resolution: {integrity: sha512-FbUN+0ZRXsypPyWE2IwIkVjDkDnJoMJARWOcFZn4KPPli+QnKqF0z1anvfaYe3ev5HFCpRDLLBDHyOALLppWHw==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -12402,7 +13717,7 @@ packages: dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.5.2 + espree: 9.6.1 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -13757,7 +15072,7 @@ packages: '@firebase/app-compat': 0.1.25 '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' dev: false @@ -13776,7 +15091,7 @@ packages: '@firebase/installations': 0.5.9(@firebase/app@0.7.24) '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/app-check-compat@0.2.8(@firebase/app-compat@0.1.25)(@firebase/app@0.7.24): @@ -13790,7 +15105,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' dev: false @@ -13812,7 +15127,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/app-compat@0.1.25: @@ -13822,7 +15137,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/app-types@0.7.0: @@ -13836,7 +15151,7 @@ packages: '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/auth-compat@0.2.14(@firebase/app-compat@0.1.25)(@firebase/app-types@0.7.0)(@firebase/app@0.7.24): @@ -13851,7 +15166,7 @@ packages: '@firebase/util': 1.6.0 node-fetch: 2.6.7 selenium-webdriver: 4.1.1 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -13891,7 +15206,7 @@ packages: '@firebase/util': 1.6.0 node-fetch: 2.6.7 selenium-webdriver: 4.1.1 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - bufferutil - encoding @@ -13902,7 +15217,7 @@ packages: resolution: {integrity: sha512-ct2p1MTMV5P/nGIlkC3XjAVwHwjsIZaeo8JVyDAkJCNTROu5mYX3FBK16hjIUIIVJDpgnnzFh9nP74gciL4WrA==} dependencies: '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/database-compat@0.2.0(@firebase/app-compat@0.1.25)(@firebase/app-types@0.7.0): @@ -13916,7 +15231,7 @@ packages: '@firebase/database-types': 0.9.8 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app-types' dev: false @@ -13936,7 +15251,7 @@ packages: '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 faye-websocket: 0.11.4 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app-types' dev: false @@ -13951,7 +15266,7 @@ packages: '@firebase/firestore': 3.4.9(@firebase/app@0.7.24) '@firebase/firestore-types': 2.5.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.0) '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -13982,7 +15297,7 @@ packages: '@grpc/grpc-js': 1.6.7 '@grpc/proto-loader': 0.6.12 node-fetch: 2.6.7 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - encoding dev: false @@ -13997,7 +15312,7 @@ packages: '@firebase/functions': 0.8.1(@firebase/app-types@0.7.0)(@firebase/app@0.7.24) '@firebase/functions-types': 0.5.0 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -14020,7 +15335,7 @@ packages: '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.0 node-fetch: 2.6.7 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app-types' - encoding @@ -14035,13 +15350,13 @@ packages: '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/logger@0.3.2: resolution: {integrity: sha512-lzLrcJp9QBWpo40OcOM9B8QEtBw2Fk1zOZQdvv+rWS6gKmhQBCEMc4SMABQfWdjsylBcDfniD1Q+fUX1dcBTXA==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/messaging-compat@0.1.13(@firebase/app-compat@0.1.25)(@firebase/app@0.7.24): @@ -14053,7 +15368,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/messaging': 0.9.13(@firebase/app@0.7.24) '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14073,7 +15388,7 @@ packages: '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/performance-compat@0.1.9(@firebase/app-compat@0.1.25)(@firebase/app@0.7.24): @@ -14087,7 +15402,7 @@ packages: '@firebase/performance': 0.5.9(@firebase/app@0.7.24) '@firebase/performance-types': 0.1.0 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14106,7 +15421,7 @@ packages: '@firebase/installations': 0.5.9(@firebase/app@0.7.24) '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/polyfill@0.3.36: @@ -14128,7 +15443,7 @@ packages: '@firebase/remote-config': 0.3.8(@firebase/app@0.7.24) '@firebase/remote-config-types': 0.2.0 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' dev: false @@ -14147,7 +15462,7 @@ packages: '@firebase/installations': 0.5.9(@firebase/app@0.7.24) '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/storage-compat@0.1.14(@firebase/app-compat@0.1.25)(@firebase/app-types@0.7.0)(@firebase/app@0.7.24): @@ -14160,7 +15475,7 @@ packages: '@firebase/storage': 0.9.6(@firebase/app@0.7.24) '@firebase/storage-types': 0.6.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.0) '@firebase/util': 1.6.0 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -14186,7 +15501,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 node-fetch: 2.6.7 - tslib: 2.6.1 + tslib: 2.6.2 transitivePeerDependencies: - encoding dev: false @@ -14194,7 +15509,7 @@ packages: /@firebase/util@1.6.0: resolution: {integrity: sha512-6+hhqb4Zzjoo12xofTDHPkgW3FnN4ydBsjd5X2KuQI268DR3W3Ld64W/gkKPZrKRgUxeNeb+pykfP3qRe7q+vA==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@firebase/webchannel-wrapper@0.6.1: @@ -14208,7 +15523,7 @@ packages: /@floating-ui/core@1.4.1: resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==} dependencies: - '@floating-ui/utils': 0.1.2 + '@floating-ui/utils': 0.1.1 dev: false /@floating-ui/dom@0.1.10: @@ -14217,11 +15532,11 @@ packages: '@floating-ui/core': 0.3.1 dev: false - /@floating-ui/dom@1.5.2: - resolution: {integrity: sha512-6ArmenS6qJEWmwzczWyhvrXRdI/rI78poBcW0h/456+onlabit+2G+QxHx5xTOX60NBJQXjsCLFbW2CmsXpUog==} + /@floating-ui/dom@1.5.1: + resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==} dependencies: '@floating-ui/core': 1.4.1 - '@floating-ui/utils': 0.1.2 + '@floating-ui/utils': 0.1.1 dev: false /@floating-ui/react-dom@0.4.3(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): @@ -14238,34 +15553,34 @@ packages: - '@types/react' dev: false - /@floating-ui/utils@0.1.2: - resolution: {integrity: sha512-ou3elfqG/hZsbmF4bxeJhPHIf3G2pm0ujc39hYEZrfVqt7Vk/Zji6CXc3W0pmYM8BW1g40U+akTl9DKZhFhInQ==} + /@floating-ui/utils@0.1.1: + resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==} dev: false /@formatjs/ecma402-abstract@1.14.3: resolution: {integrity: sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg==} dependencies: '@formatjs/intl-localematcher': 0.2.32 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@formatjs/ecma402-abstract@1.17.0: resolution: {integrity: sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==} dependencies: '@formatjs/intl-localematcher': 0.4.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@formatjs/intl-enumerator@1.3.2: resolution: {integrity: sha512-bG0XyG0rCTdmoZRJJXe0oF0PTK7PzJjlLM6PmRlnZs6K5DQYHk4D9TNCwtK2e6OxvBI5EFW4Iy3dhQf/UToxPQ==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@formatjs/intl-getcanonicallocales@2.2.1: resolution: {integrity: sha512-KooqmyY+Mhq3ioASPzoU6p6Cy9Mx+cWSVQSP6lF+vEW2tiaN90ti08cp82p1dzFschenduOYgPKrNcBpsDi6+g==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@formatjs/intl-locale@3.3.2: @@ -14280,13 +15595,13 @@ packages: /@formatjs/intl-localematcher@0.2.32: resolution: {integrity: sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@formatjs/intl-localematcher@0.4.0: resolution: {integrity: sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@formatjs/intl-pluralrules@5.2.4: @@ -15113,7 +16428,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 '@types/node': 18.16.19 chalk: 4.1.2 collect-v8-coverage: 1.0.1 @@ -15152,7 +16467,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3(metro@0.76.0) '@jest/types': 28.1.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 '@types/node': 18.16.19 chalk: 4.1.2 collect-v8-coverage: 1.0.1 @@ -15229,7 +16544,7 @@ packages: '@jest/test-result': 29.6.2 '@jest/transform': 29.6.2 '@jest/types': 29.6.1 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 '@types/node': 18.16.19 chalk: 4.1.2 collect-v8-coverage: 1.0.1 @@ -15278,7 +16593,7 @@ packages: resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 callsites: 3.1.0 graceful-fs: 4.2.11 dev: true @@ -15287,7 +16602,7 @@ packages: resolution: {integrity: sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 callsites: 3.1.0 graceful-fs: 4.2.11 dev: true @@ -15384,11 +16699,11 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 jest-haste-map: 26.6.2 @@ -15408,11 +16723,11 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 jest-haste-map: 26.6.2(metro@0.76.0) @@ -15432,11 +16747,11 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 @@ -15528,9 +16843,9 @@ packages: resolution: {integrity: sha512-ZqCqEISr58Ce3U+buNFJYUktLJZOggfyvR+bZMaiV1e8B1SIvJbwZMrYz3gx/KAPn9EXmOmN+uB08yLCjWkQQg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/types': 29.6.1 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -15612,27 +16927,46 @@ packages: resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/set-array': 1.1.1 - '@jridgewell/sourcemap-codec': 1.4.14 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.19 + + /@jridgewell/gen-mapping@0.3.3: + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.19 /@jridgewell/resolve-uri@3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + /@jridgewell/set-array@1.1.1: resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} engines: {node: '>=6.0.0'} + /@jridgewell/set-array@1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + /@jridgewell/source-map@0.3.3: resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==} dependencies: - '@jridgewell/gen-mapping': 0.3.2 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.19 /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + /@jridgewell/trace-mapping@0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: @@ -15646,11 +16980,17 @@ packages: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 + /@jridgewell/trace-mapping@0.3.19: + resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 /@keplr-wallet/cosmos@0.9.16: resolution: {integrity: sha512-pTbqgZdxMY/O4w37YVDTNFdfbueQUXGiYlMAVsrdtFWBQSz+s1j2UpAgtJoIoEoawYVPmlHSWXviafXr7Y7B7w==} @@ -15742,7 +17082,7 @@ packages: '@ledgerhq/errors': 6.14.0 '@ledgerhq/logs': 6.10.1 rxjs: 6.6.7 - semver: 7.5.4 + semver: 7.3.7 dev: false /@ledgerhq/errors@5.50.0: @@ -15767,7 +17107,7 @@ packages: '@ledgerhq/hw-transport': 6.28.8 '@ledgerhq/logs': 6.10.1 axios: 0.26.1 - ws: 7.5.7 + ws: 7.5.9 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -15883,7 +17223,7 @@ packages: '@ledgerhq/wallet-api-core': 1.2.0 '@ledgerhq/wallet-api-server': 1.2.0(react@17.0.2) rxjs: 7.8.1 - ws: 8.13.0 + ws: 8.14.1 transitivePeerDependencies: - bufferutil - react @@ -16797,7 +18137,7 @@ packages: open: 8.4.0 picocolors: 1.0.0 tiny-glob: 0.2.9 - tslib: 2.6.1 + tslib: 2.6.2 /@playwright/test@1.34.3: resolution: {integrity: sha512-zPLef6w9P6T/iT6XDYG3mvGOqOyb6eHaV9XtkunYs0+OzxBtrPAAaHotc0X+PJ00WPPnLfFBTl7mf45Mn8DBmw==} @@ -16977,8 +18317,8 @@ packages: webpack: 4.42.1 dev: true - /@polka/url@1.0.0-next.21: - resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} + /@polka/url@1.0.0-next.23: + resolution: {integrity: sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==} dev: false /@polkadot/keyring@10.4.2: @@ -17754,7 +19094,7 @@ packages: nocache: 3.0.4 pretty-format: 26.6.2 serve-static: 1.15.0 - ws: 7.5.7 + ws: 7.5.9 transitivePeerDependencies: - bufferutil - encoding @@ -18105,7 +19445,7 @@ packages: dependencies: '@react-navigation/routers': 6.1.9 escape-string-regexp: 4.0.0 - nanoid: 3.3.4 + nanoid: 3.3.6 query-string: 7.1.3 react: 18.0.0 react-is: 16.13.1 @@ -18178,7 +19518,7 @@ packages: '@react-navigation/core': 6.4.9(react@18.0.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 - nanoid: 3.3.4 + nanoid: 3.3.6 react: 18.0.0 react-native: 0.71.6(@babel/core@7.22.8)(metro-resolver@0.76.0)(metro-transform-worker@0.76.0)(react@18.0.0) dev: true @@ -18186,13 +19526,13 @@ packages: /@react-navigation/routers@6.1.6: resolution: {integrity: sha512-Z5DeCW3pUvMafbU9Cjy1qJYC2Bvl8iy3+PfsB0DsAwQ6zZ3WAXW5FTMX4Gb9H+Jg6qHWGbMFFwlYpS3UJ3tlVQ==} dependencies: - nanoid: 3.3.4 + nanoid: 3.3.6 dev: false /@react-navigation/routers@6.1.9: resolution: {integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==} dependencies: - nanoid: 3.3.4 + nanoid: 3.3.6 dev: true /@react-navigation/stack@6.3.1(@react-navigation/native@6.0.13)(react-native-gesture-handler@2.9.0)(react-native-safe-area-context@4.5.0)(react-native-screens@3.20.0)(react-native@0.71.6)(react@18.0.0): @@ -18306,7 +19646,7 @@ packages: strip-json-comments: 3.1.1 dev: false - /@rollup/plugin-babel@5.3.1(@babel/core@7.22.9)(rollup@2.79.1): + /@rollup/plugin-babel@5.3.1(@babel/core@7.22.17)(rollup@2.79.1): resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -18317,8 +19657,8 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.22.17 + '@babel/helper-module-imports': 7.22.15 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 dev: false @@ -18826,7 +20166,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/config-resolver@1.0.2: @@ -18836,7 +20176,7 @@ packages: '@smithy/types': 1.1.1 '@smithy/util-config-provider': 1.0.2 '@smithy/util-middleware': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/credential-provider-imds@1.0.2: @@ -18847,7 +20187,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 '@smithy/url-parser': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/eventstream-codec@1.0.2: @@ -18856,7 +20196,7 @@ packages: '@aws-crypto/crc32': 3.0.0 '@smithy/types': 1.1.1 '@smithy/util-hex-encoding': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/eventstream-serde-browser@1.0.2: @@ -18865,7 +20205,7 @@ packages: dependencies: '@smithy/eventstream-serde-universal': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/eventstream-serde-config-resolver@1.0.2: @@ -18873,7 +20213,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/eventstream-serde-node@1.0.2: @@ -18882,7 +20222,7 @@ packages: dependencies: '@smithy/eventstream-serde-universal': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/eventstream-serde-universal@1.0.2: @@ -18891,7 +20231,7 @@ packages: dependencies: '@smithy/eventstream-codec': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/fetch-http-handler@1.0.2: @@ -18901,7 +20241,7 @@ packages: '@smithy/querystring-builder': 1.0.2 '@smithy/types': 1.1.1 '@smithy/util-base64': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/hash-node@1.0.2: @@ -18911,21 +20251,21 @@ packages: '@smithy/types': 1.1.1 '@smithy/util-buffer-from': 1.0.2 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/invalid-dependency@1.0.2: resolution: {integrity: sha512-B1Y3Tsa6dfC+Vvb+BJMhTHOfFieeYzY9jWQSTR1vMwKkxsymD0OIAnEw8rD/RiDj/4E4RPGFdx9Mdgnyd6Bv5Q==} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/is-array-buffer@1.0.2: resolution: {integrity: sha512-pkyBnsBRpe+c/6ASavqIMRBdRtZNJEVJOEzhpxZ9JoAXiZYbkfaSMRA/O1dUxGdJ653GHONunnZ4xMo/LJ7utQ==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/middleware-content-length@1.0.2: @@ -18934,7 +20274,7 @@ packages: dependencies: '@smithy/protocol-http': 1.1.1 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/middleware-endpoint@1.0.3: @@ -18945,7 +20285,7 @@ packages: '@smithy/types': 1.1.1 '@smithy/url-parser': 1.0.2 '@smithy/util-middleware': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/middleware-retry@1.0.4: @@ -18957,7 +20297,7 @@ packages: '@smithy/types': 1.1.1 '@smithy/util-middleware': 1.0.2 '@smithy/util-retry': 1.0.4 - tslib: 2.6.1 + tslib: 2.6.2 uuid: 8.3.2 dev: true @@ -18966,14 +20306,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/middleware-stack@1.0.2: resolution: {integrity: sha512-H7/uAQEcmO+eDqweEFMJ5YrIpsBwmrXSP6HIIbtxKJSQpAcMGY7KrR2FZgZBi1FMnSUOh+rQrbOyj5HQmSeUBA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/node-config-provider@1.0.2: @@ -18983,7 +20323,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/shared-ini-file-loader': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/node-http-handler@1.0.3: @@ -18994,7 +20334,7 @@ packages: '@smithy/protocol-http': 1.1.1 '@smithy/querystring-builder': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/property-provider@1.0.2: @@ -19002,7 +20342,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/protocol-http@1.1.1: @@ -19010,7 +20350,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/querystring-builder@1.0.2: @@ -19019,7 +20359,7 @@ packages: dependencies: '@smithy/types': 1.1.1 '@smithy/util-uri-escape': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/querystring-parser@1.0.2: @@ -19027,7 +20367,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/service-error-classification@1.0.3: @@ -19040,7 +20380,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/signature-v4@1.0.2: @@ -19054,7 +20394,7 @@ packages: '@smithy/util-middleware': 1.0.2 '@smithy/util-uri-escape': 1.0.2 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/smithy-client@1.0.4: @@ -19064,14 +20404,14 @@ packages: '@smithy/middleware-stack': 1.0.2 '@smithy/types': 1.1.1 '@smithy/util-stream': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/types@1.1.1: resolution: {integrity: sha512-tMpkreknl2gRrniHeBtdgQwaOlo39df8RxSrwsHVNIGXULy5XP6KqgScUw2m12D15wnJCKWxVhCX+wbrBW/y7g==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/url-parser@1.0.2: @@ -19079,7 +20419,7 @@ packages: dependencies: '@smithy/querystring-parser': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-base64@1.0.2: @@ -19087,20 +20427,20 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/util-buffer-from': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-body-length-browser@1.0.2: resolution: {integrity: sha512-Xh8L06H2anF5BHjSYTg8hx+Itcbf4SQZnVMl4PIkCOsKtneMJoGjPRLy17lEzfoh/GOaa0QxgCP6lRMQWzNl4w==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-body-length-node@1.0.2: resolution: {integrity: sha512-nXHbZsUtvZeyfL4Ceds9nmy2Uh2AhWXohG4vWHyjSdmT8cXZlJdmJgnH6SJKDjyUecbu+BpKeVvSrA4cWPSOPA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-buffer-from@1.0.2: @@ -19108,14 +20448,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/is-array-buffer': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-config-provider@1.0.2: resolution: {integrity: sha512-HOdmDm+3HUbuYPBABLLHtn8ittuRyy+BSjKOA169H+EMc+IozipvXDydf+gKBRAxUa4dtKQkLraypwppzi+PRw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-defaults-mode-browser@1.0.2: @@ -19125,7 +20465,7 @@ packages: '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 bowser: 2.11.0 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-defaults-mode-node@1.0.2: @@ -19137,21 +20477,21 @@ packages: '@smithy/node-config-provider': 1.0.2 '@smithy/property-provider': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-hex-encoding@1.0.2: resolution: {integrity: sha512-Bxydb5rMJorMV6AuDDMOxro3BMDdIwtbQKHpwvQFASkmr52BnpDsWlxgpJi8Iq7nk1Bt4E40oE1Isy/7ubHGzg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-middleware@1.0.2: resolution: {integrity: sha512-vtXK7GOR2BoseCX8NCGe9SaiZrm9M2lm/RVexFGyPuafTtry9Vyv7hq/vw8ifd/G/pSJ+msByfJVb1642oQHKw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-retry@1.0.4: @@ -19159,7 +20499,7 @@ packages: engines: {node: '>= 14.0.0'} dependencies: '@smithy/service-error-classification': 1.0.3 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-stream@1.0.2: @@ -19173,14 +20513,14 @@ packages: '@smithy/util-buffer-from': 1.0.2 '@smithy/util-hex-encoding': 1.0.2 '@smithy/util-utf8': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-uri-escape@1.0.2: resolution: {integrity: sha512-k8C0BFNS9HpBMHSgUDnWb1JlCQcFG+PPlVBq9keP4Nfwv6a9Q0yAfASWqUCtzjuMj1hXeLhn/5ADP6JxnID1Pg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-utf8@1.0.2: @@ -19188,7 +20528,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/util-buffer-from': 1.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@smithy/util-waiter@1.0.2: @@ -19197,7 +20537,7 @@ packages: dependencies: '@smithy/abort-controller': 1.0.2 '@smithy/types': 1.1.1 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.88.2): @@ -19647,11 +20987,11 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) '@jest/transform': 26.6.2 '@mdx-js/loader': 1.6.22(react@17.0.2) '@mdx-js/mdx': 1.6.22 @@ -19684,7 +21024,7 @@ packages: js-string-escape: 1.0.1 loader-utils: 2.0.4 lodash: 4.17.21 - nanoid: 3.3.4 + nanoid: 3.3.6 p-limit: 3.1.0 prettier: 2.3.0 prop-types: 15.8.1 @@ -19696,7 +21036,7 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - webpack: 5.72.1(esbuild@0.19.0) + webpack: 5.72.1(esbuild@0.19.3) transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' @@ -19729,7 +21069,7 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) '@babel/preset-env': 7.21.4(@babel/core@7.22.8) '@jest/transform': 26.6.2(metro@0.76.0) '@mdx-js/react': 1.6.22(react@18.0.0) @@ -19814,7 +21154,7 @@ packages: react-dom: 17.0.2(react@17.0.2) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - webpack: 5.72.1(esbuild@0.19.0) + webpack: 5.72.1(esbuild@0.19.3) transitivePeerDependencies: - '@storybook/angular' - '@storybook/builder-webpack5' @@ -20048,7 +21388,7 @@ packages: - react-dom dev: true - /@storybook/addon-ondevice-backgrounds@6.5.6(@emotion/native@11.0.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0): + /@storybook/addon-ondevice-backgrounds@6.5.6(@emotion/native@11.11.0)(react-dom@18.0.0)(react-native@0.71.6)(react@18.0.0): resolution: {integrity: sha512-+UkFdVxB/wylMzlhxz3pKx2cDfR+ULm9DvmAiseYCJvpyB/pF2yqUCJe/LhsBZr8NNBGhbAoMbOIwVB3vJ5S2Q==} peerDependencies: '@emotion/native': '*' @@ -20058,7 +21398,7 @@ packages: '@emotion/native': optional: true dependencies: - '@emotion/native': 11.0.0(@babel/core@7.22.8)(react-native@0.71.6)(react@18.0.0) + '@emotion/native': 11.11.0(react-native@0.71.6)(react@18.0.0) '@storybook/addons': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/api': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/client-api': 6.5.16(react-dom@18.0.0)(react@18.0.0) @@ -20455,27 +21795,27 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.9) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) - '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.17) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) + '@babel/preset-react': 7.22.15(@babel/core@7.22.17) + '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) '@storybook/addons': 6.4.22(react-dom@17.0.2)(react@17.0.2) '@storybook/api': 6.4.22(react-dom@17.0.2)(react@17.0.2) '@storybook/channel-postmessage': 6.4.22 @@ -20495,9 +21835,9 @@ packages: '@types/node': 14.18.38 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@4.46.0) babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.9) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.17) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.5 css-loader: 3.6.0(webpack@4.46.0) @@ -20549,7 +21889,7 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@storybook/addons': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/api': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/channel-postmessage': 6.5.16 @@ -20569,7 +21909,7 @@ packages: '@types/node': 16.18.16 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@4.46.0) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.5 css-loader: 3.6.0(webpack@4.46.0) @@ -21058,7 +22398,7 @@ packages: typescript: 5.1.3 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.72.1(esbuild@0.19.0) + webpack: 5.72.1(esbuild@0.19.3) transitivePeerDependencies: - '@types/react' dev: true @@ -21221,34 +22561,34 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.9) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) - '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) - '@babel/register': 7.17.7(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.17) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) + '@babel/preset-react': 7.22.15(@babel/core@7.22.17) + '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/register': 7.17.7(@babel/core@7.22.17) '@storybook/node-logger': 6.4.22 '@storybook/semver': 7.3.2 '@types/node': 14.18.38 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@4.46.0) babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.9) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.17) chalk: 4.1.2 core-js: 3.22.5 express: 4.18.1 @@ -21291,35 +22631,35 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.9) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) - '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) - '@babel/register': 7.17.7(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.17) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) + '@babel/preset-react': 7.22.15(@babel/core@7.22.17) + '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/register': 7.17.7(@babel/core@7.22.17) '@storybook/node-logger': 6.5.14 '@storybook/semver': 7.3.2 '@types/node': 16.18.16 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@4.46.0) babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.9) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.17) chalk: 4.1.2 core-js: 3.22.5 express: 4.18.1 @@ -21362,35 +22702,35 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.9) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) - '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) - '@babel/register': 7.17.7(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.17) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) + '@babel/preset-react': 7.22.15(@babel/core@7.22.17) + '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/register': 7.17.7(@babel/core@7.22.17) '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 '@types/node': 16.18.16 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@4.46.0) babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.9) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.17) chalk: 4.1.2 core-js: 3.22.5 express: 4.18.1 @@ -21501,7 +22841,7 @@ packages: util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 - ws: 8.13.0 + ws: 8.14.1 transitivePeerDependencies: - '@types/react' - bluebird @@ -21581,7 +22921,7 @@ packages: util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 - ws: 8.13.0 + ws: 8.14.1 x-default-browser: 0.4.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -21653,7 +22993,7 @@ packages: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) typescript: 5.1.3 - webpack: 5.72.1(esbuild@0.19.0) + webpack: 5.72.1(esbuild@0.19.3) transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' @@ -21713,13 +23053,13 @@ packages: /@storybook/csf-tools@6.4.22: resolution: {integrity: sha512-LMu8MZAiQspJAtMBLU2zitsIkqQv7jOwX7ih5JrXlyaDticH7l2j6Q+1mCZNWUOiMTizj0ivulmUsSaYbpToSw==} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.2--canary.87bc651.0 core-js: 3.22.5 @@ -21742,15 +23082,15 @@ packages: '@storybook/mdx2-csf': optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/mdx1-csf': 0.0.1(@babel/core@7.22.9) + '@storybook/mdx1-csf': 0.0.1(@babel/core@7.22.17) core-js: 3.22.5 fs-extra: 9.1.0 global: 4.4.0 @@ -21798,9 +23138,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) + '@babel/preset-react': 7.22.15(@babel/core@7.22.17) '@storybook/addons': 6.4.22(react-dom@17.0.2)(react@17.0.2) '@storybook/core-client': 6.4.22(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.3)(webpack@4.46.0) '@storybook/core-common': 6.4.22(eslint@8.41.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.3) @@ -21809,7 +23149,7 @@ packages: '@storybook/ui': 6.4.22(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@types/node': 14.18.38 '@types/webpack': 4.41.32 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@4.46.0) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.5 @@ -21859,9 +23199,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) + '@babel/preset-react': 7.22.15(@babel/core@7.22.17) '@storybook/addons': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@storybook/core-client': 6.5.16(react-dom@18.0.0)(react@18.0.0)(typescript@5.1.3)(webpack@4.46.0) '@storybook/core-common': 6.5.16(eslint@8.41.0)(react-dom@18.0.0)(react@18.0.0)(typescript@5.1.3) @@ -21870,7 +23210,7 @@ packages: '@storybook/ui': 6.5.16(react-dom@18.0.0)(react@18.0.0) '@types/node': 16.18.16 '@types/webpack': 4.41.32 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@4.46.0) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.5 @@ -21966,13 +23306,13 @@ packages: - webpack-command dev: true - /@storybook/mdx1-csf@0.0.1(@babel/core@7.22.8): + /@storybook/mdx1-csf@0.0.1(@babel/core@7.22.17): resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/preset-env': 7.21.4(@babel/core@7.22.8) - '@babel/types': 7.22.5 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) + '@babel/types': 7.22.17 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.198 js-string-escape: 1.0.1 @@ -21985,13 +23325,13 @@ packages: - supports-color dev: true - /@storybook/mdx1-csf@0.0.1(@babel/core@7.22.9): + /@storybook/mdx1-csf@0.0.1(@babel/core@7.22.8): resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/types': 7.22.5 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/preset-env': 7.21.4(@babel/core@7.22.8) + '@babel/types': 7.22.17 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.198 js-string-escape: 1.0.1 @@ -22136,7 +23476,7 @@ packages: flat-cache: 3.0.4 micromatch: 4.0.5 react-docgen-typescript: 2.2.2(typescript@5.1.3) - tslib: 2.6.1 + tslib: 2.6.2 typescript: 5.1.3 webpack: 4.42.1 transitivePeerDependencies: @@ -22155,7 +23495,7 @@ packages: flat-cache: 3.0.4 micromatch: 4.0.5 react-docgen-typescript: 2.2.2(typescript@5.1.3) - tslib: 2.6.1 + tslib: 2.6.2 typescript: 5.1.3 webpack: 5.88.2(metro@0.76.0) transitivePeerDependencies: @@ -22556,7 +23896,7 @@ packages: fs-extra: 9.1.0 global: 4.4.0 isomorphic-unfetch: 3.1.0 - nanoid: 3.3.4 + nanoid: 3.3.6 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 transitivePeerDependencies: @@ -22915,7 +24255,7 @@ packages: resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@svgr/plugin-jsx@5.5.0: resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} @@ -22955,7 +24295,7 @@ packages: '@babel/core': 7.22.9 '@babel/plugin-transform-react-constant-elements': 7.17.6(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) + '@babel/preset-react': 7.22.15(@babel/core@7.22.9) '@svgr/core': 5.5.0(@svgr/plugin-svgo@5.5.0) '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -22967,13 +24307,13 @@ packages: /@swc/helpers@0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@swc/helpers@0.5.1: resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 /@szmarczak/http-timer@1.1.2: resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} @@ -23366,8 +24706,8 @@ packages: /@types/babel__core@7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.22.5 - '@babel/types': 7.22.5 + '@babel/parser': 7.22.7 + '@babel/types': 7.22.15 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.17.1 @@ -23375,18 +24715,18 @@ packages: /@types/babel__generator@7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/parser': 7.22.16 + '@babel/types': 7.22.17 /@types/babel__traverse@7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.22.17 /@types/bchaddrjs@0.4.0: resolution: {integrity: sha512-Nvv3haWpXNWYfKasVoEp3VBgVsBTLTh45anhHUN8xVUPhn4ErU3FPS5AEcZtACWc5ICGUxbaiLTWOnwDkwYF1Q==} @@ -24044,7 +25384,7 @@ packages: optional: true dependencies: '@types/react': 18.2.0 - csstype: 3.1.2 + csstype: 3.0.11 dev: true /@types/react-is@17.0.3(@types/react@17.0.53): @@ -24317,14 +25657,14 @@ packages: dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.1.2 + csstype: 3.0.11 /@types/react@18.2.0: resolution: {integrity: sha512-0FLj93y5USLHdnhIhABk83rm8XEGA7kH3cr+YUlvxoUGp1xNt/DINUMvqPxLyOQMzLmZe8i4RTHbvb8MC7NmrA==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.1.2 + csstype: 3.0.11 /@types/redux-actions@2.6.2: resolution: {integrity: sha512-TvcINy8rWFANcpc3EiEQX9Yv3owM3d3KIrqr2ryUIOhYIYzXA/bhDZeGSSSuai62iVR2qMZUgz9tQ5kr0Kl+Tg==} @@ -25034,7 +26374,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.3.1 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: false /@typescript-eslint/visitor-keys@5.57.0: @@ -25042,7 +26382,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.57.0 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: true /@typescript-eslint/visitor-keys@5.59.6: @@ -25050,7 +26390,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.59.6 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: false /@typescript-eslint/visitor-keys@5.60.0: @@ -25058,7 +26398,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.60.0 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: false /@typescript-eslint/visitor-keys@6.2.0: @@ -25066,7 +26406,7 @@ packages: engines: {node: ^16.0.0 || >=18.0.0} dependencies: '@typescript-eslint/types': 6.2.0 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 /@urql/core@2.3.6(graphql@15.8.0): resolution: {integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==} @@ -25131,11 +26471,11 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@types/webpack-env': 1.16.4 '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(vue@2.7.14) '@vue/cli-shared-utils': 5.0.8 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.2) + babel-loader: 8.2.5(@babel/core@7.22.17)(webpack@5.88.2) fork-ts-checker-webpack-plugin: 6.5.2(eslint@8.41.0)(typescript@5.1.3)(vue-template-compiler@2.7.14)(webpack@5.88.2) globby: 11.1.0 thread-loader: 3.0.4(webpack@5.88.2) @@ -25194,7 +26534,7 @@ packages: webpack-sources: optional: true dependencies: - '@babel/helper-compilation-targets': 7.22.9 + '@babel/helper-compilation-targets': 7.22.15 '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.88.2) '@soda/get-current-script': 1.0.2 '@types/minimist': 1.2.2 @@ -25205,11 +26545,11 @@ packages: '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@vue/vue-loader-v15': /vue-loader@15.10.2(css-loader@6.7.1)(lodash@4.17.21)(prettier@2.8.3)(react-dom@17.0.2)(react@17.0.2)(vue-template-compiler@2.7.14)(webpack@5.88.2) '@vue/web-component-wrapper': 1.3.0 - acorn: 8.8.2 + acorn: 8.10.0 acorn-walk: 8.2.0 address: 1.2.0 - autoprefixer: 10.4.8(postcss@8.4.21) - browserslist: 4.21.9 + autoprefixer: 10.4.8(postcss@8.4.29) + browserslist: 4.21.10 case-sensitive-paths-webpack-plugin: 2.4.0 cli-highlight: 2.1.11 clipboardy: 2.3.0 @@ -25217,7 +26557,7 @@ packages: copy-webpack-plugin: 9.1.0(webpack@5.88.2) css-loader: 6.7.1(webpack@5.88.2) css-minimizer-webpack-plugin: 3.4.1(webpack@5.88.2) - cssnano: 5.1.12(postcss@8.4.21) + cssnano: 5.1.12(postcss@8.4.29) debug: 4.3.4 default-gateway: 6.0.3 dotenv: 10.0.0 @@ -25234,8 +26574,8 @@ packages: minimist: 1.2.8 module-alias: 2.2.3 portfinder: 1.0.28 - postcss: 8.4.21 - postcss-loader: 6.2.1(browserslist@4.21.9)(postcss@8.4.21)(webpack@5.88.2) + postcss: 8.4.29 + postcss-loader: 6.2.1(browserslist@4.21.10)(postcss@8.4.29)(webpack@5.88.2) progress-webpack-plugin: 1.0.16(webpack@5.88.2) ssri: 8.0.1 terser-webpack-plugin: 5.3.9(webpack@5.88.2) @@ -25251,7 +26591,6 @@ packages: webpack-virtual-modules: 0.4.6 whatwg-fetch: 3.6.2 transitivePeerDependencies: - - '@babel/core' - '@parcel/css' - '@swc/core' - '@vue/compiler-sfc' @@ -25341,57 +26680,57 @@ packages: - encoding dev: false - /@vue/compiler-core@3.2.33: - resolution: {integrity: sha512-AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw==} + /@vue/compiler-core@3.3.4: + resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} requiresBuild: true dependencies: - '@babel/parser': 7.22.7 - '@vue/shared': 3.2.33 + '@babel/parser': 7.22.16 + '@vue/shared': 3.3.4 estree-walker: 2.0.2 - source-map: 0.6.1 + source-map-js: 1.0.2 dev: true optional: true - /@vue/compiler-dom@3.2.33: - resolution: {integrity: sha512-GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ==} + /@vue/compiler-dom@3.3.4: + resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==} requiresBuild: true dependencies: - '@vue/compiler-core': 3.2.33 - '@vue/shared': 3.2.33 + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 dev: true optional: true /@vue/compiler-sfc@2.7.14: resolution: {integrity: sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==} dependencies: - '@babel/parser': 7.22.7 - postcss: 8.4.21 + '@babel/parser': 7.22.16 + postcss: 8.4.29 source-map: 0.6.1 dev: false - /@vue/compiler-sfc@3.2.33: - resolution: {integrity: sha512-H8D0WqagCr295pQjUYyO8P3IejM3vEzeCO1apzByAEaAR/WimhMYczHfZVvlCE/9yBaEu/eu9RdiWr0kF8b71Q==} + /@vue/compiler-sfc@3.3.4: + resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} requiresBuild: true dependencies: '@babel/parser': 7.22.7 - '@vue/compiler-core': 3.2.33 - '@vue/compiler-dom': 3.2.33 - '@vue/compiler-ssr': 3.2.33 - '@vue/reactivity-transform': 3.2.33 - '@vue/shared': 3.2.33 + '@vue/compiler-core': 3.3.4 + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-ssr': 3.3.4 + '@vue/reactivity-transform': 3.3.4 + '@vue/shared': 3.3.4 estree-walker: 2.0.2 - magic-string: 0.25.9 - postcss: 8.4.21 - source-map: 0.6.1 + magic-string: 0.30.3 + postcss: 8.4.29 + source-map-js: 1.0.2 dev: true optional: true - /@vue/compiler-ssr@3.2.33: - resolution: {integrity: sha512-XQh1Xdk3VquDpXsnoCd7JnMoWec9CfAzQDQsaMcSU79OrrO2PNR0ErlIjm/mGq3GmBfkQjzZACV+7GhfRB8xMQ==} + /@vue/compiler-ssr@3.3.4: + resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==} requiresBuild: true dependencies: - '@vue/compiler-dom': 3.2.33 - '@vue/shared': 3.2.33 + '@vue/compiler-dom': 3.3.4 + '@vue/shared': 3.3.4 dev: true optional: true @@ -25464,20 +26803,20 @@ packages: - whiskers dev: false - /@vue/reactivity-transform@3.2.33: - resolution: {integrity: sha512-4UL5KOIvSQb254aqenW4q34qMXbfZcmEsV/yVidLUgvwYQQ/D21bGX3DlgPUGI3c4C+iOnNmDCkIxkILoX/Pyw==} + /@vue/reactivity-transform@3.3.4: + resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} requiresBuild: true dependencies: - '@babel/parser': 7.22.7 - '@vue/compiler-core': 3.2.33 - '@vue/shared': 3.2.33 + '@babel/parser': 7.22.16 + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 estree-walker: 2.0.2 - magic-string: 0.25.9 + magic-string: 0.30.3 dev: true optional: true - /@vue/shared@3.2.33: - resolution: {integrity: sha512-UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg==} + /@vue/shared@3.3.4: + resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==} requiresBuild: true dev: true optional: true @@ -26058,7 +27397,7 @@ packages: /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 8.8.2 + acorn: 8.10.0 acorn-walk: 8.2.0 dev: true @@ -26098,14 +27437,6 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.10.0 - dev: false - - /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: resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} @@ -26137,7 +27468,6 @@ packages: resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} engines: {node: '>=0.4.0'} hasBin: true - dev: false /acorn@8.7.1: resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} @@ -26820,7 +28150,7 @@ packages: resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} engines: {node: '>=4'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 /astral-regex@1.0.0: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} @@ -26909,8 +28239,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.21.10 + caniuse-lite: 1.0.30001532 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -26925,8 +28255,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.21.10 + caniuse-lite: 1.0.30001532 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -26934,12 +28264,28 @@ packages: postcss-value-parser: 4.2.0 dev: false + /autoprefixer@10.4.8(postcss@8.4.29): + resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.10 + caniuse-lite: 1.0.30001532 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /autoprefixer@9.8.8: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.21.10 + caniuse-lite: 1.0.30001532 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -27027,12 +28373,32 @@ packages: resolution: {integrity: sha512-J20PbRmSy38jW9TmqGEwd8xINUCuOm2I2bPQ1sK8LWLxKTbhPh0H48DJ27ff2qmSXvI30WYV0tKzSmGb+oCsXg==} dev: false - /babel-core@7.0.0-bridge.0(@babel/core@7.22.9): + /babel-core@7.0.0-bridge.0(@babel/core@7.22.17): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 + + /babel-jest@27.5.1(@babel/core@7.22.17): + resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.22.17 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__core': 7.1.19 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 27.5.1(@babel/core@7.22.17) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - metro + - supports-color + dev: false /babel-jest@27.5.1(@babel/core@7.22.9): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} @@ -27054,17 +28420,17 @@ packages: - supports-color dev: false - /babel-jest@28.1.3(@babel/core@7.22.8)(metro@0.76.0): + /babel-jest@28.1.3(@babel/core@7.22.17): resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.8 - '@jest/transform': 28.1.3(metro@0.76.0) + '@babel/core': 7.22.17 + '@jest/transform': 28.1.3 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3(@babel/core@7.22.8) + babel-preset-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -27073,17 +28439,17 @@ packages: - supports-color dev: true - /babel-jest@28.1.3(@babel/core@7.22.9): + /babel-jest@28.1.3(@babel/core@7.22.17)(metro@0.76.0): resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.9 - '@jest/transform': 28.1.3 + '@babel/core': 7.22.17 + '@jest/transform': 28.1.3(metro@0.76.0) '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3(@babel/core@7.22.9) + babel-preset-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -27092,17 +28458,17 @@ packages: - supports-color dev: true - /babel-jest@28.1.3(@babel/core@7.22.9)(metro@0.76.0): + /babel-jest@28.1.3(@babel/core@7.22.8)(metro@0.76.0): resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.8 '@jest/transform': 28.1.3(metro@0.76.0) '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3(@babel/core@7.22.9) + babel-preset-jest: 28.1.3(@babel/core@7.22.8) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -27111,17 +28477,17 @@ packages: - supports-color dev: true - /babel-jest@29.6.2(@babel/core@7.22.9): + /babel-jest@29.6.2(@babel/core@7.22.17): resolution: {integrity: sha512-BYCzImLos6J3BH/+HvUCHG1dTf2MzmAB4jaVxHV+29RZLjR29XuYTmsf2sdDwkrb+FczkGo3kOhE7ga6sI0P4A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/transform': 29.6.2 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.5.0(@babel/core@7.22.9) + babel-preset-jest: 29.5.0(@babel/core@7.22.17) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -27130,22 +28496,37 @@ packages: - supports-color dev: true - /babel-loader@8.2.5(@babel/core@7.22.8)(webpack@5.72.1): + /babel-loader@8.2.5(@babel/core@7.22.17)(webpack@4.46.0): resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.17 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.72.1(esbuild@0.19.0) + webpack: 4.46.0 dev: true - /babel-loader@8.2.5(@babel/core@7.22.8)(webpack@5.76.1): + /babel-loader@8.2.5(@babel/core@7.22.17)(webpack@5.88.2): + resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.22.17 + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.88.2 + dev: false + + /babel-loader@8.2.5(@babel/core@7.22.8)(webpack@5.72.1): resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: @@ -27157,10 +28538,10 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.76.1(metro@0.76.0) + webpack: 5.72.1(esbuild@0.19.3) dev: true - /babel-loader@8.2.5(@babel/core@7.22.8)(webpack@5.88.2): + /babel-loader@8.2.5(@babel/core@7.22.8)(webpack@5.76.1): resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: @@ -27172,22 +28553,22 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.88.2(webpack-cli@4.10.0) + webpack: 5.76.1(metro@0.76.0) dev: true - /babel-loader@8.2.5(@babel/core@7.22.9)(webpack@4.46.0): + /babel-loader@8.2.5(@babel/core@7.22.8)(webpack@5.88.2): resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.8 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 4.46.0 + webpack: 5.88.2(webpack-cli@4.10.0) dev: true /babel-loader@8.2.5(@babel/core@7.22.9)(webpack@5.76.1): @@ -27218,6 +28599,7 @@ packages: make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.88.2(metro@0.76.0) + dev: true /babel-plugin-add-react-displayname@0.0.5: resolution: {integrity: sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=} @@ -27239,8 +28621,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.17.10 - '@babel/traverse': 7.22.8 + '@babel/plugin-syntax-typescript': 7.22.5 + '@babel/traverse': 7.22.17 transitivePeerDependencies: - supports-color dev: false @@ -27248,13 +28630,13 @@ packages: /babel-plugin-emotion@10.2.2: resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} dependencies: - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.4 '@emotion/serialize': 0.11.16 babel-plugin-macros: 2.8.0 babel-plugin-syntax-jsx: 6.18.0 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 escape-string-regexp: 1.0.5 find-root: 1.1.0 source-map: 0.5.7 @@ -27281,8 +28663,8 @@ packages: resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/types': 7.22.17 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: false @@ -27291,8 +28673,8 @@ packages: resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/types': 7.22.17 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -27301,8 +28683,8 @@ packages: resolution: {integrity: sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/types': 7.22.17 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -27363,6 +28745,18 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.17): + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.17 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.8): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -27386,14 +28780,15 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: false - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.22.9): + /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.22.17): resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.22.17) core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color @@ -27404,7 +28799,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-define-polyfill-provider': 0.3.1 + '@babel/helper-define-polyfill-provider': 0.3.3 + core-js-compat: 3.30.0 + transitivePeerDependencies: + - supports-color + + /babel-plugin-polyfill-corejs3@0.5.2(@babel/core@7.22.17): + resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color @@ -27415,7 +28821,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.8) + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.8) core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color @@ -27426,7 +28832,19 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.9) + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9) + core-js-compat: 3.30.0 + transitivePeerDependencies: + - supports-color + dev: false + + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.22.17): + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color @@ -27452,13 +28870,24 @@ packages: core-js-compat: 3.30.0 transitivePeerDependencies: - supports-color + dev: false /babel-plugin-polyfill-regenerator@0.3.1: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-define-polyfill-provider': 0.3.1 + '@babel/helper-define-polyfill-provider': 0.3.3 + transitivePeerDependencies: + - supports-color + + /babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.22.17): + resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) transitivePeerDependencies: - supports-color @@ -27468,7 +28897,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.8 - '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.8) + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.8) transitivePeerDependencies: - supports-color @@ -27478,7 +28907,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.9) + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9) + transitivePeerDependencies: + - supports-color + dev: false + + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.17): + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.17 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.17) transitivePeerDependencies: - supports-color @@ -27501,6 +28941,7 @@ packages: '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9) transitivePeerDependencies: - supports-color + dev: false /babel-plugin-react-docgen-typescript@1.5.1(@babel/core@7.22.8)(typescript@5.1.3): resolution: {integrity: sha512-gcC2Fw19ooW8U1AvyfuHTqvWOb6xi3IMNuuOgIjf0pfJwkuJFHsGW+JxWF1SKz4rFyQyWnQg3YkxMrJh45n7nA==} @@ -27536,7 +28977,7 @@ packages: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 @@ -27559,6 +29000,25 @@ packages: resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} dev: false + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.17): + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.17) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.17) + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.8): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: @@ -27618,7 +29078,7 @@ packages: dependencies: '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.22.8) '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) '@babel/preset-env': 7.21.4(@babel/core@7.22.8) babel-plugin-module-resolver: 4.1.0 babel-plugin-react-native-web: 0.18.12 @@ -27636,7 +29096,7 @@ packages: '@babel/plugin-proposal-object-rest-spread': 7.20.7 '@babel/plugin-syntax-class-properties': 7.12.13 '@babel/plugin-syntax-flow': 7.21.4 - '@babel/plugin-syntax-jsx': 7.18.6 + '@babel/plugin-syntax-jsx': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3 '@babel/plugin-transform-arrow-functions': 7.20.7 '@babel/plugin-transform-block-scoped-functions': 7.18.6 @@ -27649,12 +29109,12 @@ packages: '@babel/plugin-transform-function-name': 7.18.9 '@babel/plugin-transform-literals': 7.18.9 '@babel/plugin-transform-member-expression-literals': 7.18.6 - '@babel/plugin-transform-modules-commonjs': 7.21.2 + '@babel/plugin-transform-modules-commonjs': 7.22.15 '@babel/plugin-transform-object-super': 7.18.6 '@babel/plugin-transform-parameters': 7.21.3 '@babel/plugin-transform-property-literals': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.16.7 - '@babel/plugin-transform-react-jsx': 7.18.10 + '@babel/plugin-transform-react-display-name': 7.22.5 + '@babel/plugin-transform-react-jsx': 7.22.15 '@babel/plugin-transform-shorthand-properties': 7.18.6 '@babel/plugin-transform-spread': 7.20.7 '@babel/plugin-transform-template-literals': 7.18.9 @@ -27662,6 +29122,42 @@ packages: transitivePeerDependencies: - supports-color + /babel-preset-fbjs@3.4.0(@babel/core@7.22.17): + resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.17 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.17) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.17) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) + babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + transitivePeerDependencies: + - supports-color + /babel-preset-fbjs@3.4.0(@babel/core@7.22.8): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: @@ -27672,7 +29168,7 @@ packages: '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.8) '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.8) - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.8) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.8) '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.8) '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.8) @@ -27685,12 +29181,12 @@ packages: '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) @@ -27698,41 +29194,16 @@ packages: transitivePeerDependencies: - supports-color - /babel-preset-fbjs@3.4.0(@babel/core@7.22.9): - resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + /babel-preset-jest@27.5.1(@babel/core@7.22.17): + resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9) - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.9) - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.22.17 + babel-plugin-jest-hoist: 27.5.1 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.17) + dev: false /babel-preset-jest@27.5.1(@babel/core@7.22.9): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} @@ -27745,37 +29216,37 @@ packages: babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) dev: false - /babel-preset-jest@28.1.3(@babel/core@7.22.8): + /babel-preset-jest@28.1.3(@babel/core@7.22.17): resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.8 + '@babel/core': 7.22.17 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.8) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.17) dev: true - /babel-preset-jest@28.1.3(@babel/core@7.22.9): + /babel-preset-jest@28.1.3(@babel/core@7.22.8): resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.8 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.8) dev: true - /babel-preset-jest@29.5.0(@babel/core@7.22.9): + /babel-preset-jest@29.5.0(@babel/core@7.22.17): resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 babel-plugin-jest-hoist: 29.5.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.17) dev: true /babel-preset-react-app@10.0.1: @@ -27790,11 +29261,11 @@ packages: '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.9) '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.9) '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.9) '@babel/preset-env': 7.21.4(@babel/core@7.22.9) - '@babel/preset-react': 7.16.7(@babel/core@7.22.9) - '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) + '@babel/preset-react': 7.22.15(@babel/core@7.22.9) + '@babel/preset-typescript': 7.22.15(@babel/core@7.22.9) '@babel/runtime': 7.22.10 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 @@ -28466,25 +29937,25 @@ packages: picocolors: 1.0.0 dev: true - /browserslist@4.21.3: - resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} + /browserslist@4.21.10: + resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001515 - electron-to-chromium: 1.4.459 + caniuse-lite: 1.0.30001532 + electron-to-chromium: 1.4.515 node-releases: 2.0.13 - update-browserslist-db: 1.0.10(browserslist@4.21.3) + update-browserslist-db: 1.0.11(browserslist@4.21.10) - /browserslist@4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} + /browserslist@4.21.3: + resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: caniuse-lite: 1.0.30001515 electron-to-chromium: 1.4.459 node-releases: 2.0.13 - update-browserslist-db: 1.0.10(browserslist@4.21.5) + update-browserslist-db: 1.0.11(browserslist@4.21.3) /browserslist@4.21.9: resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} @@ -28911,7 +30382,7 @@ packages: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.6.1 + tslib: 2.6.2 /camelcase-css@2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} @@ -28962,14 +30433,17 @@ packages: /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.21.10 + caniuse-lite: 1.0.30001532 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 /caniuse-lite@1.0.30001515: resolution: {integrity: sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA==} + /caniuse-lite@1.0.30001532: + resolution: {integrity: sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==} + /canvas-confetti@1.6.0: resolution: {integrity: sha512-ej+w/m8Jzpv9Z7W7uJZer14Ke8P2ogsjg4ZMGIuq4iqUOqY2Jq8BNW42iGmNfRwREaaEfFIczLuZZiEVSYNHAA==} dev: false @@ -29230,7 +30704,7 @@ packages: normalize-path: 3.0.0 readdirp: 3.6.0 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 /chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} @@ -30258,6 +31732,9 @@ packages: dependencies: safe-buffer: 5.1.2 + /convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} @@ -30651,17 +32128,28 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /css-blank-pseudo@3.0.3(postcss@8.4.29): + resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /css-color-keywords@1.0.0: resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} engines: {node: '>=4'} - /css-declaration-sorter@6.3.0(postcss@8.4.21): + /css-declaration-sorter@6.3.0(postcss@8.4.29): resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 /css-functions-list@3.1.0: resolution: {integrity: sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==} @@ -30690,6 +32178,17 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /css-has-pseudo@3.0.4(postcss@8.4.29): + resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /css-in-js-utils@2.0.1: resolution: {integrity: sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==} dependencies: @@ -30725,13 +32224,13 @@ packages: peerDependencies: webpack: ^4.27.0 || ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.21) + icss-utils: 5.1.0(postcss@8.4.29) loader-utils: 2.0.4 - 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: 8.4.29 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) + postcss-modules-scope: 3.0.0(postcss@8.4.29) + postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.5.4 @@ -30744,12 +32243,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - 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) + icss-utils: 5.1.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) + postcss-modules-scope: 3.0.0(postcss@8.4.29) + postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.76.1 @@ -30761,12 +32260,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - 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) + icss-utils: 5.1.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) + postcss-modules-scope: 3.0.0(postcss@8.4.29) + postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.88.2(metro@0.76.0) @@ -30790,9 +32289,9 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.12(postcss@8.4.21) + cssnano: 5.1.12(postcss@8.4.29) jest-worker: 27.5.1(metro@0.76.0) - postcss: 8.4.21 + postcss: 8.4.29 schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 @@ -30820,9 +32319,9 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.12(postcss@8.4.21) + cssnano: 5.1.12(postcss@8.4.29) jest-worker: 27.5.1 - postcss: 8.4.21 + postcss: 8.4.29 schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 @@ -30850,9 +32349,9 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.12(postcss@8.4.21) + cssnano: 5.1.12(postcss@8.4.29) jest-worker: 27.5.1 - postcss: 8.4.21 + postcss: 8.4.29 schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 @@ -30881,6 +32380,16 @@ packages: postcss: 8.4.21 dev: false + /css-prefers-color-scheme@6.0.3(postcss@8.4.29): + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + dev: false + /css-select-base-adapter@0.1.1: resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} @@ -30923,7 +32432,6 @@ packages: camelize: 1.0.0 css-color-keywords: 1.0.0 postcss-value-parser: 4.2.0 - dev: false /css-tree@1.0.0-alpha.37: resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} @@ -30963,60 +32471,60 @@ packages: resolution: {integrity: sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==} dev: true - /cssnano-preset-default@5.2.12(postcss@8.4.21): + /cssnano-preset-default@5.2.12(postcss@8.4.29): resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.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.0(postcss@8.4.21) - postcss-convert-values: 5.1.2(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.6(postcss@8.4.21) - postcss-merge-rules: 5.1.2(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.3(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.0(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.0(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): + css-declaration-sorter: 6.3.0(postcss@8.4.29) + cssnano-utils: 3.1.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-calc: 8.2.4(postcss@8.4.29) + postcss-colormin: 5.3.0(postcss@8.4.29) + postcss-convert-values: 5.1.2(postcss@8.4.29) + postcss-discard-comments: 5.1.2(postcss@8.4.29) + postcss-discard-duplicates: 5.1.0(postcss@8.4.29) + postcss-discard-empty: 5.1.1(postcss@8.4.29) + postcss-discard-overridden: 5.1.0(postcss@8.4.29) + postcss-merge-longhand: 5.1.6(postcss@8.4.29) + postcss-merge-rules: 5.1.2(postcss@8.4.29) + postcss-minify-font-values: 5.1.0(postcss@8.4.29) + postcss-minify-gradients: 5.1.1(postcss@8.4.29) + postcss-minify-params: 5.1.3(postcss@8.4.29) + postcss-minify-selectors: 5.2.1(postcss@8.4.29) + postcss-normalize-charset: 5.1.0(postcss@8.4.29) + postcss-normalize-display-values: 5.1.0(postcss@8.4.29) + postcss-normalize-positions: 5.1.1(postcss@8.4.29) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.29) + postcss-normalize-string: 5.1.0(postcss@8.4.29) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.29) + postcss-normalize-unicode: 5.1.0(postcss@8.4.29) + postcss-normalize-url: 5.1.0(postcss@8.4.29) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.29) + postcss-ordered-values: 5.1.3(postcss@8.4.29) + postcss-reduce-initial: 5.1.0(postcss@8.4.29) + postcss-reduce-transforms: 5.1.0(postcss@8.4.29) + postcss-svgo: 5.1.0(postcss@8.4.29) + postcss-unique-selectors: 5.1.1(postcss@8.4.29) + + /cssnano-utils@3.1.0(postcss@8.4.29): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 - /cssnano@5.1.12(postcss@8.4.21): + /cssnano@5.1.12(postcss@8.4.29): resolution: {integrity: sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.12(postcss@8.4.21) - lilconfig: 2.0.6 - postcss: 8.4.21 + cssnano-preset-default: 5.2.12(postcss@8.4.29) + lilconfig: 2.1.0 + postcss: 8.4.29 yaml: 1.10.2 /csso@4.2.0: @@ -32246,7 +33754,7 @@ packages: vinyl-fs: 3.0.3 yargs: 15.4.1 optionalDependencies: - '@vue/compiler-sfc': 3.2.33 + '@vue/compiler-sfc': 3.3.4 vue-template-compiler: 2.7.14 transitivePeerDependencies: - supports-color @@ -32360,7 +33868,7 @@ packages: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.6.1 + tslib: 2.6.2 /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} @@ -32414,7 +33922,7 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-is: 17.0.2 - tslib: 2.6.1 + tslib: 2.6.2 dev: true /dtrace-provider@0.8.8: @@ -32582,6 +34090,9 @@ packages: /electron-to-chromium@1.4.459: resolution: {integrity: sha512-XXRS5NFv8nCrBL74Rm3qhJjA2VCsRFx0OjHKBMPI0otij56aun8UWiKTDABmd5/7GTR021pA4wivs+Ri6XCElg==} + /electron-to-chromium@1.4.515: + resolution: {integrity: sha512-VTq6vjk3kCfG2qdzQRd/i9dIyVVm0dbtZIgFzrLgfB73mXDQT2HPKVRc1EoZcAVUv9XhXAu08DWqJuababdGGg==} + /electron-updater@5.3.0: resolution: {integrity: sha512-iKEr7yQBcvnQUPnSDYGSWC9t0eF2YbZWeYYYZzYxdl+HiRejXFENjYMnYjoOm2zxyD6Cr2JTHZhp9pqxiXuCOw==} dependencies: @@ -32725,7 +34236,7 @@ packages: resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==} engines: {node: '>=10.13.0'} dependencies: - graceful-fs: 4.2.11 + graceful-fs: 4.2.10 tapable: 2.2.1 /enhanced-resolve@5.14.1: @@ -33046,34 +34557,34 @@ packages: '@esbuild/win32-x64': 0.18.20 dev: true - /esbuild@0.19.0: - resolution: {integrity: sha512-i7i8TP4vuG55bKeLyqqk5sTPu1ZjPH3wkcLvAj/0X/222iWFo3AJUYRKjbOoY6BWFMH3teizxHEdV9Su5ESl0w==} + /esbuild@0.19.3: + resolution: {integrity: sha512-UlJ1qUUA2jL2nNib1JTSkifQTcYTroFqRjwCFW4QYEKEsixXD5Tik9xML7zh2gTxkYTBKGHNH9y7txMwVyPbjw==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.19.0 - '@esbuild/android-arm64': 0.19.0 - '@esbuild/android-x64': 0.19.0 - '@esbuild/darwin-arm64': 0.19.0 - '@esbuild/darwin-x64': 0.19.0 - '@esbuild/freebsd-arm64': 0.19.0 - '@esbuild/freebsd-x64': 0.19.0 - '@esbuild/linux-arm': 0.19.0 - '@esbuild/linux-arm64': 0.19.0 - '@esbuild/linux-ia32': 0.19.0 - '@esbuild/linux-loong64': 0.19.0 - '@esbuild/linux-mips64el': 0.19.0 - '@esbuild/linux-ppc64': 0.19.0 - '@esbuild/linux-riscv64': 0.19.0 - '@esbuild/linux-s390x': 0.19.0 - '@esbuild/linux-x64': 0.19.0 - '@esbuild/netbsd-x64': 0.19.0 - '@esbuild/openbsd-x64': 0.19.0 - '@esbuild/sunos-x64': 0.19.0 - '@esbuild/win32-arm64': 0.19.0 - '@esbuild/win32-ia32': 0.19.0 - '@esbuild/win32-x64': 0.19.0 + '@esbuild/android-arm': 0.19.3 + '@esbuild/android-arm64': 0.19.3 + '@esbuild/android-x64': 0.19.3 + '@esbuild/darwin-arm64': 0.19.3 + '@esbuild/darwin-x64': 0.19.3 + '@esbuild/freebsd-arm64': 0.19.3 + '@esbuild/freebsd-x64': 0.19.3 + '@esbuild/linux-arm': 0.19.3 + '@esbuild/linux-arm64': 0.19.3 + '@esbuild/linux-ia32': 0.19.3 + '@esbuild/linux-loong64': 0.19.3 + '@esbuild/linux-mips64el': 0.19.3 + '@esbuild/linux-ppc64': 0.19.3 + '@esbuild/linux-riscv64': 0.19.3 + '@esbuild/linux-s390x': 0.19.3 + '@esbuild/linux-x64': 0.19.3 + '@esbuild/netbsd-x64': 0.19.3 + '@esbuild/openbsd-x64': 0.19.3 + '@esbuild/sunos-x64': 0.19.3 + '@esbuild/win32-arm64': 0.19.3 + '@esbuild/win32-ia32': 0.19.3 + '@esbuild/win32-x64': 0.19.3 dev: true /escalade@3.1.1: @@ -34011,9 +35522,9 @@ packages: resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==} 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) - eslint-visitor-keys: 3.4.1 + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) + eslint-visitor-keys: 3.4.3 /espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} @@ -34022,7 +35533,6 @@ packages: acorn: 8.10.0 acorn-jsx: 5.3.2(acorn@8.10.0) eslint-visitor-keys: 3.4.3 - dev: false /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} @@ -34053,8 +35563,8 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 c8: 7.11.2 transitivePeerDependencies: - supports-color @@ -35693,7 +37203,7 @@ packages: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} engines: {node: '>= 12'} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /file-system-cache@1.0.5: @@ -36029,7 +37539,7 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 chalk: 2.4.2 eslint: 8.41.0 micromatch: 3.1.10 @@ -36057,7 +37567,7 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 '@types/json-schema': 7.0.12 chalk: 4.1.2 chokidar: 3.5.3 @@ -36090,7 +37600,7 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 '@types/json-schema': 7.0.12 chalk: 4.1.2 chokidar: 3.5.3 @@ -36122,7 +37632,7 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 '@types/json-schema': 7.0.12 chalk: 4.1.2 chokidar: 3.5.3 @@ -36154,7 +37664,7 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 '@types/json-schema': 7.0.12 chalk: 4.1.2 chokidar: 3.5.3 @@ -36361,7 +37871,7 @@ packages: engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.0 @@ -36425,6 +37935,14 @@ packages: engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true + dev: true + optional: true + + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true optional: true /fstream@1.0.12: @@ -37067,7 +38585,7 @@ packages: 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.6.1 + tslib: 2.6.2 /graphql@15.8.0: resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} @@ -37919,13 +39437,13 @@ packages: postcss: 7.0.39 dev: true - /icss-utils@5.1.0(postcss@8.4.21): + /icss-utils@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 /idb@7.0.1: resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==} @@ -38870,6 +40388,14 @@ packages: ws: 7.5.7 dev: false + /isomorphic-ws@4.0.1(ws@7.5.9): + resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} + peerDependencies: + ws: '*' + dependencies: + ws: 7.5.9 + dev: false + /isotope-horizontal@2.0.1: resolution: {integrity: sha512-rTm8K3d3Xt/pQBOdZj06IJpNkAjL+my4SWQLxJhjnxWTdDEX+r5qBsdstOou9kIvJFkgLYaR+YOog+7en6kHXw==} dependencies: @@ -38898,7 +40424,7 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@babel/parser': 7.22.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -38975,10 +40501,10 @@ packages: delay: 5.0.0 es6-promisify: 5.0.0 eyes: 0.1.8 - isomorphic-ws: 4.0.1(ws@7.5.7) + isomorphic-ws: 4.0.1(ws@7.5.9) json-stringify-safe: 5.0.1 uuid: 8.3.2 - ws: 7.5.7 + ws: 7.5.9 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -39469,10 +40995,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1(@babel/core@7.22.9) + babel-jest: 27.5.1(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39513,10 +41039,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39552,11 +41078,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.15.11 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39592,11 +41118,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.15.11 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39633,11 +41159,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.15.3 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39674,11 +41200,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.15.3 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39715,11 +41241,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.15.7 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39755,11 +41281,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.16.19 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39795,11 +41321,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3(metro@0.76.0) '@jest/types': 28.1.3 '@types/node': 18.16.19 - babel-jest: 28.1.3(@babel/core@7.22.9)(metro@0.76.0) + babel-jest: 28.1.3(@babel/core@7.22.17)(metro@0.76.0) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39836,11 +41362,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.16.19 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39877,11 +41403,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.16.19 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39918,11 +41444,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 20.2.5 - babel-jest: 28.1.3(@babel/core@7.22.9) + babel-jest: 28.1.3(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39958,10 +41484,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 28.1.3(metro@0.76.0) '@jest/types': 28.1.3 - babel-jest: 28.1.3(@babel/core@7.22.9)(metro@0.76.0) + babel-jest: 28.1.3(@babel/core@7.22.17)(metro@0.76.0) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -39998,10 +41524,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 29.6.2 '@jest/types': 29.6.1 - babel-jest: 29.6.2(@babel/core@7.22.9) + babel-jest: 29.6.2(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -40038,11 +41564,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 '@jest/test-sequencer': 29.6.2 '@jest/types': 29.6.1 '@types/node': 18.16.19 - babel-jest: 29.6.2(@babel/core@7.22.9) + babel-jest: 29.6.2(@babel/core@7.22.17) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.3.0 @@ -40326,7 +41852,7 @@ packages: sane: 4.1.0 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro - supports-color @@ -40350,7 +41876,7 @@ packages: sane: 4.1.0 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro - supports-color @@ -40373,7 +41899,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro dev: false @@ -40395,7 +41921,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro dev: true @@ -40416,7 +41942,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro dev: true @@ -40437,7 +41963,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro dev: true @@ -40458,7 +41984,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro dev: true @@ -40479,7 +42005,7 @@ packages: micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro dev: true @@ -40620,7 +42146,7 @@ packages: resolution: {integrity: sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 '@jest/types': 29.6.1 '@types/stack-utils': 2.0.1 chalk: 4.1.2 @@ -41096,16 +42622,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.17) + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.17) chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.11 @@ -41128,10 +42654,10 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/core': 7.22.9 - '@babel/generator': 7.22.5 - '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 + '@babel/generator': 7.22.9 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.15 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 @@ -41160,10 +42686,10 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/core': 7.22.9 - '@babel/generator': 7.22.5 - '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 + '@babel/generator': 7.22.9 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.15 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3(metro@0.76.0) '@jest/types': 28.1.3 @@ -41191,15 +42717,15 @@ packages: resolution: {integrity: sha512-1OdjqvqmRdGNvWXr/YZHuyhh5DeaLp1p/F8Tht/MrMw4Kr1Uu/j4lRG+iKl1DAqUJDWxtQBMk41Lnf/JETYBRA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-syntax-typescript': 7.17.10(@babel/core@7.22.9) - '@babel/types': 7.22.5 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.17) + '@babel/types': 7.22.17 '@jest/expect-utils': 29.6.2 '@jest/transform': 29.6.2 '@jest/types': 29.6.1 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.17) chalk: 4.1.2 expect: 29.6.2 graceful-fs: 4.2.11 @@ -41247,7 +42773,7 @@ packages: '@types/node': 18.16.19 chalk: 4.1.2 ci-info: 3.3.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 picomatch: 2.3.1 /jest-util@29.5.0: @@ -41965,16 +43491,16 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) - '@babel/preset-flow': 7.16.7(@babel/core@7.22.9) - '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) - '@babel/register': 7.17.7(@babel/core@7.22.9) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/parser': 7.22.16 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) + '@babel/preset-flow': 7.16.7(@babel/core@7.22.17) + '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/register': 7.17.7(@babel/core@7.22.17) + babel-core: 7.0.0-bridge.0(@babel/core@7.22.17) chalk: 4.1.2 flow-parser: 0.185.2 graceful-fs: 4.2.11 @@ -41993,17 +43519,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/parser': 7.22.16 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) '@babel/preset-env': 7.17.10(@babel/core@7.22.8) - '@babel/preset-flow': 7.16.7(@babel/core@7.22.9) - '@babel/preset-typescript': 7.16.7(@babel/core@7.22.9) - '@babel/register': 7.17.7(@babel/core@7.22.9) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) + '@babel/preset-flow': 7.16.7(@babel/core@7.22.17) + '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/register': 7.17.7(@babel/core@7.22.17) + babel-core: 7.0.0-bridge.0(@babel/core@7.22.17) chalk: 4.1.2 flow-parser: 0.185.2 graceful-fs: 4.2.11 @@ -42026,7 +43552,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.8.2 + acorn: 8.10.0 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 @@ -42050,7 +43576,7 @@ packages: whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 - ws: 7.5.7 + ws: 7.5.9 xml-name-validator: 3.0.0 transitivePeerDependencies: - bufferutil @@ -42068,7 +43594,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.8.2 + acorn: 8.10.0 acorn-globals: 6.0.0 cssom: 0.5.0 cssstyle: 2.3.0 @@ -42110,7 +43636,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.8.2 + acorn: 8.10.0 acorn-globals: 6.0.0 cssom: 0.5.0 cssstyle: 2.3.0 @@ -42152,7 +43678,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.8.2 + acorn: 8.10.0 acorn-globals: 7.0.1 cssom: 0.5.0 cssstyle: 2.3.0 @@ -42639,8 +44165,8 @@ packages: /konan@2.1.1: resolution: {integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==} dependencies: - '@babel/parser': 7.22.7 - '@babel/traverse': 7.22.8 + '@babel/parser': 7.22.16 + '@babel/traverse': 7.22.17 transitivePeerDependencies: - supports-color dev: true @@ -42812,14 +44338,14 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 - /libsodium-sumo@0.7.11: - resolution: {integrity: sha512-bY+7ph7xpk51Ez2GbE10lXAQ5sJma6NghcIDaSPbM/G9elfrjLa0COHl/7P6Wb/JizQzl5UQontOOP1z0VwbLA==} + /libsodium-sumo@0.7.13: + resolution: {integrity: sha512-zTGdLu4b9zSNLfovImpBCbdAA4xkpkZbMnSQjP8HShyOutnGjRHmSOKlsylh1okao6QhLiz7nG98EGn+04cZjQ==} dev: false - /libsodium-wrappers-sumo@0.7.11: - resolution: {integrity: sha512-DGypHOmJbB1nZn89KIfGOAkDgfv5N6SBGC3Qvmy/On0P0WD1JQvNRS/e3UL3aFF+xC0m+MYz5M+MnRnK2HMrKQ==} + /libsodium-wrappers-sumo@0.7.13: + resolution: {integrity: sha512-lz4YdplzDRh6AhnLGF2Dj2IUj94xRN6Bh8T0HLNwzYGwPehQJX6c7iYVrFUPZ3QqxE0bqC+K0IIqqZJYWumwSQ==} dependencies: - libsodium-sumo: 0.7.11 + libsodium-sumo: 0.7.13 dev: false /libsodium-wrappers@0.7.10: @@ -42846,17 +44372,17 @@ packages: /lilconfig@2.0.6: resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} engines: {node: '>=10'} + dev: false /lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} - dev: true /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lint-staged@14.0.0: - resolution: {integrity: sha512-0tLf0pqZYkar/wu3nTctk4rVIG+d7PanDYv4/IQR4qwdqfQkTDziLRFnqMcLuLBTuUqmcLwsHPD2EjQ18d/oaA==} + /lint-staged@14.0.1: + resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==} engines: {node: ^16.14.0 || >=18.0.0} hasBin: true dependencies: @@ -43157,7 +44683,7 @@ packages: dev: false /lodash.flatten@4.4.0: - resolution: {integrity: sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=} + resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} dev: false /lodash.get@4.4.2: @@ -43311,7 +44837,7 @@ packages: is-unicode-supported: 0.1.0 /log-update@2.3.0: - resolution: {integrity: sha1-iDKP19HOeTiykoN0bwsbwSayRwg=} + resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} engines: {node: '>=4'} dependencies: ansi-escapes: 3.2.0 @@ -43410,7 +44936,7 @@ packages: /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 /lowercase-keys@1.0.1: resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} @@ -43621,6 +45147,7 @@ packages: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: sourcemap-codec: 1.4.8 + dev: false /magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} @@ -43629,6 +45156,15 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 dev: true + /magic-string@0.30.3: + resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==} + engines: {node: '>=12'} + requiresBuild: true + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + optional: true + /make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} @@ -44292,7 +45828,7 @@ packages: /metro-babel-transformer@0.67.0: resolution: {integrity: sha512-SBqc4nq/dgsPNFm+mpWcQQzJaXnh0nrfz2pSnZC4i6zMtIakrTWb8SQ78jOU1FZVEZ3nu9xCYVHS9Tbr/LoEuw==} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 hermes-parser: 0.5.0 metro-source-map: 0.67.0 nullthrows: 1.1.1 @@ -44303,7 +45839,7 @@ packages: /metro-babel-transformer@0.73.9: resolution: {integrity: sha512-DlYwg9wwYIZTHtic7dyD4BP0SDftoltZ3clma76nHu43blMWsCnrImHeHsAVne3XsQ+RJaSRxhN5nkG2VyVHwA==} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.22.17 hermes-parser: 0.8.0 metro-source-map: 0.73.9 nullthrows: 1.1.1 @@ -44554,7 +46090,7 @@ packages: nullthrows: 1.1.1 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro - supports-color @@ -44577,7 +46113,7 @@ packages: nullthrows: 1.1.1 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - metro - supports-color @@ -44599,7 +46135,7 @@ packages: dependencies: connect: 3.7.0 debug: 2.6.9 - ws: 7.5.7 + ws: 7.5.9 yargs: 15.4.1 transitivePeerDependencies: - bufferutil @@ -44613,7 +46149,7 @@ packages: dependencies: connect: 3.7.0 debug: 2.6.9 - ws: 7.5.7 + ws: 7.5.9 yargs: 17.7.2 transitivePeerDependencies: - bufferutil @@ -44664,6 +46200,55 @@ packages: dependencies: uglify-es: 3.3.9 + /metro-react-native-babel-preset@0.67.0(@babel/core@7.22.17): + resolution: {integrity: sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.22.17 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.17) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-object-assign': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.17) + '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.17) + '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.17) + '@babel/template': 7.22.15 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: true + /metro-react-native-babel-preset@0.67.0(@babel/core@7.22.8): resolution: {integrity: sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig==} peerDependencies: @@ -44692,11 +46277,11 @@ packages: '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.8) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-object-assign': 7.16.7(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.8) '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.8) @@ -44705,58 +46290,9 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.8) - '@babel/template': 7.22.5 - react-refresh: 0.4.3 - transitivePeerDependencies: - - supports-color - dev: true - - /metro-react-native-babel-preset@0.67.0(@babel/core@7.22.9): - resolution: {integrity: sha512-tgTG4j0SKwLHbLRELMmgkgkjV1biYkWlGGKOmM484/fJC6bpDikdaFhfjsyE+W+qt7I5szbCPCickMTNQ+zwig==} - peerDependencies: - '@babel/core': '*' - dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) - '@babel/plugin-transform-object-assign': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.9) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.9) - '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.9) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.9) - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color @@ -44789,11 +46325,11 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.8) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.8) '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.8) @@ -44801,9 +46337,9 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.8) - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color @@ -44814,7 +46350,7 @@ packages: peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.21.0 + '@babel/core': 7.22.17 '@babel/plugin-proposal-async-generator-functions': 7.20.7 '@babel/plugin-proposal-class-properties': 7.18.6 '@babel/plugin-proposal-export-default-from': 7.16.7 @@ -44836,11 +46372,11 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7 '@babel/plugin-transform-function-name': 7.18.9 '@babel/plugin-transform-literals': 7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.21.2 + '@babel/plugin-transform-modules-commonjs': 7.22.15 '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5 '@babel/plugin-transform-parameters': 7.21.3 - '@babel/plugin-transform-react-display-name': 7.16.7 - '@babel/plugin-transform-react-jsx': 7.18.10 + '@babel/plugin-transform-react-display-name': 7.22.5 + '@babel/plugin-transform-react-jsx': 7.22.15 '@babel/plugin-transform-react-jsx-self': 7.18.6 '@babel/plugin-transform-react-jsx-source': 7.19.6 '@babel/plugin-transform-runtime': 7.17.10 @@ -44848,9 +46384,55 @@ packages: '@babel/plugin-transform-spread': 7.20.7 '@babel/plugin-transform-sticky-regex': 7.18.6 '@babel/plugin-transform-template-literals': 7.18.9 - '@babel/plugin-transform-typescript': 7.16.8 + '@babel/plugin-transform-typescript': 7.22.15 '@babel/plugin-transform-unicode-regex': 7.18.6 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + + /metro-react-native-babel-preset@0.73.9(@babel/core@7.22.17): + resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.22.17 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.17) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.17) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.17) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.17) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.17) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.17) + '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.17) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.17) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.17) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.17) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.17) + '@babel/template': 7.22.15 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color @@ -44882,11 +46464,11 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.8) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.8) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.8) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.8) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.8) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.8) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.8) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.8) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.8) '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.8) @@ -44894,55 +46476,9 @@ packages: '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.8) '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.8) '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.8) - '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.8) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.8) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.8) - '@babel/template': 7.22.5 - react-refresh: 0.4.3 - transitivePeerDependencies: - - supports-color - - /metro-react-native-babel-preset@0.73.9(@babel/core@7.22.9): - resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} - peerDependencies: - '@babel/core': '*' - dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.22.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.9) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.16.7(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.22.9) - '@babel/plugin-transform-runtime': 7.17.10(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.9) - '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.22.9) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.9) - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color @@ -45016,7 +46552,7 @@ packages: peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.21.0 + '@babel/core': 7.22.17 babel-preset-fbjs: 3.4.0 hermes-parser: 0.8.0 metro-babel-transformer: 0.73.9 @@ -45098,8 +46634,8 @@ packages: /metro-source-map@0.67.0: resolution: {integrity: sha512-yxypInsRo3SfS00IgTuL6a2W2tfwLY//vA2E+GeqGBF5zTbJZAhwNGIEl8S87XXZhwzJcxf5/8LjJC1YDzabww==} dependencies: - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 invariant: 2.2.4 metro-symbolicate: 0.67.0 nullthrows: 1.1.1 @@ -45114,7 +46650,7 @@ packages: resolution: {integrity: sha512-l4VZKzdqafipriETYR6lsrwtavCF1+CMhCOY9XbyWeTrpGSNgJQgdeJpttzEZTHQQTLR0csQo0nD1ef3zEP6IQ==} dependencies: '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/types': 7.22.15 invariant: 2.2.4 metro-symbolicate: 0.73.9 nullthrows: 1.1.1 @@ -45185,10 +46721,10 @@ packages: /metro-transform-plugins@0.67.0: resolution: {integrity: sha512-DQFoSDIJdTMPDTUlKaCNJjEXiHGwFNneAF9wDSJ3luO5gigM7t7MuSaPzF4hpjmfmcfPnRhP6AEn9jcza2Sh8Q==} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -45197,10 +46733,10 @@ packages: /metro-transform-plugins@0.73.9: resolution: {integrity: sha512-r9NeiqMngmooX2VOKLJVQrMuV7PAydbqst5bFhdVBPcFpZkxxqyzjzo+kzrszGy2UpSQBZr2P1L6OMjLHwQwfQ==} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -45225,11 +46761,11 @@ packages: metro-minify-terser: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/types': 7.22.17 + babel-preset-fbjs: 3.4.0(@babel/core@7.22.17) metro: 0.67.0 metro-babel-transformer: 0.67.0 metro-cache: 0.67.0(metro@0.67.0) @@ -45253,11 +46789,11 @@ packages: metro-minify-terser: optional: true dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/types': 7.22.17 + babel-preset-fbjs: 3.4.0(@babel/core@7.22.17) metro: 0.73.9 metro-babel-transformer: 0.73.9 metro-cache: 0.73.9 @@ -45334,13 +46870,13 @@ packages: resolution: {integrity: sha512-DwuBGAFcAivoac/swz8Lp7Y5Bcge1tzT7T6K0nf1ubqJP8YzBUtyR4pkjEYVUzVu/NZf7O54kHSPVu1ibYzOBQ==} hasBin: true dependencies: - '@babel/code-frame': 7.22.5 - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 absolute-path: 0.0.0 accepts: 1.3.8 async: 2.6.4 @@ -45366,7 +46902,7 @@ packages: metro-hermes-compiler: 0.67.0 metro-inspector-proxy: 0.67.0 metro-minify-uglify: 0.67.0 - metro-react-native-babel-preset: 0.67.0(@babel/core@7.22.9) + metro-react-native-babel-preset: 0.67.0(@babel/core@7.22.17) metro-resolver: 0.67.0 metro-runtime: 0.67.0 metro-source-map: 0.67.0 @@ -45383,7 +46919,7 @@ packages: strip-ansi: 6.0.1 temp: 0.8.3 throat: 5.0.0 - ws: 7.5.7 + ws: 7.5.9 yargs: 15.4.1 transitivePeerDependencies: - bufferutil @@ -45397,13 +46933,13 @@ packages: resolution: {integrity: sha512-BlYbPmTF60hpetyNdKhdvi57dSqutb+/oK0u3ni4emIh78PiI0axGo7RfdsZ/mn3saASXc94tDbpC5yn7+NpEg==} hasBin: true dependencies: - '@babel/code-frame': 7.22.5 - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8 - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 + '@babel/parser': 7.22.16 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.17 + '@babel/types': 7.22.17 absolute-path: 0.0.0 accepts: 1.3.8 async: 3.2.3 @@ -45429,7 +46965,7 @@ packages: 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.22.9) + metro-react-native-babel-preset: 0.73.9(@babel/core@7.22.17) metro-resolver: 0.73.9 metro-runtime: 0.73.9 metro-source-map: 0.73.9 @@ -45445,7 +46981,7 @@ packages: strip-ansi: 6.0.1 temp: 0.8.3 throat: 5.0.0 - ws: 7.5.7 + ws: 7.5.9 yargs: 17.7.2 transitivePeerDependencies: - bufferutil @@ -45722,8 +47258,8 @@ packages: /micromark-extension-mdxjs@1.0.1: resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) micromark-extension-mdx-expression: 1.0.8 micromark-extension-mdx-jsx: 1.0.5 micromark-extension-mdx-md: 1.0.1 @@ -46448,7 +47984,6 @@ packages: resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - dev: false /nanomatch@1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} @@ -46769,7 +48304,7 @@ packages: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.6.1 + tslib: 2.6.2 /nocache@2.1.0: resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==} @@ -47711,7 +49246,7 @@ packages: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.6.1 + tslib: 2.6.2 /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -47796,7 +49331,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -47867,7 +49402,7 @@ packages: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.6.1 + tslib: 2.6.2 /pascalcase@0.1.1: resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} @@ -47893,6 +49428,7 @@ packages: /path-dirname@1.0.2: resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + requiresBuild: true dev: true /path-exists@2.1.0: @@ -48277,6 +49813,27 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.29): + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + + /postcss-browser-comments@4.0.0(browserslist@4.21.10)(postcss@8.4.29): + resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} + engines: {node: '>=8'} + peerDependencies: + browserslist: '>=4' + postcss: '>=8' + dependencies: + browserslist: 4.21.10 + postcss: 8.4.29 + dev: false + /postcss-browser-comments@4.0.0(browserslist@4.21.9)(postcss@8.4.21): resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} engines: {node: '>=8'} @@ -48298,12 +49855,12 @@ packages: postcss: 7.0.39 dev: true - /postcss-calc@8.2.4(postcss@8.4.21): + /postcss-calc@8.2.4(postcss@8.4.29): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 @@ -48327,6 +49884,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-clamp@4.1.0(postcss@8.4.29): + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} + peerDependencies: + postcss: ^8.4.6 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-color-functional-notation@4.2.4(postcss@7.0.39): resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} engines: {node: ^12 || ^14 || >=16} @@ -48347,6 +49914,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-color-functional-notation@4.2.4(postcss@8.4.29): + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-color-hex-alpha@8.0.4(postcss@7.0.39): resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} engines: {node: ^12 || ^14 || >=16} @@ -48367,6 +49944,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-color-hex-alpha@8.0.4(postcss@8.4.29): + resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-color-rebeccapurple@7.1.1(postcss@7.0.39): resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} engines: {node: ^12 || ^14 || >=16} @@ -48387,26 +49974,36 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-colormin@5.3.0(postcss@8.4.21): + /postcss-color-rebeccapurple@7.1.1(postcss@8.4.29): + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-colormin@5.3.0(postcss@8.4.29): resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.9 + browserslist: 4.21.10 caniuse-api: 3.0.0 colord: 2.9.2 - postcss: 8.4.21 + postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-convert-values@5.1.2(postcss@8.4.21): + /postcss-convert-values@5.1.2(postcss@8.4.29): resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.9 - postcss: 8.4.21 + browserslist: 4.21.10 + postcss: 8.4.29 postcss-value-parser: 4.2.0 /postcss-custom-media@8.0.2(postcss@7.0.39): @@ -48429,6 +50026,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-custom-media@8.0.2(postcss@8.4.29): + resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-custom-properties@12.1.8(postcss@7.0.39): resolution: {integrity: sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==} engines: {node: ^12 || ^14 || >=16} @@ -48449,6 +50056,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-custom-properties@12.1.8(postcss@8.4.29): + resolution: {integrity: sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-custom-selectors@6.0.3(postcss@7.0.39): resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} engines: {node: ^12 || ^14 || >=16} @@ -48469,6 +50086,16 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-custom-selectors@6.0.3(postcss@8.4.29): + resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-dir-pseudo-class@6.0.5(postcss@7.0.39): resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} engines: {node: ^12 || ^14 || >=16} @@ -48489,37 +50116,47 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-discard-comments@5.1.2(postcss@8.4.21): + /postcss-dir-pseudo-class@6.0.5(postcss@8.4.29): + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + + /postcss-discard-comments@5.1.2(postcss@8.4.29): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 - /postcss-discard-duplicates@5.1.0(postcss@8.4.21): + /postcss-discard-duplicates@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 - /postcss-discard-empty@5.1.1(postcss@8.4.21): + /postcss-discard-empty@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 - /postcss-discard-overridden@5.1.0(postcss@8.4.21): + /postcss-discard-overridden@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 /postcss-double-position-gradients@3.1.2(postcss@7.0.39): resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} @@ -48543,6 +50180,17 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-double-position-gradients@3.1.2(postcss@8.4.29): + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-env-function@4.0.6(postcss@7.0.39): resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} engines: {node: ^12 || ^14 || >=16} @@ -48563,6 +50211,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-env-function@4.0.6(postcss@8.4.29): + resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-flexbugs-fixes@4.2.1: resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} dependencies: @@ -48585,6 +50243,14 @@ packages: postcss: 8.4.21 dev: false + /postcss-flexbugs-fixes@5.0.2(postcss@8.4.29): + resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} + peerDependencies: + postcss: ^8.1.4 + dependencies: + postcss: 8.4.29 + dev: false + /postcss-focus-visible@6.0.4(postcss@7.0.39): resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} engines: {node: ^12 || ^14 || >=16} @@ -48605,6 +50271,16 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-focus-visible@6.0.4(postcss@8.4.29): + resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-focus-within@5.0.4(postcss@7.0.39): resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} engines: {node: ^12 || ^14 || >=16} @@ -48625,6 +50301,16 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-focus-within@5.0.4(postcss@8.4.29): + resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-font-variant@5.0.0(postcss@7.0.39): resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: @@ -48641,6 +50327,14 @@ packages: postcss: 8.4.21 dev: false + /postcss-font-variant@5.0.0(postcss@8.4.29): + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.29 + dev: false + /postcss-gap-properties@3.0.5(postcss@7.0.39): resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} engines: {node: ^12 || ^14 || >=16} @@ -48659,6 +50353,15 @@ packages: postcss: 8.4.21 dev: false + /postcss-gap-properties@3.0.5(postcss@8.4.29): + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + dev: false + /postcss-image-set-function@4.0.7(postcss@7.0.39): resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} engines: {node: ^12 || ^14 || >=16} @@ -48679,13 +50382,23 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-import@14.1.0(postcss@8.4.21): + /postcss-image-set-function@4.0.7(postcss@8.4.29): + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-import@14.1.0(postcss@8.4.29): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 @@ -48707,14 +50420,22 @@ packages: postcss: 8.4.21 dev: false - /postcss-js@4.0.0(postcss@8.4.21): + /postcss-initial@4.0.1(postcss@8.4.29): + resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.29 + dev: false + + /postcss-js@4.0.0(postcss@8.4.29): resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.21 + postcss: 8.4.29 dev: false /postcss-lab-function@4.2.1(postcss@7.0.39): @@ -48739,7 +50460,18 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-load-config@3.1.4(postcss@8.4.21): + /postcss-lab-function@4.2.1(postcss@8.4.29): + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-load-config@3.1.4(postcss@8.4.29): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -48751,8 +50483,8 @@ packages: ts-node: optional: true dependencies: - lilconfig: 2.0.6 - postcss: 8.4.21 + lilconfig: 2.1.0 + postcss: 8.4.29 yaml: 1.10.2 dev: false @@ -48768,7 +50500,7 @@ packages: ts-node: optional: true dependencies: - lilconfig: 2.0.6 + lilconfig: 2.1.0 yaml: 2.3.1 dev: true @@ -48793,7 +50525,7 @@ packages: - browserslist dev: true - /postcss-loader@6.2.1(browserslist@4.21.9)(postcss@8.4.21)(webpack@5.76.1): + /postcss-loader@6.2.1(browserslist@4.21.10)(postcss@8.4.29)(webpack@5.88.2): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -48802,17 +50534,17 @@ packages: dependencies: cosmiconfig: 7.0.1 klona: 2.0.5 - postcss: 8.4.21 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.21) - postcss-normalize: 10.0.1(browserslist@4.21.9)(postcss@8.4.21) - postcss-preset-env: 7.7.2(postcss@8.4.21) + postcss: 8.4.29 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.29) + postcss-normalize: 10.0.1(browserslist@4.21.10)(postcss@8.4.29) + postcss-preset-env: 7.7.2(postcss@8.4.29) semver: 7.5.4 - webpack: 5.76.1 + webpack: 5.88.2 transitivePeerDependencies: - browserslist dev: false - /postcss-loader@6.2.1(browserslist@4.21.9)(postcss@8.4.21)(webpack@5.88.2): + /postcss-loader@6.2.1(browserslist@4.21.9)(postcss@8.4.21)(webpack@5.76.1): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -48826,7 +50558,7 @@ packages: postcss-normalize: 10.0.1(browserslist@4.21.9)(postcss@8.4.21) postcss-preset-env: 7.7.2(postcss@8.4.21) semver: 7.5.4 - webpack: 5.88.2 + webpack: 5.76.1 transitivePeerDependencies: - browserslist dev: false @@ -48849,6 +50581,15 @@ packages: postcss: 8.4.21 dev: false + /postcss-logical@5.0.4(postcss@8.4.29): + resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.29 + dev: false + /postcss-media-minmax@5.0.0(postcss@7.0.39): resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} engines: {node: '>=10.0.0'} @@ -48867,70 +50608,79 @@ packages: postcss: 8.4.21 dev: false + /postcss-media-minmax@5.0.0(postcss@8.4.29): + resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.29 + dev: false + /postcss-media-query-parser@0.2.3: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} dev: true - /postcss-merge-longhand@5.1.6(postcss@8.4.21): + /postcss-merge-longhand@5.1.6(postcss@8.4.29): resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-value-parser: 4.2.0 - stylehacks: 5.1.0(postcss@8.4.21) + stylehacks: 5.1.0(postcss@8.4.29) - /postcss-merge-rules@5.1.2(postcss@8.4.21): + /postcss-merge-rules@5.1.2(postcss@8.4.29): resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.9 + browserslist: 4.21.10 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.21) - postcss: 8.4.21 + cssnano-utils: 3.1.0(postcss@8.4.29) + postcss: 8.4.29 postcss-selector-parser: 6.0.10 - /postcss-minify-font-values@5.1.0(postcss@8.4.21): + /postcss-minify-font-values@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.2 - cssnano-utils: 3.1.0(postcss@8.4.21) - postcss: 8.4.21 + cssnano-utils: 3.1.0(postcss@8.4.29) + postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-minify-params@5.1.3(postcss@8.4.21): + /postcss-minify-params@5.1.3(postcss@8.4.29): resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.9 - cssnano-utils: 3.1.0(postcss@8.4.21) - postcss: 8.4.21 + browserslist: 4.21.10 + cssnano-utils: 3.1.0(postcss@8.4.29) + postcss: 8.4.29 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.29): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-selector-parser: 6.0.10 /postcss-modules-extract-imports@2.0.0: @@ -48940,13 +50690,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.21): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.29): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 /postcss-modules-local-by-default@3.0.3: resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} @@ -48958,14 +50708,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default@4.0.0(postcss@8.4.21): + /postcss-modules-local-by-default@4.0.0(postcss@8.4.29): 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) - postcss: 8.4.21 + icss-utils: 5.1.0(postcss@8.4.29) + postcss: 8.4.29 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 @@ -48977,13 +50727,13 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-scope@3.0.0(postcss@8.4.21): + /postcss-modules-scope@3.0.0(postcss@8.4.29): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-selector-parser: 6.0.10 /postcss-modules-values@3.0.0: @@ -48993,22 +50743,22 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values@4.0.0(postcss@8.4.21): + /postcss-modules-values@4.0.0(postcss@8.4.29): 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) - postcss: 8.4.21 + icss-utils: 5.1.0(postcss@8.4.29) + postcss: 8.4.29 - /postcss-nested@5.0.6(postcss@8.4.21): + /postcss-nested@5.0.6(postcss@8.4.29): resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-selector-parser: 6.0.10 dev: false @@ -49034,88 +50784,113 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-normalize-charset@5.1.0(postcss@8.4.21): + /postcss-nesting@10.1.10(postcss@8.4.29): + resolution: {integrity: sha512-lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.0.2(postcss-selector-parser@6.0.10)(postcss@8.4.29) + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + + /postcss-normalize-charset@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 - /postcss-normalize-display-values@5.1.0(postcss@8.4.21): + /postcss-normalize-display-values@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-unicode@5.1.0(postcss@8.4.21): + /postcss-normalize-unicode@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.9 - postcss: 8.4.21 + browserslist: 4.21.10 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.21 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-value-parser: 4.2.0 + /postcss-normalize@10.0.1(browserslist@4.21.10)(postcss@8.4.29): + resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} + engines: {node: '>= 12'} + peerDependencies: + browserslist: '>= 4' + postcss: '>= 8' + dependencies: + '@csstools/normalize.css': 10.1.0 + browserslist: 4.21.10 + postcss: 8.4.29 + postcss-browser-comments: 4.0.0(browserslist@4.21.10)(postcss@8.4.29) + sanitize.css: 10.0.0 + dev: false + /postcss-normalize@10.0.1(browserslist@4.21.9)(postcss@8.4.21): resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} engines: {node: '>= 12'} @@ -49147,14 +50922,14 @@ packages: resolution: {integrity: sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==} engines: {node: ^12 || ^14 || >=16} - /postcss-ordered-values@5.1.3(postcss@8.4.21): + /postcss-ordered-values@5.1.3(postcss@8.4.29): 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) - postcss: 8.4.21 + cssnano-utils: 3.1.0(postcss@8.4.29) + postcss: 8.4.29 postcss-value-parser: 4.2.0 /postcss-overflow-shorthand@3.0.4(postcss@7.0.39): @@ -49177,6 +50952,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-overflow-shorthand@3.0.4(postcss@8.4.29): + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-page-break@3.0.4(postcss@7.0.39): resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: @@ -49193,6 +50978,14 @@ packages: postcss: 8.4.21 dev: false + /postcss-page-break@3.0.4(postcss@8.4.29): + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} + peerDependencies: + postcss: ^8 + dependencies: + postcss: 8.4.29 + dev: false + /postcss-place@7.0.5(postcss@7.0.39): resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} engines: {node: ^12 || ^14 || >=16} @@ -49213,6 +51006,16 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-place@7.0.5(postcss@8.4.29): + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-value-parser: 4.2.0 + dev: false + /postcss-preset-env@7.7.2(postcss@7.0.39): resolution: {integrity: sha512-1q0ih7EDsZmCb/FMDRvosna7Gsbdx8CvYO5hYT120hcp2ZAuOHpSzibujZ4JpIUcAC02PG6b+eftxqjTFh5BNA==} engines: {node: ^12 || ^14 || >=16} @@ -49325,6 +51128,62 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-preset-env@7.7.2(postcss@8.4.29): + resolution: {integrity: sha512-1q0ih7EDsZmCb/FMDRvosna7Gsbdx8CvYO5hYT120hcp2ZAuOHpSzibujZ4JpIUcAC02PG6b+eftxqjTFh5BNA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-cascade-layers': 1.0.5(postcss@8.4.29) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.29) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.29) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.29) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.29) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.29) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.29) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.29) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.29) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.29) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.29) + autoprefixer: 10.4.8(postcss@8.4.29) + browserslist: 4.21.9 + css-blank-pseudo: 3.0.3(postcss@8.4.29) + css-has-pseudo: 3.0.4(postcss@8.4.29) + css-prefers-color-scheme: 6.0.3(postcss@8.4.29) + cssdb: 6.6.3 + postcss: 8.4.29 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.29) + postcss-clamp: 4.1.0(postcss@8.4.29) + postcss-color-functional-notation: 4.2.4(postcss@8.4.29) + postcss-color-hex-alpha: 8.0.4(postcss@8.4.29) + postcss-color-rebeccapurple: 7.1.1(postcss@8.4.29) + postcss-custom-media: 8.0.2(postcss@8.4.29) + postcss-custom-properties: 12.1.8(postcss@8.4.29) + postcss-custom-selectors: 6.0.3(postcss@8.4.29) + postcss-dir-pseudo-class: 6.0.5(postcss@8.4.29) + postcss-double-position-gradients: 3.1.2(postcss@8.4.29) + postcss-env-function: 4.0.6(postcss@8.4.29) + postcss-focus-visible: 6.0.4(postcss@8.4.29) + postcss-focus-within: 5.0.4(postcss@8.4.29) + postcss-font-variant: 5.0.0(postcss@8.4.29) + postcss-gap-properties: 3.0.5(postcss@8.4.29) + postcss-image-set-function: 4.0.7(postcss@8.4.29) + postcss-initial: 4.0.1(postcss@8.4.29) + postcss-lab-function: 4.2.1(postcss@8.4.29) + postcss-logical: 5.0.4(postcss@8.4.29) + postcss-media-minmax: 5.0.0(postcss@8.4.29) + postcss-nesting: 10.1.10(postcss@8.4.29) + postcss-opacity-percentage: 1.1.2 + postcss-overflow-shorthand: 3.0.4(postcss@8.4.29) + postcss-page-break: 3.0.4(postcss@8.4.29) + postcss-place: 7.0.5(postcss@8.4.29) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.29) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.29) + postcss-selector-not: 6.0.1(postcss@8.4.29) + postcss-value-parser: 4.2.0 + dev: false + /postcss-pseudo-class-any-link@7.1.6(postcss@7.0.39): resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} engines: {node: ^12 || ^14 || >=16} @@ -49345,23 +51204,33 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-reduce-initial@5.1.0(postcss@8.4.21): + /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.29): + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + + /postcss-reduce-initial@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.9 + browserslist: 4.21.10 caniuse-api: 3.0.0 - postcss: 8.4.21 + postcss: 8.4.29 - /postcss-reduce-transforms@5.1.0(postcss@8.4.21): + /postcss-reduce-transforms@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-value-parser: 4.2.0 /postcss-replace-overflow-wrap@4.0.0(postcss@7.0.39): @@ -49380,6 +51249,14 @@ packages: postcss: 8.4.21 dev: false + /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.29): + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} + peerDependencies: + postcss: ^8.0.3 + dependencies: + postcss: 8.4.29 + dev: false + /postcss-resolve-nested-selector@0.1.1: resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} dev: true @@ -49413,6 +51290,16 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-selector-not@6.0.1(postcss@8.4.29): + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.29 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-selector-parser@6.0.10: resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} engines: {node: '>=4'} @@ -49420,23 +51307,23 @@ packages: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo@5.1.0(postcss@8.4.21): + /postcss-svgo@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 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.29): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.29 postcss-selector-parser: 6.0.10 /postcss-value-parser@4.2.0: @@ -49461,7 +51348,7 @@ packages: resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.4 + nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 dev: true @@ -49470,7 +51357,7 @@ packages: resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.4 + nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 @@ -49481,7 +51368,6 @@ packages: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 - dev: false /prando@5.1.2: resolution: {integrity: sha512-PaJxPMw8UugKUeUq27oZ8dqW2CgysXf2MjmlyCcRq+Es8Bcxgac7+nO6/tRGKmLOnUG1GPbAATNAZmzwD1hbIA==} @@ -50284,8 +52170,8 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 + '@babel/core': 7.22.17 + '@babel/generator': 7.22.15 '@babel/runtime': 7.22.10 ast-types: 0.14.2 commander: 2.20.3 @@ -51001,8 +52887,6 @@ packages: invariant: 2.2.4 react: 18.0.0 react-native: 0.71.6(@babel/core@7.22.8)(metro-resolver@0.76.0)(metro-transform-worker@0.76.0)(react@18.0.0) - transitivePeerDependencies: - - supports-color /react-native-restart@0.0.24(react-native@0.71.6)(react@18.0.0): resolution: {integrity: sha512-pvJNU3NwQk6bCG2gOWcQpZ4IxhtELB0K9gzmtixfsaTFbW1UXXHkJNjk1kHazcbH5hrD7QbUkR63fsAVh8X4VQ==} @@ -51409,7 +53293,7 @@ packages: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: false /react-redux@7.2.9(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): @@ -51585,7 +53469,7 @@ packages: webpack-manifest-plugin: 4.1.1(webpack@5.76.1) workbox-webpack-plugin: 6.5.4(webpack@5.76.1) optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - '@babel/plugin-syntax-flow' - '@babel/plugin-transform-react-jsx' @@ -51667,7 +53551,7 @@ packages: '@babel/runtime': 7.22.10 '@emotion/cache': 11.7.1 '@emotion/react': 11.9.0(@types/react@18.2.0)(react@18.2.0) - '@floating-ui/dom': 1.5.2 + '@floating-ui/dom': 1.5.1 '@types/react-transition-group': 4.4.4(@types/react@18.2.0) memoize-one: 6.0.0 prop-types: 15.8.1 @@ -52076,7 +53960,7 @@ packages: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.1 + tslib: 2.6.2 /rechoir@0.7.1: resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} @@ -52956,7 +54840,7 @@ packages: peerDependencies: rollup: ^2.0.0 dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 @@ -52970,7 +54854,7 @@ packages: engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: false /rollup@3.12.1: @@ -52978,7 +54862,7 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: true /rpc-websockets@7.5.1: @@ -52987,10 +54871,10 @@ packages: '@babel/runtime': 7.22.10 eventemitter3: 4.0.7 uuid: 8.3.2 - ws: 8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.9) + ws: 8.14.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) optionalDependencies: bufferutil: 4.0.7 - utf-8-validate: 5.0.9 + utf-8-validate: 5.0.10 dev: false /rsvp@4.8.5: @@ -53038,7 +54922,7 @@ packages: /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 /sade@1.8.1: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} @@ -53711,7 +55595,7 @@ packages: resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==} engines: {node: '>= 10'} dependencies: - '@polka/url': 1.0.0-next.21 + '@polka/url': 1.0.0-next.23 mrmime: 1.0.1 totalist: 3.0.1 dev: false @@ -53860,8 +55744,8 @@ packages: uuid: 8.3.2 websocket-driver: 0.7.4 - /sodium-native@3.3.0: - resolution: {integrity: sha512-rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==} + /sodium-native@3.4.1: + resolution: {integrity: sha512-PaNN/roiFWzVVTL6OqjzYct38NSXewdl2wz8SRB51Br/MLIJPrbM3XexhVWkq7D3UWMysfrhKVf1v1phZq6MeQ==} requiresBuild: true dependencies: node-gyp-build: 4.6.0 @@ -54003,6 +55887,7 @@ packages: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} deprecated: Please use @jridgewell/sourcemap-codec instead requiresBuild: true + dev: false /space-separated-tokens@1.1.5: resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} @@ -54222,7 +56107,7 @@ packages: sha.js: 2.4.11 tweetnacl: 1.0.3 optionalDependencies: - sodium-native: 3.3.0 + sodium-native: 3.4.1 dev: false /stellar-sdk@10.1.2: @@ -54900,14 +56785,14 @@ packages: '@styled-system/variant': 5.1.5 object-assign: 4.1.1 - /stylehacks@5.1.0(postcss@8.4.21): + /stylehacks@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.9 - postcss: 8.4.21 + browserslist: 4.21.10 + postcss: 8.4.29 postcss-selector-parser: 6.0.10 /stylelint-config-recommended@13.0.0(stylelint@14.10.0): @@ -55227,7 +57112,7 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@pkgr/utils': 2.3.1 - tslib: 2.6.1 + tslib: 2.6.2 /tabbable@5.3.2: resolution: {integrity: sha512-6G/8EWRFx8CiSe2++/xHhXkmCRq2rHtDtZbQFHx34cvDfZzIBfvwG9zGUNTWMXWLCYvDj3aQqOzdl3oCxKuBkQ==} @@ -55272,11 +57157,11 @@ packages: normalize-path: 3.0.0 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.0(postcss@8.4.21) - postcss-load-config: 3.1.4(postcss@8.4.21) - postcss-nested: 5.0.6(postcss@8.4.21) + postcss: 8.4.29 + postcss-import: 14.1.0(postcss@8.4.29) + postcss-js: 4.0.0(postcss@8.4.29) + postcss-load-config: 3.1.4(postcss@8.4.29) + postcss-nested: 5.0.6(postcss@8.4.29) postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -55528,7 +57413,7 @@ packages: - metro dev: true - /terser-webpack-plugin@5.3.1(esbuild@0.19.0)(webpack@5.72.1): + /terser-webpack-plugin@5.3.1(esbuild@0.19.3)(webpack@5.72.1): resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -55544,13 +57429,13 @@ packages: uglify-js: optional: true dependencies: - esbuild: 0.19.0 + esbuild: 0.19.3 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 source-map: 0.6.1 terser: 5.16.8 - webpack: 5.72.1(esbuild@0.19.0) + webpack: 5.72.1(esbuild@0.19.3) transitivePeerDependencies: - metro dev: true @@ -55687,7 +57572,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - acorn: 8.8.2 + acorn: 8.10.0 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 @@ -55699,7 +57584,7 @@ packages: hasBin: true dependencies: '@jridgewell/source-map': 0.3.3 - acorn: 8.8.2 + acorn: 8.10.0 commander: 2.20.3 source-map-support: 0.5.21 @@ -56653,6 +58538,10 @@ packages: /tslib@2.6.1: resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==} + dev: false + + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} /tsscmp@1.0.6: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} @@ -56832,6 +58721,7 @@ packages: /type-fest@0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} engines: {node: '>=10'} + requiresBuild: true /type-fest@0.16.0: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} @@ -57416,23 +59306,23 @@ packages: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} - /update-browserslist-db@1.0.10(browserslist@4.21.3): - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + /update-browserslist-db@1.0.11(browserslist@4.21.10): + resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.3 + browserslist: 4.21.10 escalade: 3.1.1 picocolors: 1.0.0 - /update-browserslist-db@1.0.10(browserslist@4.21.5): - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + /update-browserslist-db@1.0.11(browserslist@4.21.3): + resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.5 + browserslist: 4.21.3 escalade: 3.1.1 picocolors: 1.0.0 @@ -57660,8 +59550,8 @@ packages: engines: {node: '>=0.10.0'} requiresBuild: true - /utf-8-validate@5.0.9: - resolution: {integrity: sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q==} + /utf-8-validate@5.0.10: + resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} engines: {node: '>=6.14.2'} requiresBuild: true dependencies: @@ -57791,7 +59681,7 @@ packages: engines: {node: '>=10.12.0'} dependencies: '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 source-map: 0.7.4 dev: false @@ -58346,7 +60236,7 @@ packages: engines: {node: '>= 0.10'} dependencies: append-buffer: 1.0.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 graceful-fs: 4.2.11 normalize-path: 2.1.1 now-and-later: 2.0.1 @@ -58406,7 +60296,7 @@ packages: resolve: 1.22.1 rollup: 3.12.1 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: true /vlq@0.2.3: @@ -59257,7 +61147,7 @@ packages: hasBin: true dependencies: '@discoveryjs/json-ext': 0.5.7 - acorn: 8.8.2 + acorn: 8.10.0 acorn-walk: 8.2.0 commander: 7.2.0 escape-string-regexp: 4.0.0 @@ -59272,7 +61162,7 @@ packages: opener: 1.5.2 picocolors: 1.0.0 sirv: 2.0.3 - ws: 7.5.7 + ws: 7.5.9 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -59685,7 +61575,7 @@ packages: - supports-color dev: true - /webpack@5.72.1(esbuild@0.19.0): + /webpack@5.72.1(esbuild@0.19.3): resolution: {integrity: sha512-dXG5zXCLspQR4krZVR6QgajnZOjW2K/djHvdcRaDQvsjV9z9vaW6+ja5dZOYbqBBjF6kGXka/2ZyxNdc+8Jung==} engines: {node: '>=10.13.0'} hasBin: true @@ -59716,7 +61606,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.1(esbuild@0.19.0)(webpack@5.72.1) + terser-webpack-plugin: 5.3.1(esbuild@0.19.3)(webpack@5.72.1) watchpack: 2.3.1 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -59954,7 +61844,7 @@ packages: debug: 2.6.9 es5-ext: 0.10.61 typedarray-to-buffer: 3.1.5 - utf-8-validate: 5.0.9 + utf-8-validate: 5.0.10 yaeti: 0.0.6 transitivePeerDependencies: - supports-color @@ -60183,10 +62073,10 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@apideck/better-ajv-errors': 0.3.6(ajv@8.11.0) - '@babel/core': 7.22.9 - '@babel/preset-env': 7.21.4(@babel/core@7.22.9) + '@babel/core': 7.22.17 + '@babel/preset-env': 7.21.4(@babel/core@7.22.17) '@babel/runtime': 7.22.10 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.22.9)(rollup@2.79.1) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.22.17)(rollup@2.79.1) '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -60474,6 +62364,18 @@ packages: utf-8-validate: optional: true + /ws@7.5.9: + resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + /ws@8.13.0: resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} engines: {node: '>=10.0.0'} @@ -60486,8 +62388,20 @@ packages: utf-8-validate: optional: true - /ws@8.13.0(bufferutil@4.0.7)(utf-8-validate@5.0.9): - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} + /ws@8.14.1: + resolution: {integrity: sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + /ws@8.14.1(bufferutil@4.0.7)(utf-8-validate@5.0.10): + resolution: {integrity: sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -60499,7 +62413,7 @@ packages: optional: true dependencies: bufferutil: 4.0.7 - utf-8-validate: 5.0.9 + utf-8-validate: 5.0.10 dev: false /ws@8.6.0: From 213a00912a5cfa60e80e643135e32ec2114d60cb Mon Sep 17 00:00:00 2001 From: Hedi EDELBLOUTE Date: Mon, 18 Sep 2023 15:04:47 +0200 Subject: [PATCH 4/4] remove useless arg + nano app version --- .../src/families/cosmos/api/Cosmos.test.ts | 11 ++++++----- .../src/families/cosmos/api/Cosmos.ts | 5 ++--- .../src/families/cosmos/js-prepareTransaction.ts | 5 +---- .../src/families/cosmos/js-signOperation.ts | 1 - libs/ledger-live-common/src/families/cosmos/specs.ts | 1 - 5 files changed, 9 insertions(+), 14 deletions(-) diff --git a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts index 86212348bdb0..dd19414cc72d 100644 --- a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts +++ b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.test.ts @@ -1,6 +1,7 @@ import network from "@ledgerhq/live-network/network"; import { AxiosResponse } from "axios"; import BigNumber from "bignumber.js"; +import cryptoFactory from "../chain/chain"; import { CosmosAPI } from "./Cosmos"; jest.mock("@ledgerhq/live-network/network"); const mockedNetwork = jest.mocked(network); @@ -33,7 +34,7 @@ describe("CosmosApi", () => { }, } as AxiosResponse); - const account = await cosmosApi.getAccount("addr", "default"); + const account = await cosmosApi.getAccount("addr"); expect(account.accountNumber).toEqual(2); expect(account.sequence).toEqual(42); expect(account.pubKey).toEqual("k2"); @@ -47,7 +48,7 @@ describe("CosmosApi", () => { }, } as AxiosResponse); - const account = await cosmosApi.getAccount("addr", "default"); + const account = await cosmosApi.getAccount("addr"); expect(account.accountNumber).toEqual(1); expect(account.sequence).toEqual(0); expect(account.pubKey).toEqual("k"); @@ -58,7 +59,7 @@ describe("CosmosApi", () => { mockedNetwork.mockImplementation(() => { throw new Error(); }); - const account = await cosmosApi.getAccount("addr", "default"); + const account = await cosmosApi.getAccount("addr"); expect(account.sequence).toEqual(0); }); @@ -66,8 +67,8 @@ describe("CosmosApi", () => { mockedNetwork.mockImplementation(() => { throw new Error(); }); - const account = await cosmosApi.getAccount("addr", "default"); - expect(account.pubKeyType).toEqual("default"); + const account = await cosmosApi.getAccount("addr"); + expect(account.pubKeyType).toEqual(cryptoFactory("cosmos").defaultPubKeyType); }); }); diff --git a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts index 6448d54fa6b7..423da0141c90 100644 --- a/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts +++ b/libs/ledger-live-common/src/families/cosmos/api/Cosmos.ts @@ -50,7 +50,7 @@ export class CosmosAPI { unbondings, withdrawAddress, ] = await Promise.all([ - this.getAccount(address, this.chainInstance.defaultPubKeyType), + this.getAccount(address), this.getAllBalances(address, currency), this.getHeight(), this.getTransactions(address, 100), @@ -77,12 +77,11 @@ export class CosmosAPI { getAccount = async ( address: string, - defaultPubKeyType: string, ): Promise<{ accountNumber: number; sequence: number; pubKeyType: string; pubKey: string }> => { const accountData = { accountNumber: 0, sequence: 0, - pubKeyType: defaultPubKeyType, + pubKeyType: this.chainInstance.defaultPubKeyType, pubKey: "", }; diff --git a/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts b/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts index ffcc6fd25b2e..f58d20da43ea 100644 --- a/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts +++ b/libs/ledger-live-common/src/families/cosmos/js-prepareTransaction.ts @@ -55,10 +55,7 @@ export const getEstimatedFees = async ( const cosmosAPI = new CosmosAPI(account.currency.id); const { protoMsgs } = txToMessages(account, transaction); - const { sequence, pubKeyType, pubKey } = await cosmosAPI.getAccount( - account.freshAddress, - chainInstance.defaultPubKeyType, - ); + const { sequence, pubKeyType, pubKey } = await cosmosAPI.getAccount(account.freshAddress); const signature = new Uint8Array(Buffer.from(account.seedIdentifier, "hex")); const txBytes = buildTransaction({ diff --git a/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts b/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts index 377c6ef81fd6..8593879d37ea 100644 --- a/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts +++ b/libs/ledger-live-common/src/families/cosmos/js-signOperation.ts @@ -24,7 +24,6 @@ const signOperation: SignOperationFnSignature = ({ account, deviceI const { accountNumber, sequence, pubKeyType } = await cosmosAPI.getAccount( account.freshAddress, - chainInstance.defaultPubKeyType, ); o.next({ type: "device-signature-requested" }); const { aminoMsgs, protoMsgs } = txToMessages(account, transaction); diff --git a/libs/ledger-live-common/src/families/cosmos/specs.ts b/libs/ledger-live-common/src/families/cosmos/specs.ts index b162a03411eb..d92e16747289 100644 --- a/libs/ledger-live-common/src/families/cosmos/specs.ts +++ b/libs/ledger-live-common/src/families/cosmos/specs.ts @@ -442,7 +442,6 @@ const generateGenericCosmosTest = ( appQuery: { model: DeviceModelId.nanoS, appName: "Cosmos", - appVersion: "2.34.11", }, genericDeviceAction: acceptTransaction, testTimeout: 2 * 60 * 1000,