= ({ isOpened, setIsOpened }) => {
className="flex gap-2 focus:bg-jumbotronLight dark:focus:bg-jumbotronDark dark:text-whiteDefault cursor-pointer transition"
onClick={() => setNetwork(chain)}
>
- {isDarkMode && chain.imgDark ? chain.imgDark : chain.img}
+
+ {isDarkMode && chain.imgDark ? chain.imgDark : chain.img}
+
{chain.name}
))}
diff --git a/explorer/src/config/index.tsx b/explorer/src/config/index.tsx
index 31ee7a95..27d51e3c 100644
--- a/explorer/src/config/index.tsx
+++ b/explorer/src/config/index.tsx
@@ -1,17 +1,53 @@
import { VeraxSdk } from "@verax-attestation-registry/verax-sdk";
import { getDefaultConfig } from "connectkit";
-import { createConfig } from "wagmi";
-import { arbitrum, arbitrumGoerli, linea, lineaTestnet } from "wagmi/chains";
+import { Chain, createConfig } from "wagmi";
+import { arbitrum, arbitrumNova, arbitrumSepolia, base, baseSepolia, linea, lineaTestnet } from "wagmi/chains";
import veraxColoredIcon from "@/assets/logo/verax-colored-icon.svg";
import ArbitrumIconDark from "@/assets/networks/arbitrum-dark.svg?react";
-import ArbitrumGoerliIcon from "@/assets/networks/arbitrum-goerli.svg?react";
+import ArbitrumNovaIconDark from "@/assets/networks/arbitrum-nova-dark.svg?react";
+import ArbitrumNovaIcon from "@/assets/networks/arbitrum-nova.svg?react";
+import ArbitrumSepoliaIcon from "@/assets/networks/arbitrum-sepolia.svg?react";
import ArbitrumIcon from "@/assets/networks/arbitrum.svg?react";
+import BaseIconDark from "@/assets/networks/base-dark.svg?react";
+import BaseSepoliaIcon from "@/assets/networks/base-sepolia.svg?react";
+import BaseIcon from "@/assets/networks/base.svg?react";
import LineaMainnetIconDark from "@/assets/networks/linea-mainnet-dark.svg?react";
import LineaMainnetIcon from "@/assets/networks/linea-mainnet.svg?react";
+import LineaSepoliaIcon from "@/assets/networks/linea-sepolia.svg?react";
import LineaTestnetIcon from "@/assets/networks/linea-testnet.svg?react";
import { INetwork } from "@/interfaces/config";
+const lineaSepolia = {
+ id: 59_141,
+ name: "Linea Sepolia Testnet",
+ network: "linea-sepolia",
+ nativeCurrency: { name: "Linea Ether", symbol: "ETH", decimals: 18 },
+ rpcUrls: {
+ default: {
+ http: ["https://rpc.sepolia.linea.build"],
+ webSocket: ["wss://rpc.sepolia.linea.build"],
+ },
+ public: {
+ http: ["https://rpc.sepolia.linea.build"],
+ webSocket: ["wss://rpc.sepolia.linea.build"],
+ },
+ },
+ blockExplorers: {
+ default: {
+ name: "Etherscan",
+ url: "https://sepolia.lineascan.build",
+ },
+ },
+ contracts: {
+ multicall3: {
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
+ blockCreated: 227427,
+ },
+ },
+ testnet: true,
+} as const satisfies Chain;
+
const chains: INetwork[] = [
{
name: "Linea Mainnet",
@@ -28,6 +64,13 @@ const chains: INetwork[] = [
img: ,
network: "linea-testnet",
},
+ {
+ name: "Linea Sepolia",
+ chain: lineaSepolia,
+ veraxEnv: VeraxSdk.DEFAULT_LINEA_SEPOLIA_FRONTEND,
+ img: ,
+ network: "linea-sepolia",
+ },
{
name: "Arbitrum",
chain: arbitrum,
@@ -37,11 +80,34 @@ const chains: INetwork[] = [
network: "arbitrum",
},
{
- name: "Arbitrum Goerli",
- chain: arbitrumGoerli,
- veraxEnv: VeraxSdk.DEFAULT_ARBITRUM_TESTNET_FRONTEND,
- img: ,
- network: "arbitrum-goerli",
+ name: "Arbitrum Sepolia",
+ chain: arbitrumSepolia,
+ veraxEnv: VeraxSdk.DEFAULT_ARBITRUM_SEPOLIA_FRONTEND,
+ img: ,
+ network: "arbitrum-sepolia",
+ },
+ {
+ name: "Arbitrum Nova",
+ chain: arbitrumNova,
+ veraxEnv: VeraxSdk.DEFAULT_ARBITRUM_NOVA_FRONTEND,
+ img: ,
+ imgDark: ,
+ network: "arbitrum-nova",
+ },
+ {
+ name: "Base Mainnet",
+ chain: base,
+ veraxEnv: VeraxSdk.DEFAULT_BASE_FRONTEND,
+ img: ,
+ imgDark: ,
+ network: "base-mainnet",
+ },
+ {
+ name: "Base Sepolia",
+ chain: baseSepolia,
+ veraxEnv: VeraxSdk.DEFAULT_BASE_SEPOLIA_FRONTEND,
+ img: ,
+ network: "base-sepolia",
},
];
@@ -58,4 +124,4 @@ const config = createConfig(
const defaultChain = chains[0];
-export { chains, config, defaultChain };
+export { lineaSepolia, chains, config, defaultChain };
diff --git a/explorer/src/constants/index.ts b/explorer/src/constants/index.ts
index dd9db855..579ef375 100644
--- a/explorer/src/constants/index.ts
+++ b/explorer/src/constants/index.ts
@@ -1,4 +1,6 @@
-import { arbitrum, arbitrumGoerli, linea, lineaTestnet } from "wagmi/chains";
+import { arbitrum, arbitrumNova, arbitrumSepolia, base, baseSepolia, linea, lineaTestnet } from "wagmi/chains";
+
+import { lineaSepolia } from "@/config";
export const EMPTY_STRING = "";
export const SPACE_STRING = " ";
@@ -14,17 +16,28 @@ export const BILLION = 1e9;
export const links: Record = {
[linea.id]: {
- trx: "https://lineascan.build/trx",
address: "https://lineascan.build/address",
},
[lineaTestnet.id]: {
address: "https://goerli.lineascan.build/address",
},
+ [lineaSepolia.id]: {
+ address: "https://goerli.lineascan.build/address",
+ },
[arbitrum.id]: {
address: "https://arbiscan.io/address",
},
- [arbitrumGoerli.id]: {
- address: "https://testnet.arbiscan.io/address",
+ [arbitrumSepolia.id]: {
+ address: "https://sepolia.arbiscan.io/address",
+ },
+ [arbitrumNova.id]: {
+ address: "https://nova.arbiscan.io/address",
+ },
+ [base.id]: {
+ address: "https://basescan.org/address",
+ },
+ [baseSepolia.id]: {
+ address: "https://sepolia.basescan.org/address",
},
};
diff --git a/package.json b/package.json
index c3080ef0..2c24f884 100644
--- a/package.json
+++ b/package.json
@@ -21,7 +21,7 @@
"lint": "eslint .",
"prepare": "husky install",
"prettier:check": "prettier --check \"**/*.{json,md,svg,yml,sol,js,jsx,ts,tsx,graphql}\"",
- "prettier:write": "prettier --write \"**/*.{json,md,svg,yml,sol,js,jsx,ts,jsx,graphql}\""
+ "prettier:write": "prettier --write \"**/*.{json,md,svg,yml,sol,js,jsx,ts,tsx,graphql}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e1f6a4a8..c79a7f3e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -52,28 +52,28 @@ importers:
devDependencies:
'@nomicfoundation/hardhat-ethers':
specifier: ^3.0.5
- version: 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
+ version: 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
'@nomicfoundation/hardhat-foundry':
specifier: ^1.1.1
- version: 1.1.1(hardhat@2.22.3)
+ version: 1.1.2(hardhat@2.22.4)
'@nomicfoundation/hardhat-toolbox':
specifier: ^5.0.0
- version: 5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-ignition-ethers@0.15.1)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@2.0.6)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.14)(@types/mocha@10.0.6)(@types/node@18.19.31)(chai@4.4.1)(ethers@6.12.0)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.3)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5)
+ version: 5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition-ethers@0.15.4)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@2.0.7)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.16)(@types/mocha@10.0.6)(@types/node@18.19.33)(chai@4.4.1)(ethers@6.12.1)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.4)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5)
'@openzeppelin/hardhat-upgrades':
specifier: ^3.0.5
- version: 3.1.0(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-verify@2.0.6)(ethers@6.12.0)(hardhat@2.22.3)
+ version: 3.1.0(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-verify@2.0.7)(ethers@6.12.1)(hardhat@2.22.4)
'@types/node':
specifier: ^18.16.0
- version: 18.19.31
+ version: 18.19.33
dotenv:
specifier: ^16.4.5
version: 16.4.5
ethers:
specifier: ^6.12.0
- version: 6.12.0
+ version: 6.12.1
hardhat:
specifier: ^2.22.3
- version: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ version: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
solhint:
specifier: ^4.5.4
version: 4.5.4(typescript@4.9.5)
@@ -85,16 +85,16 @@ importers:
dependencies:
'@radix-ui/react-dropdown-menu':
specifier: ^2.0.6
- version: 2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
+ version: 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
'@tanstack/react-table':
specifier: ^8.10.7
- version: 8.16.0(react-dom@18.3.0)(react@18.3.0)
+ version: 8.17.3(react-dom@18.3.1)(react@18.3.1)
'@verax-attestation-registry/verax-sdk':
- specifier: 1.2.1
- version: 1.2.1(@envelop/core@5.0.0)(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.7)(@types/react@18.2.79)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(react-dom@18.3.0)(react@18.3.0)(tslib@2.6.2)(typescript@5.2.2)
+ specifier: 1.6.0
+ version: 1.6.0(@envelop/core@5.0.1)(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2)
'@wagmi/core':
specifier: ^1.4.7
- version: 1.4.13(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9)
+ version: 1.4.13(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9)
abitype:
specifier: ^0.10.3
version: 0.10.3(typescript@5.2.2)
@@ -106,40 +106,40 @@ importers:
version: 2.1.1
connectkit:
specifier: 1.5.3
- version: 1.5.3(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0)(viem@1.18.9)(wagmi@1.4.6)
+ version: 1.5.3(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)(viem@1.18.9)(wagmi@1.4.6)
framer-motion:
specifier: ^10.16.12
- version: 10.18.0(react-dom@18.3.0)(react@18.3.0)
+ version: 10.18.0(react-dom@18.3.1)(react@18.3.1)
i18next:
specifier: ^23.7.8
- version: 23.11.2
+ version: 23.11.4
lucide-react:
specifier: ^0.292.0
- version: 0.292.0(react@18.3.0)
+ version: 0.292.0(react@18.3.1)
moment:
specifier: ^2.29.4
version: 2.30.1
react:
specifier: ^18.2.0
- version: 18.3.0
+ version: 18.3.1
react-copy-to-clipboard:
specifier: ^5.1.0
- version: 5.1.0(react@18.3.0)
+ version: 5.1.0(react@18.3.1)
react-dom:
specifier: ^18.2.0
- version: 18.3.0(react@18.3.0)
+ version: 18.3.1(react@18.3.1)
react-i18next:
specifier: ^13.5.0
- version: 13.5.0(i18next@23.11.2)(react-dom@18.3.0)(react@18.3.0)
+ version: 13.5.0(i18next@23.11.4)(react-dom@18.3.1)(react@18.3.1)
react-json-view:
specifier: ^1.21.3
- version: 1.21.3(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
+ version: 1.21.3(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
react-router-dom:
specifier: ^6.19.0
- version: 6.23.0(react-dom@18.3.0)(react@18.3.0)
+ version: 6.23.1(react-dom@18.3.1)(react@18.3.1)
swr:
specifier: ^2.2.4
- version: 2.2.5(react@18.3.0)
+ version: 2.2.5(react@18.3.1)
tailwind-merge:
specifier: ^2.0.0
version: 2.3.0
@@ -148,7 +148,7 @@ importers:
version: 1.0.7(tailwindcss@3.4.3)
usehooks-ts:
specifier: ^2.9.1
- version: 2.16.0(react@18.3.0)
+ version: 2.16.0(react@18.3.1)
viem:
specifier: 1.18.9
version: 1.18.9(typescript@5.2.2)
@@ -157,20 +157,20 @@ importers:
version: 4.3.2(typescript@5.2.2)(vite@4.5.3)
wagmi:
specifier: 1.4.6
- version: 1.4.6(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9)
+ version: 1.4.6(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9)
devDependencies:
'@types/node':
specifier: ^20.9.2
- version: 20.12.7
+ version: 20.12.12
'@types/react':
specifier: ^18.2.37
- version: 18.2.79
+ version: 18.3.2
'@types/react-copy-to-clipboard':
specifier: ^5.0.7
version: 5.0.7
'@types/react-dom':
specifier: ^18.2.15
- version: 18.2.25
+ version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^6.11.0
version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.2.2)
@@ -203,10 +203,10 @@ importers:
version: 7.34.1(eslint@8.57.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.1(eslint@8.57.0)
+ version: 4.6.2(eslint@8.57.0)
eslint-plugin-react-refresh:
specifier: ^0.4.4
- version: 0.4.6(eslint@8.57.0)
+ version: 0.4.7(eslint@8.57.0)
postcss:
specifier: ^8.4.31
version: 8.4.38
@@ -221,7 +221,7 @@ importers:
version: 5.2.2
vite:
specifier: ^4.5.3
- version: 4.5.3(@types/node@20.12.7)
+ version: 4.5.3(@types/node@20.12.12)
vite-plugin-radar:
specifier: ^0.9.1
version: 0.9.4(vite@4.5.3)
@@ -239,71 +239,71 @@ importers:
version: 5.0.2(@openzeppelin/contracts@5.0.2)
'@types/node':
specifier: ^20.9.0
- version: 20.12.7
+ version: 20.12.12
devDependencies:
'@nomicfoundation/hardhat-ethers':
specifier: ^3.0.4
- version: 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
+ version: 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
'@nomicfoundation/hardhat-toolbox':
specifier: ^3.0.0
- version: 3.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@1.1.1)(@typechain/ethers-v6@0.4.3)(@typechain/hardhat@8.0.3)(@types/chai@4.3.14)(@types/mocha@10.0.6)(@types/node@20.12.7)(chai@4.4.1)(ethers@6.12.0)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.3)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5)
+ version: 3.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@1.1.1)(@typechain/ethers-v6@0.4.3)(@typechain/hardhat@8.0.3)(@types/chai@4.3.16)(@types/mocha@10.0.6)(@types/node@20.12.12)(chai@4.4.1)(ethers@6.12.1)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.4)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5)
'@openzeppelin/hardhat-upgrades':
specifier: ^2.3.3
- version: 2.5.1(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-verify@1.1.1)(ethers@6.12.0)(hardhat@2.22.3)
+ version: 2.5.1(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-verify@1.1.1)(ethers@6.12.1)(hardhat@2.22.4)
'@types/jest':
specifier: ^29.5.8
version: 29.5.12
babel-jest:
specifier: ^29.7.0
- version: 29.7.0(@babel/core@7.24.4)
+ version: 29.7.0(@babel/core@7.24.5)
dotenv:
specifier: ^16.3.1
version: 16.4.5
ethers:
specifier: ^6.8.1
- version: 6.12.0
+ version: 6.12.1
hardhat:
specifier: ^2.19.0
- version: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ version: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ version: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
ts-jest:
specifier: ^29.1.1
- version: 29.1.2(@babel/core@7.24.4)(babel-jest@29.7.0)(jest@29.7.0)(typescript@4.9.5)
+ version: 29.1.2(@babel/core@7.24.5)(babel-jest@29.7.0)(jest@29.7.0)(typescript@4.9.5)
ts-node:
specifier: ^10.9.1
- version: 10.9.2(@types/node@20.12.7)(typescript@4.9.5)
+ version: 10.9.2(@types/node@20.12.12)(typescript@4.9.5)
sdk:
dependencies:
'@graphprotocol/client-cli':
specifier: ^3.0.0
- version: 3.0.1(@envelop/core@5.0.0)(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(graphql@16.8.1)
+ version: 3.0.3(@envelop/core@5.0.1)(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)
'@graphql-mesh/cache-localforage':
specifier: ^0.95.8
- version: 0.95.8(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
+ version: 0.95.8(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-mesh/cross-helpers':
specifier: ^0.4.1
- version: 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
+ version: 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
'@graphql-mesh/graphql':
specifier: ^0.95.8
- version: 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(@types/node@20.12.7)(@types/react@18.2.79)(graphql@16.8.1)(react-dom@18.3.0)(react@18.3.0)(tslib@2.6.2)
+ version: 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)
'@graphql-mesh/http':
specifier: ^0.96.14
- version: 0.96.14(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/runtime@0.96.13)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
+ version: 0.96.14(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.96.13)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-mesh/merger-bare':
specifier: ^0.95.8
- version: 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ version: 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-mesh/runtime':
specifier: ^0.96.13
- version: 0.96.13(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ version: 0.96.13(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-mesh/store':
specifier: ^0.95.8
- version: 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ version: 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-mesh/utils':
specifier: ^0.95.8
- version: 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ version: 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@whatwg-node/fetch':
specifier: ^0.9.14
version: 0.9.17
@@ -318,38 +318,38 @@ importers:
version: 16.8.1
viem:
specifier: ^2.9.26
- version: 2.9.26(typescript@5.4.5)
+ version: 2.10.8(typescript@5.4.5)
devDependencies:
'@babel/plugin-transform-runtime':
specifier: ^7.23.3
- version: 7.24.3(@babel/core@7.24.4)
+ version: 7.24.3(@babel/core@7.24.5)
'@babel/preset-env':
specifier: ^7.23.3
- version: 7.24.4(@babel/core@7.24.4)
+ version: 7.24.5(@babel/core@7.24.5)
'@babel/preset-typescript':
specifier: ^7.23.3
- version: 7.24.1(@babel/core@7.24.4)
+ version: 7.24.1(@babel/core@7.24.5)
'@types/jest':
specifier: ^29.5.8
version: 29.5.12
'@types/node':
specifier: ^20.9.0
- version: 20.12.7
+ version: 20.12.12
babel-jest:
specifier: ^29.7.0
- version: 29.7.0(@babel/core@7.24.4)
+ version: 29.7.0(@babel/core@7.24.5)
babel-plugin-transform-import-meta:
specifier: ^2.2.1
- version: 2.2.1(@babel/core@7.24.4)
+ version: 2.2.1(@babel/core@7.24.5)
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ version: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
ts-jest:
specifier: ^29.1.1
- version: 29.1.2(@babel/core@7.24.4)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.4.5)
+ version: 29.1.2(@babel/core@7.24.5)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.4.5)
ts-node:
specifier: ^10.9.1
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.5)
+ version: 10.9.2(@types/node@20.12.12)(typescript@5.4.5)
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -361,16 +361,16 @@ importers:
version: 15.0.0
react:
specifier: ^18.2.0
- version: 18.3.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.3.0(react@18.3.0)
+ version: 18.3.1(react@18.3.1)
react-is:
specifier: ^18.2.0
- version: 18.3.0
+ version: 18.3.1
styled-components:
specifier: 5.3.3
- version: 5.3.3(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0)
+ version: 5.3.3(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
devDependencies:
'@metamask/eslint-config':
specifier: ^12.2.0
@@ -398,7 +398,7 @@ importers:
version: 5.17.0
'@testing-library/react':
specifier: ^13.3.0
- version: 13.4.0(react-dom@18.3.0)(react@18.3.0)
+ version: 13.4.0(react-dom@18.3.1)(react@18.3.1)
'@testing-library/user-event':
specifier: ^13.5.0
version: 13.5.0(@testing-library/dom@8.20.1)
@@ -407,10 +407,10 @@ importers:
version: 27.5.2
'@types/react':
specifier: ^18.0.15
- version: 18.2.79
+ version: 18.3.2
'@types/react-dom':
specifier: ^18.0.6
- version: 18.2.25
+ version: 18.3.0
'@types/styled-components':
specifier: ^5.1.25
version: 5.1.34
@@ -446,13 +446,13 @@ importers:
version: 6.1.1(eslint@8.57.0)
gatsby:
specifier: ^5.13.3
- version: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
+ version: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
gatsby-plugin-manifest:
specifier: ^5.13.1
version: 5.13.1(gatsby@5.13.4)(graphql@16.8.1)
gatsby-plugin-styled-components:
specifier: ^6.13.1
- version: 6.13.1(babel-plugin-styled-components@2.1.4)(gatsby@5.13.4)(react-dom@18.3.0)(react@18.3.0)(styled-components@5.3.3)
+ version: 6.13.1(babel-plugin-styled-components@2.1.4)(gatsby@5.13.4)(react-dom@18.3.1)(react@18.3.1)(styled-components@5.3.3)
gatsby-plugin-svgr:
specifier: ^3.0.0-beta.0
version: 3.0.0-beta.0(@svgr/webpack@6.5.1)(gatsby@5.13.4)
@@ -498,10 +498,10 @@ importers:
version: 12.1.0(@metamask/eslint-config@12.2.0)(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@4.9.5)
'@metamask/snaps-cli':
specifier: ^6.0.2
- version: 6.1.1(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ version: 6.2.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/snaps-jest':
specifier: ^6.0.1
- version: 6.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ version: 6.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@typescript-eslint/eslint-plugin':
specifier: ^5.42.1
version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@4.9.5)
@@ -534,7 +534,7 @@ importers:
version: 6.1.1(eslint@8.57.0)
jest:
specifier: ^29.5.0
- version: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ version: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
prettier:
specifier: ^2.7.1
version: 2.8.8
@@ -546,7 +546,7 @@ importers:
version: 3.0.2
ts-jest:
specifier: ^29.1.0
- version: 29.1.2(@babel/core@7.24.4)(babel-jest@29.7.0)(jest@29.7.0)(typescript@4.9.5)
+ version: 29.1.2(@babel/core@7.24.5)(babel-jest@29.7.0)(jest@29.7.0)(typescript@4.9.5)
typescript:
specifier: ^4.7.4
version: 4.9.5
@@ -555,7 +555,7 @@ importers:
devDependencies:
'@graphprotocol/graph-cli':
specifier: 0.71.0
- version: 0.71.0(@types/node@20.12.7)(node-fetch@2.7.0)(typescript@4.9.5)
+ version: 0.71.0(@types/node@20.12.12)(node-fetch@2.7.0)(typescript@4.9.5)
'@graphprotocol/graph-ts':
specifier: 0.31.0
version: 0.31.0
@@ -579,47 +579,47 @@ importers:
version: 6.5.2
'@fortawesome/react-fontawesome':
specifier: ^0.2.0
- version: 0.2.0(@fortawesome/fontawesome-svg-core@6.5.2)(react@18.3.0)
+ version: 0.2.0(@fortawesome/fontawesome-svg-core@6.5.2)(react@18.3.1)
'@lens-protocol/widgets-react':
specifier: ^2.1.0
- version: 2.1.0(react@18.3.0)
+ version: 2.1.0(react@18.3.1)
'@verax-attestation-registry/verax-sdk':
specifier: 1.2.1
- version: 1.2.1(@envelop/core@5.0.0)(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.7)(@types/react@18.2.79)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(react-dom@18.3.0)(react@18.3.0)(tslib@2.6.2)(typescript@5.2.2)
+ version: 1.2.1(@envelop/core@5.0.1)(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2)
'@wagmi/core':
specifier: ^1.4.7
- version: 1.4.13(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4)
+ version: 1.4.13(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4)
'@web3modal/wagmi':
specifier: ^3.5.0
- version: 3.5.7(@types/react@18.2.79)(@wagmi/core@1.4.13)(typescript@5.2.2)(viem@1.21.4)
+ version: 3.5.7(@types/react@18.3.2)(@wagmi/core@1.4.13)(typescript@5.2.2)(viem@1.21.4)
axios:
specifier: ^1.6.1
version: 1.6.8(debug@4.3.4)
react:
specifier: ^18.2.0
- version: 18.3.0
+ version: 18.3.1
react-dom:
specifier: ^18.2.0
- version: 18.3.0(react@18.3.0)
+ version: 18.3.1(react@18.3.1)
react-json-view:
specifier: ^1.21.3
- version: 1.21.3(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
+ version: 1.21.3(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
react-router-dom:
specifier: ^6.19.0
- version: 6.23.0(react-dom@18.3.0)(react@18.3.0)
+ version: 6.23.1(react-dom@18.3.1)(react@18.3.1)
viem:
specifier: ^1.18.9
version: 1.21.4(typescript@5.2.2)
wagmi:
specifier: ^1.4.6
- version: 1.4.13(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4)
+ version: 1.4.13(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4)
devDependencies:
'@types/react':
specifier: ^18.2.37
- version: 18.2.79
+ version: 18.3.2
'@types/react-dom':
specifier: ^18.2.15
- version: 18.2.25
+ version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^6.10.0
version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.53.0)(typescript@5.2.2)
@@ -634,16 +634,16 @@ importers:
version: 8.53.0
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.1(eslint@8.53.0)
+ version: 4.6.2(eslint@8.53.0)
eslint-plugin-react-refresh:
specifier: ^0.4.4
- version: 0.4.6(eslint@8.53.0)
+ version: 0.4.7(eslint@8.53.0)
typescript:
specifier: 5.2.2
version: 5.2.2
vite:
specifier: ^4.5.3
- version: 4.5.3(@types/node@20.12.7)
+ version: 4.5.3(@types/node@20.12.12)
vite-plugin-radar:
specifier: ^0.9.1
version: 0.9.4(vite@4.5.3)
@@ -656,11 +656,6 @@ importers:
packages:
- /@aashutoshrathi/word-wrap@1.2.6:
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/@adobe/css-tools@4.3.3:
resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
dev: true
@@ -688,8 +683,8 @@ packages:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- /@apollo/client@3.10.1(@types/react@18.2.79)(graphql@16.8.1)(react-dom@18.3.0)(react@18.3.0):
- resolution: {integrity: sha512-QNacQBZzJla5UQ/LLBXJWM7/1v1C5cfpMQPAFjW4hg4T54wHWbg4Dr+Dp6N+hy/ygu8tepdM+/y/5VFLZhovlQ==}
+ /@apollo/client@3.10.4(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-51gk0xOwN6Ls1EbTG5svFva1kdm2APHYTzmFhaAdvUQoJFDxfc0UwQgDxGptzH84vkPlo1qunY1FuboyF9LI3Q==}
requiresBuild: true
peerDependencies:
graphql: ^15.0.0 || ^16.0.0
@@ -716,9 +711,9 @@ packages:
hoist-non-react-statics: 3.3.2
optimism: 0.18.0
prop-types: 15.8.1
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- rehackt: 0.1.0(@types/react@18.2.79)(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ rehackt: 0.1.0(@types/react@18.3.2)(react@18.3.1)
response-iterator: 0.2.6
symbol-observable: 4.0.0
ts-invariant: 0.10.3
@@ -735,13 +730,13 @@ packages:
peerDependencies:
graphql: '*'
dependencies:
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
- '@babel/types': 7.24.0
- babel-preset-fbjs: 3.4.0(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/generator': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/runtime': 7.24.5
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
+ '@babel/types': 7.24.5
+ babel-preset-fbjs: 3.4.0(@babel/core@7.24.5)
chalk: 4.1.2
fb-watchman: 2.0.2
fbjs: 3.0.5
@@ -770,23 +765,23 @@ packages:
resolution: {integrity: sha512-Nr1QJIbW/afYYGzYvrF70LtaHrIRtd4TNAglX8BvlfxJLZ45SAmueIKYl5tWoNBPzp65ymXGFK0Bb1vZUpuc9g==}
dependencies:
'@aws-crypto/util': 1.2.2
- '@aws-sdk/types': 3.535.0
+ '@aws-sdk/types': 3.577.0
tslib: 1.14.1
dev: true
/@aws-crypto/util@1.2.2:
resolution: {integrity: sha512-H8PjG5WJ4wz0UXAFXeJjWCW1vkvIJ3qUUD+rGRwJ2/hj+xT58Qle2MTql/2MGzkU+1JLAFuR6aJpLAjHwhmwwg==}
dependencies:
- '@aws-sdk/types': 3.535.0
+ '@aws-sdk/types': 3.577.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: true
- /@aws-sdk/types@3.535.0:
- resolution: {integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==}
- engines: {node: '>=14.0.0'}
+ /@aws-sdk/types@3.577.0:
+ resolution: {integrity: sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA==}
+ engines: {node: '>=16.0.0'}
dependencies:
- '@smithy/types': 2.12.0
+ '@smithy/types': 3.0.0
tslib: 2.6.2
dev: true
@@ -799,34 +794,34 @@ packages:
/@babel/code-frame@7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
- '@babel/highlight': 7.24.2
+ '@babel/highlight': 7.24.5
dev: true
/@babel/code-frame@7.24.2:
resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.24.2
- picocolors: 1.0.0
+ '@babel/highlight': 7.24.5
+ picocolors: 1.0.1
/@babel/compat-data@7.24.4:
resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
engines: {node: '>=6.9.0'}
- /@babel/core@7.24.4:
- resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
+ /@babel/core@7.24.5:
+ resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@babel/generator': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helpers': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helpers': 7.24.5
+ '@babel/parser': 7.24.5
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
+ '@babel/types': 7.24.5
convert-source-map: 2.0.0
debug: 4.3.4(supports-color@5.5.0)
gensync: 1.0.0-beta.2
@@ -835,25 +830,25 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/eslint-parser@7.24.1(@babel/core@7.24.4)(eslint@7.32.0):
- resolution: {integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==}
+ /@babel/eslint-parser@7.24.5(@babel/core@7.24.5)(eslint@7.32.0):
+ resolution: {integrity: sha512-gsUcqS/fPlgAw1kOtpss7uhY6E9SFFANQ6EFX5GTvzUwaV0+sGaZWk6xq22MOdeT9wfxyokW3ceCUvOiRtZciQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
- eslint: ^7.5.0 || ^8.0.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 7.32.0
eslint-visitor-keys: 2.1.0
semver: 6.3.1
dev: true
- /@babel/generator@7.24.4:
- resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
+ /@babel/generator@7.24.5:
+ resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
@@ -862,13 +857,13 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: true
/@babel/helper-compilation-targets@7.23.6:
@@ -881,43 +876,43 @@ packages:
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
+ /@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-split-export-declaration': 7.24.5
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.5):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: true
- /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.4):
+ /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5):
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -934,217 +929,217 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- /@babel/helper-member-expression-to-functions@7.23.0:
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ /@babel/helper-member-expression-to-functions@7.24.5:
+ resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
/@babel/helper-module-imports@7.24.3:
resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4):
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ /@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-simple-access': 7.24.5
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.5
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- /@babel/helper-plugin-utils@7.24.0:
- resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
+ /@babel/helper-plugin-utils@7.24.5:
+ resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.5):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-wrap-function': 7.22.20
+ '@babel/helper-wrap-function': 7.24.5
dev: true
- /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4):
+ /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
- /@babel/helper-simple-access@7.22.5:
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ /@babel/helper-simple-access@7.24.5:
+ resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- /@babel/helper-split-export-declaration@7.22.6:
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ /@babel/helper-split-export-declaration@7.24.5:
+ resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
/@babel/helper-string-parser@7.24.1:
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.22.20:
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ /@babel/helper-validator-identifier@7.24.5:
+ resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option@7.23.5:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-wrap-function@7.22.20:
- resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
+ /@babel/helper-wrap-function@7.24.5:
+ resolution: {integrity: sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
'@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: true
- /@babel/helpers@7.24.4:
- resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
+ /@babel/helpers@7.24.5:
+ resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
+ '@babel/types': 7.24.5
transitivePeerDependencies:
- supports-color
- /@babel/highlight@7.24.2:
- resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
+ /@babel/highlight@7.24.5:
+ resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.5
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.0
+ picocolors: 1.0.1
- /@babel/parser@7.24.4:
- resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
+ /@babel/parser@7.24.5:
+ resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==}
+ /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
dev: true
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.5):
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.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.5):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
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-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.5):
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.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
dev: true
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.4):
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.5):
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.
@@ -1152,1002 +1147,1002 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.4):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.5):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
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-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.4):
+ /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.5):
resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==}
+ /@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.4):
+ /@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.5):
resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==}
+ /@babel/plugin-transform-classes@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
+ '@babel/helper-split-export-declaration': 7.24.5
globals: 11.12.0
- /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/template': 7.24.0
- /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
+ /@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.5)
- /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-simple-access': 7.22.5
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-simple-access': 7.24.5
- /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.5
dev: true
- /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.5):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==}
+ /@babel/plugin-transform-object-rest-spread@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
- /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==}
+ /@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
+ /@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==}
+ /@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.5):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==}
+ /@babel/plugin-transform-react-jsx-self@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-RtCJoUO2oYrYwFPtR1/jkoBEcFuI1ae9a9IMxeyAVa3a1Ap4AnxmyIKG2b2FaJKqkidw/0cxRbWN+HOs6ZWd1w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/types': 7.24.5
- /@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.4):
+ /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.5):
resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.24.5
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==}
+ /@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
+ /@babel/plugin-transform-typescript@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
dev: true
- /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.4):
+ /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
dev: true
- /@babel/preset-env@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==}
+ /@babel/preset-env@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.4)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4)
- '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.4)
- core-js-compat: 3.37.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5)
+ '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.5)
+ '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-object-rest-spread': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-property-in-object': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-typeof-symbol': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.5)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
+ core-js-compat: 3.37.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/types': 7.24.5
esutils: 2.0.3
dev: true
- /@babel/preset-react@7.24.1(@babel/core@7.24.4):
+ /@babel/preset-react@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.4)
- '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.5)
dev: true
- /@babel/preset-typescript@7.24.1(@babel/core@7.24.4):
+ /@babel/preset-typescript@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
dev: true
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
- /@babel/runtime@7.24.4:
- resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
+ /@babel/runtime@7.24.5:
+ resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
@@ -2157,32 +2152,32 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
- /@babel/traverse@7.24.1(supports-color@5.5.0):
- resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
+ /@babel/traverse@7.24.5(supports-color@5.5.0):
+ resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@babel/generator': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.24.0:
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ /@babel/types@7.24.5:
+ resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.5
to-fast-properties: 2.0.0
/@bcoe/v8-coverage@0.2.3:
@@ -2194,32 +2189,20 @@ packages:
hasBin: true
dev: true
- /@coinbase/wallet-sdk@3.7.2:
- resolution: {integrity: sha512-lIGvXMsgpsQWci/XOMQIJ2nIZ8JUy/L+bvC0wkRaYarr0YylwpXrJ2gRM3hCXPS477pkyO7N/kSiAoRgEXUdJQ==}
- engines: {node: '>= 10.0.0'}
+ /@coinbase/wallet-sdk@3.9.3:
+ resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==}
dependencies:
- '@metamask/safe-event-emitter': 2.0.0
- '@solana/web3.js': 1.91.7
- bind-decorator: 1.0.11
bn.js: 5.2.1
buffer: 6.0.3
clsx: 1.2.1
- eth-block-tracker: 6.1.0
- eth-json-rpc-filters: 5.1.0
- eth-rpc-errors: 4.0.2
- json-rpc-engine: 6.1.0
+ eth-block-tracker: 7.1.0
+ eth-json-rpc-filters: 6.0.1
+ eventemitter3: 5.0.1
keccak: 3.0.4
- preact: 10.20.2
- qs: 6.12.1
- rxjs: 6.6.7
+ preact: 10.22.0
sha.js: 2.4.11
- stream-browserify: 3.0.0
- util: 0.12.5
transitivePeerDependencies:
- - bufferutil
- - encoding
- supports-color
- - utf-8-validate
dev: false
/@cspotcode/source-map-support@0.8.1:
@@ -2232,7 +2215,7 @@ packages:
resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
dependencies:
'@babel/helper-module-imports': 7.24.3
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
'@emotion/serialize': 1.1.4
@@ -2318,73 +2301,45 @@ packages:
resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
dev: false
- /@endo/env-options@1.1.3:
- resolution: {integrity: sha512-Em0Y7ZMc90qwCKzpBaFJQbaErDXyYMnVRtPTC1w0qtgYoNOvPe5lzDmXfiZYPyFIyh+9ZhFwDp8rzy+3erMvCw==}
+ /@endo/env-options@1.1.4:
+ resolution: {integrity: sha512-hBwS+uijkN+KDFcEM4FRMvkCeusqm/drC2WuUXZA2aqjzaWgNjneIks3m5VcFmGvEZSpjDmGtGydAS31vdk7Mw==}
dev: true
- /@envelop/core@4.0.3:
- resolution: {integrity: sha512-O0Vz8E0TObT6ijAob8jYFVJavcGywKThM3UAsxUIBBVPYZTMiqI9lo2gmAnbMUnrDcAYkUTZEW9FDYPRdF5l6g==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@envelop/types': 4.0.1
- tslib: 2.6.2
- dev: false
-
- /@envelop/core@5.0.0:
- resolution: {integrity: sha512-aJdnH/ptv+cvwfvciCBe7TSvccBwo9g0S5f6u35TBVzRVqIGkK03lFlIL+x1cnfZgN9EfR2b1PH2galrT1CdCQ==}
+ /@envelop/core@5.0.1:
+ resolution: {integrity: sha512-wxA8EyE1fPnlbP0nC/SFI7uU8wSNf4YjxZhAPu0P63QbgIvqHtHsH4L3/u+rsTruzhk3OvNRgQyLsMfaR9uzAQ==}
engines: {node: '>=18.0.0'}
dependencies:
'@envelop/types': 5.0.0
tslib: 2.6.2
dev: false
- /@envelop/extended-validation@3.0.3(@envelop/core@4.0.3)(graphql@16.8.1):
- resolution: {integrity: sha512-KYYzNTpccryoDq7NXCXXSG8iR0m+1p0QG1L9ud8mZL/A8bxsTyPniw7szM5B3B3VLzojbij9OIW4t7y5HXD90g==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- '@envelop/core': ^4.0.3
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
- dependencies:
- '@envelop/core': 4.0.3
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
- dev: false
-
- /@envelop/extended-validation@4.0.0(@envelop/core@5.0.0)(graphql@16.8.1):
+ /@envelop/extended-validation@4.0.0(@envelop/core@5.0.1)(graphql@16.8.1):
resolution: {integrity: sha512-pvJ/OL+C+lpNiiCXezHT+vP3PTq37MQicoOB1l5MdgOOZZWRAp0NDOgvEKcXUY7AWNpvNHgSE0QFSRfGwsfwFQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@envelop/core': ^5.0.0
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@envelop/core': 5.0.0
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@envelop/core': 5.0.1
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@envelop/graphql-jit@8.0.3(@envelop/core@5.0.0)(graphql@16.8.1):
+ /@envelop/graphql-jit@8.0.3(@envelop/core@5.0.1)(graphql@16.8.1):
resolution: {integrity: sha512-IZnKc7dVOQV9jEi5s5RkG8fVKqc6Ss/mBN9PRt2iYFa9o6XkL/haPLJRfWFsS/CSJfFOQuzLyxYuALA8DaoOYw==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@envelop/core': ^5.0.0
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@envelop/core': 5.0.0
+ '@envelop/core': 5.0.1
graphql: 16.8.1
graphql-jit: 0.8.6(graphql@16.8.1)
tslib: 2.6.2
value-or-promise: 1.0.12
dev: false
- /@envelop/types@4.0.1:
- resolution: {integrity: sha512-ULo27/doEsP7uUhm2iTnElx13qTO6I5FKvmLoX41cpfuw8x6e0NUFknoqhEsLzAbgz8xVS5mjwcxGCXh4lDYzg==}
- engines: {node: '>=16.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
/@envelop/types@5.0.0:
resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==}
engines: {node: '>=18.0.0'}
@@ -3014,32 +2969,32 @@ packages:
js-yaml: 4.1.0
dev: true
- /@floating-ui/core@1.6.0:
- resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
+ /@floating-ui/core@1.6.2:
+ resolution: {integrity: sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==}
dependencies:
- '@floating-ui/utils': 0.2.1
+ '@floating-ui/utils': 0.2.2
dev: false
- /@floating-ui/dom@1.6.3:
- resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
+ /@floating-ui/dom@1.6.5:
+ resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==}
dependencies:
- '@floating-ui/core': 1.6.0
- '@floating-ui/utils': 0.2.1
+ '@floating-ui/core': 1.6.2
+ '@floating-ui/utils': 0.2.2
dev: false
- /@floating-ui/react-dom@2.0.8(react-dom@18.3.0)(react@18.3.0):
- resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
+ /@floating-ui/react-dom@2.0.9(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-q0umO0+LQK4+p6aGyvzASqKbKOJcAHJ7ycE9CuUvfx3s9zTHWmGJTPOIlM/hmSBfUfg/XfY5YhLBLR/LHwShQQ==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@floating-ui/dom': 1.6.3
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@floating-ui/dom': 1.6.5
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@floating-ui/utils@0.2.1:
- resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
+ /@floating-ui/utils@0.2.2:
+ resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
dev: false
/@fortawesome/fontawesome-common-types@6.5.2:
@@ -3072,7 +3027,7 @@ packages:
'@fortawesome/fontawesome-common-types': 6.5.2
dev: false
- /@fortawesome/react-fontawesome@0.2.0(@fortawesome/fontawesome-svg-core@6.5.2)(react@18.3.0):
+ /@fortawesome/react-fontawesome@0.2.0(@fortawesome/fontawesome-svg-core@6.5.2)(react@18.3.1):
resolution: {integrity: sha512-uHg75Rb/XORTtVt7OS9WoK8uM276Ufi7gCzshVWkUJbHhh3svsUUeqXerrM96Wm7fRiDzfKRwSoahhMIkGAYHw==}
peerDependencies:
'@fortawesome/fontawesome-svg-core': ~1 || ~6
@@ -3080,14 +3035,14 @@ packages:
dependencies:
'@fortawesome/fontawesome-svg-core': 6.5.2
prop-types: 15.8.1
- react: 18.3.0
+ react: 18.3.1
dev: false
/@gatsbyjs/parcel-namer-relative-to-cwd@2.13.1(@parcel/core@2.8.3):
resolution: {integrity: sha512-ze0u/CAt6fKV2yQlExkBARi8oqA559lX6/GFWwdtD9S1J4h8Bje70Odl/bcIECvT/w9mWCCQEVtKLvqkraDopw==}
engines: {node: '>=18.0.0', parcel: 2.x}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@parcel/namer-default': 2.8.3(@parcel/core@2.8.3)
'@parcel/plugin': 2.8.3(@parcel/core@2.8.3)
gatsby-core-utils: 4.13.1
@@ -3095,7 +3050,7 @@ packages:
- '@parcel/core'
dev: true
- /@gatsbyjs/reach-router@2.0.1(react-dom@18.3.0)(react@18.3.0):
+ /@gatsbyjs/reach-router@2.0.1(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-gmSZniS9/phwgEgpFARMpNg21PkYDZEpfgEzvkgpE/iku4uvXqCrxr86fXbTpI9mkrhKS1SCTYmLGe60VdHcdQ==}
peerDependencies:
react: 18.x
@@ -3103,8 +3058,8 @@ packages:
dependencies:
invariant: 2.2.4
prop-types: 15.8.1
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: true
/@gatsbyjs/webpack-hot-middleware@2.25.3:
@@ -3115,94 +3070,92 @@ packages:
strip-ansi: 6.0.1
dev: true
- /@graphprotocol/client-add-source-name@2.0.1(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1):
- resolution: {integrity: sha512-pcE40SqDjjnYjE3/CKVz+NERcUZ3/6QrJ1GpACW3qvFLplgbg+Q8axc90S2aTe0zLsMASKf5kBN9L0kWlMGpaw==}
+ /@graphprotocol/client-add-source-name@2.0.3(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1):
+ resolution: {integrity: sha512-30VxjW8yEytySAJ7S+6pC3SII8BGyzQbLTIDr7FPEdj5FHvVKq3WQxDNHwWPEoEYYEEWDlapw3+e7leDwW9MCQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0
+ '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0 || ^0.97.0 || ^0.98.0
'@graphql-tools/delegate': ^9.0.32 || ^10.0.0
'@graphql-tools/utils': ^9.2.1 || ^10.0.0
'@graphql-tools/wrap': ^9.4.2 || ^10.0.0
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
graphql: 16.8.1
lodash: 4.17.21
tslib: 2.6.2
dev: false
- /@graphprotocol/client-auto-pagination@2.0.1(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1):
- resolution: {integrity: sha512-Tt4RybayektKDuDoHPALNPYXx17JL4IwiRn4X7vCz7aih60Ayz3TURpaaizJHichIZ34/10A/FYbHLr9cDeffg==}
+ /@graphprotocol/client-auto-pagination@2.0.3(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1):
+ resolution: {integrity: sha512-ZYMO4/tQ5ndSYeaZ+uucJYFNVc1DYSC6jK5AfJYElEfRMRZrj7jXL6RViBNmsSYuOXR2EIyEqPBOAdy2oDLWdw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0
+ '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0 || ^0.97.0 || ^0.98.0
'@graphql-tools/delegate': ^9.0.32 || ^10.0.0
'@graphql-tools/utils': ^9.2.1 || ^10.0.0
'@graphql-tools/wrap': ^9.4.2 || ^10.0.0
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
graphql: 16.8.1
lodash: 4.17.21
tslib: 2.6.2
dev: false
- /@graphprotocol/client-auto-type-merging@2.0.1(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.4)(graphql@16.8.1):
- resolution: {integrity: sha512-Zp6pXRJV4dBUNwz8R8Ef8DUhYI2FCzE7ywozQKaW80PkAlsCgCwH43UgMZgRfa7L4gkA1mSqsJbbLtkxZUmY6A==}
+ /@graphprotocol/client-auto-type-merging@2.0.3(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.10)(graphql@16.8.1):
+ resolution: {integrity: sha512-vJVzvxk3FRwHc4w9+GP4QBrQ3oxNbveH1k3bEGokSo5DbGMQ2HIYFrGRZ+hICUQBIcqgK+beWa35BZtEMnBWaw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0
+ '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0 || ^0.97.0 || ^0.98.0
'@graphql-tools/delegate': ^9.0.32 || ^10.0.0
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@graphql-mesh/transform-type-merging': 0.94.6(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-mesh/transform-type-merging': 0.98.4(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
- '@graphql-mesh/utils'
dev: false
- /@graphprotocol/client-block-tracking@2.0.1(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(graphql@16.8.1):
- resolution: {integrity: sha512-UcLD9/bMOu6yxdV3gseU/3flGRZpDzCqR6m3N/9dxkjxucnwNmfVDtdNSC1w7m93l3F60fAxJnsqntoS0Wvvwg==}
+ /@graphprotocol/client-block-tracking@2.0.2(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-tools/delegate@10.0.10)(graphql@16.8.1):
+ resolution: {integrity: sha512-gVOUq77kxniXk3kQ+Bl2GHB5HvYYDChV/e2YMxHieVgCVEmQ/CzRRDdSfBf898ZAyqeY3QNsdbR/EpcEyM4bFw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@graphql-tools/delegate': ^9.0.32 || ^10.0.0
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@graphql-mesh/fusion-runtime': 0.2.12(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(graphql@16.8.1)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/fusion-runtime': 0.3.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
- '@graphql-mesh/cross-helpers'
- - '@graphql-mesh/types'
- - bufferutil
- - utf-8-validate
+ - '@graphql-mesh/store'
dev: false
- /@graphprotocol/client-cli@3.0.1(@envelop/core@5.0.0)(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(graphql@16.8.1):
- resolution: {integrity: sha512-XrX4BK0ZGT2AVZw6lPvpHhnBX9Q5OdIR/g1+tMfc7wHlC5vawfrFcw+lBbOyPHlbTyfNsmDAd7t1xcRR4gSHPQ==}
+ /@graphprotocol/client-cli@3.0.3(@envelop/core@5.0.1)(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-cFukNLDqkPLEtZYfz8xDOLbX8/Wslv30QOL8RHsqodnlpMCJYB52VSj8qzNE+KM8/AWCDMZk+7+tgmThraVbPA==}
engines: {node: '>=16.0.0'}
hasBin: true
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@graphprotocol/client-add-source-name': 2.0.1(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1)
- '@graphprotocol/client-auto-pagination': 2.0.1(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1)
- '@graphprotocol/client-auto-type-merging': 2.0.1(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.4)(graphql@16.8.1)
- '@graphprotocol/client-block-tracking': 2.0.1(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(graphql@16.8.1)
- '@graphprotocol/client-polling-live': 2.0.1(@envelop/core@5.0.0)(@graphql-tools/merge@9.0.3)(graphql@16.8.1)
- '@graphql-mesh/cli': 0.84.0(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(graphql@16.8.1)
- '@graphql-mesh/graphql': 0.94.7(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(@types/node@20.12.7)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphprotocol/client-add-source-name': 2.0.3(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1)
+ '@graphprotocol/client-auto-pagination': 2.0.3(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(graphql@16.8.1)
+ '@graphprotocol/client-auto-type-merging': 2.0.3(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.10)(graphql@16.8.1)
+ '@graphprotocol/client-block-tracking': 2.0.2(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-tools/delegate@10.0.10)(graphql@16.8.1)
+ '@graphprotocol/client-polling-live': 2.0.1(@envelop/core@5.0.1)(@graphql-tools/merge@9.0.4)(graphql@16.8.1)
+ '@graphql-mesh/cli': 0.90.5(@types/node@20.12.12)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(graphql@16.8.1)
+ '@graphql-mesh/graphql': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
@@ -3218,15 +3171,20 @@ packages:
- '@swc/core'
- '@swc/wasm'
- '@types/node'
+ - '@types/react'
- bufferutil
- encoding
- graphql-tag
+ - graphql-ws
- graphql-yoga
+ - react
+ - react-dom
+ - subscriptions-transport-ws
- supports-color
- utf-8-validate
dev: false
- /@graphprotocol/client-polling-live@2.0.1(@envelop/core@5.0.0)(@graphql-tools/merge@9.0.3)(graphql@16.8.1):
+ /@graphprotocol/client-polling-live@2.0.1(@envelop/core@5.0.1)(@graphql-tools/merge@9.0.4)(graphql@16.8.1):
resolution: {integrity: sha512-jE+9cOM5gAC18uMA7nC7w5X/ru4U4ZrZxWqh3N+gxoLIPpnNYerwzRfFJskPyzl0QQjMiUMua9agqKCyxNBlOA==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -3234,22 +3192,22 @@ packages:
'@graphql-tools/merge': ^8.3.14 || ^9.0.0
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@envelop/core': 5.0.0
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
- '@repeaterjs/repeater': 3.0.5
+ '@envelop/core': 5.0.1
+ '@graphql-tools/merge': 9.0.4(graphql@16.8.1)
+ '@repeaterjs/repeater': 3.0.6
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphprotocol/graph-cli@0.71.0(@types/node@20.12.7)(node-fetch@2.7.0)(typescript@4.9.5):
+ /@graphprotocol/graph-cli@0.71.0(@types/node@20.12.12)(node-fetch@2.7.0)(typescript@4.9.5):
resolution: {integrity: sha512-ITcSBHuXPuaoRs7FzNtqD0tCOIy4JGsM3j4IQNA2yZgXgr/TmmHG7KTB/c3B5Zlnsr9foXrU71T6ixGmwJ4PKw==}
engines: {node: '>=18'}
hasBin: true
dependencies:
'@float-capital/float-subgraph-uncrashable': 0.0.0-internal-testing.5
- '@oclif/core': 2.8.6(@types/node@20.12.7)(typescript@4.9.5)
- '@oclif/plugin-autocomplete': 2.3.10(@types/node@20.12.7)(typescript@4.9.5)
- '@oclif/plugin-not-found': 2.4.3(@types/node@20.12.7)(typescript@4.9.5)
+ '@oclif/core': 2.8.6(@types/node@20.12.12)(typescript@4.9.5)
+ '@oclif/plugin-autocomplete': 2.3.10(@types/node@20.12.12)(typescript@4.9.5)
+ '@oclif/plugin-not-found': 2.4.3(@types/node@20.12.12)(typescript@4.9.5)
'@whatwg-node/fetch': 0.8.8
assemblyscript: 0.19.23
binary-install-raw: 0.0.13(debug@4.3.4)
@@ -3267,7 +3225,7 @@ packages:
jayson: 4.0.0
js-yaml: 3.14.1
prettier: 3.0.3
- semver: 7.6.0
+ semver: 7.6.2
sync-request: 6.1.0
tmp-promise: 3.0.3
web3-eth-abi: 1.7.0
@@ -3320,7 +3278,7 @@ packages:
dependencies:
'@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
@@ -3356,7 +3314,7 @@ packages:
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
change-case-all: 1.0.15
common-tags: 1.8.2
graphql: 16.8.1
@@ -3382,7 +3340,7 @@ packages:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
@@ -3460,7 +3418,7 @@ packages:
'@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
'@graphql-codegen/typescript': 4.0.6(graphql@16.8.1)
'@graphql-codegen/visitor-plugin-common': 5.1.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
auto-bind: 4.0.0
graphql: 16.8.1
tslib: 2.6.2
@@ -3551,7 +3509,7 @@ packages:
'@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
'@graphql-tools/optimize': 2.0.0(graphql@16.8.1)
'@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
@@ -3576,23 +3534,19 @@ packages:
tslib: 2.6.0
dev: false
- /@graphql-mesh/cache-localforage@0.94.6(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-mzWHReKQ8/St1LX7/8lY0ueJ6GUH3Ck5TxIe64LoIB5j2WdhDV7GT5hDHgzxKia8hLPgMTs/rqLoDRLQKkmSww==}
+ /@graphql-inspector/core@5.0.2(graphql@16.8.1):
+ resolution: {integrity: sha512-pXHPCggwLmgi5NACPPV4qyf2xW/sQONnu6ZqCAid3k/S2APmVYN4Z3OvxvLA12NFhzby5Sz5K4fRsId43cK8ww==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/types': ^0.94.6
- '@graphql-mesh/utils': ^0.94.6
- graphql: '*'
- tslib: ^2.4.0
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ dependency-graph: 0.11.0
graphql: 16.8.1
- localforage: 1.10.0
+ object-inspect: 1.12.3
tslib: 2.6.2
dev: false
- /@graphql-mesh/cache-localforage@0.95.8(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2):
+ /@graphql-mesh/cache-localforage@0.95.8(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-PgCTHh1dLwjmusWEWAMQkglL7gR8VyyT9pzTcYBVFhGYNXysepCrl85QtaqtEMnR/YijgpCWaKGIYK+bosQZsg==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -3601,15 +3555,31 @@ packages:
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ graphql: 16.8.1
+ localforage: 1.10.0
+ tslib: 2.6.2
+ dev: false
+
+ /@graphql-mesh/cache-localforage@0.98.4(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-t6pWkyN44bORFcLIQxSVcadEtfMvJ9eCcFQd3RvLBeitOKQw31VYQriqFYqoneQqfa27k/ZOozgpYreS1aaY+w==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ graphql: '*'
+ tslib: ^2.4.0
+ dependencies:
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
graphql: 16.8.1
localforage: 1.10.0
tslib: 2.6.2
dev: false
- /@graphql-mesh/cli@0.84.0(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(graphql@16.8.1):
- resolution: {integrity: sha512-8/qr5UJmw6WK5lm7mbyyMQq9gPAg2Ue8X6N96LzFL6giifEGhWgybndXqRq9edM1ycRCqQo0qENLiR5G+enj8g==}
+ /@graphql-mesh/cli@0.90.5(@types/node@20.12.12)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(graphql@16.8.1):
+ resolution: {integrity: sha512-qXjr4XQBqXMkwv1KkGBogLheU2BfUHjT/5GDmT2uTzC8iDr9EHQoXEScxOBz9RFWEXll+PxMe2p7E5mNUz8fFQ==}
engines: {node: '>=16.0.0'}
hasBin: true
peerDependencies:
@@ -3621,18 +3591,17 @@ packages:
'@graphql-codegen/typescript-generic-sdk': 3.1.0(graphql-tag@2.12.6)(graphql@16.8.1)
'@graphql-codegen/typescript-operations': 4.2.0(graphql@16.8.1)
'@graphql-codegen/typescript-resolvers': 4.0.6(graphql@16.8.1)
- '@graphql-mesh/config': 0.95.0(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/runtime@0.94.2)(@graphql-mesh/store@0.94.6)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql-yoga@4.0.5)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/http': 0.94.5(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/runtime@0.94.2)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/runtime': 0.94.2(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/store': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- ajv: 8.12.0
+ '@graphql-mesh/config': 0.100.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.99.5)(@graphql-mesh/store@0.98.4)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql-yoga@5.3.1)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/http': 0.99.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.99.5)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/runtime': 0.99.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/store': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
+ ajv: 8.13.0
change-case: 4.1.2
- cosmiconfig: 8.3.6(typescript@5.4.5)
- dnscache: 1.0.2
+ cosmiconfig: 9.0.0(typescript@5.4.5)
dotenv: 16.4.5
graphql: 16.8.1
graphql-import-node: 0.0.5(graphql@16.8.1)
@@ -3642,13 +3611,15 @@ packages:
mkdirp: 3.0.1
open: 7.4.2
pascal-case: 3.1.2
- rimraf: 5.0.5
- ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5)
+ rimraf: 5.0.7
+ ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5)
tsconfig-paths: 4.2.0
tslib: 2.6.2
typescript: 5.4.5
- uWebSockets.js: github.com/uNetworking/uWebSockets.js/d39d4181daf5b670d44cbc1b18f8c28c85fd4142
+ uWebSockets.js: github.com/uNetworking/uWebSockets.js/1977b5039938ad863d42fc4958d48c17e5a1fa06
yargs: 17.7.2
+ optionalDependencies:
+ node-libcurl: 4.0.0
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
@@ -3659,33 +3630,33 @@ packages:
- supports-color
dev: false
- /@graphql-mesh/config@0.95.0(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/runtime@0.94.2)(@graphql-mesh/store@0.94.6)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql-yoga@4.0.5)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-vtGhkTokHKfTAZTHIAK8SYxNE+JQ38dpR/r7TNtDh9dHKHgLSiDBuQ6rYoTqV1+hSm9P63OfYltM7BCmDgDcXg==}
+ /@graphql-mesh/config@0.100.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.99.5)(@graphql-mesh/store@0.98.4)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql-yoga@5.3.1)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-9H2EW8+PqQ1N+YOJ4GWJxmvEKeEjy7oNs/VBayAOUw7lVSVE/97IoeOs9SORaJplvNwSVPwdF0zM/RVMm1GwyA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.0
- '@graphql-mesh/runtime': ^0.94.2
- '@graphql-mesh/store': ^0.94.2
- '@graphql-mesh/types': ^0.94.2
- '@graphql-mesh/utils': ^0.94.2
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/cross-helpers': ^0.4.2
+ '@graphql-mesh/runtime': ^0.99.5
+ '@graphql-mesh/store': ^0.98.4
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@envelop/core': 4.0.3
- '@graphql-mesh/cache-localforage': 0.94.6(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/merger-bare': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/merger-stitching': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/runtime': 0.94.2(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/store': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/code-file-loader': 8.1.1(graphql@16.8.1)
+ '@envelop/core': 5.0.1
+ '@graphql-mesh/cache-localforage': 0.98.4(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/merger-bare': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/merger-stitching': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/runtime': 0.99.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/store': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/code-file-loader': 8.1.2(graphql@16.8.1)
'@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1)
'@graphql-tools/load': 8.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- '@graphql-yoga/plugin-persisted-operations': 2.0.5(@graphql-tools/utils@10.1.3)(graphql-yoga@4.0.5)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
+ '@graphql-yoga/plugin-persisted-operations': 3.3.1(@graphql-tools/utils@10.2.0)(graphql-yoga@5.3.1)(graphql@16.8.1)
'@whatwg-node/fetch': 0.9.17
camel-case: 4.1.2
graphql: 16.8.1
@@ -3697,110 +3668,98 @@ packages:
- supports-color
dev: false
- /@graphql-mesh/cross-helpers@0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1):
- resolution: {integrity: sha512-NkLzFuY72tmmKO7gKWoDzoYcRVf3lLoCdlw30fSNKFKEWDAV3Tyh4v0fPvU3SEmoTJio7v0TIYZqtVt3dBBDFw==}
+ /@graphql-mesh/cross-helpers@0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1):
+ resolution: {integrity: sha512-rx/fWJ6Cgdp6w+dnxm6uVMrtJamjZT2SbNprEJnaSgThbm6EzLYSVGZzfALlXNCr3dUT5fOtnTu+JFWvWZxjcg==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
path-browserify: 1.0.1
dev: false
- /@graphql-mesh/fusion-execution@0.0.2(graphql@16.8.1):
- resolution: {integrity: sha512-Z9+ijeEb5hUHonGqWkUvNIigLAdh3ZNUfS6baYCbGOtArGX+zfg/VfXK/3KSK8btHZJSDdSXi4L1iXQKTeithg==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- '@repeaterjs/repeater': 3.0.5
- fast-json-patch: 3.1.1
- graphql: 16.8.1
- lodash: 4.17.21
- tslib: 2.6.2
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- dev: false
-
- /@graphql-mesh/fusion-runtime@0.2.12(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(graphql@16.8.1):
- resolution: {integrity: sha512-kcsAFlBCLOOKFa5iceWD1095+6uo9jaN8SQwP/BCasXf6yUSMtViJ/iGFwirbhmYPeiHVON+qe4lKwHkZ/sHRw==}
+ /@graphql-mesh/fusion-runtime@0.3.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(graphql@16.8.1):
+ resolution: {integrity: sha512-gMtK5gGeEssF6KUkCDv5FmLxxae76jyReUPomH+lPRnS5GIY/tbs6aaL7YRkcrNOI6nYV3Yglolnh12t5kKl2w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-mesh/fusion-execution': 0.0.2(graphql@16.8.1)
- '@graphql-mesh/runtime': 0.98.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.97.5)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/transport-common': 0.1.5(@graphql-mesh/types@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.97.5(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/stitch': 9.1.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/runtime': 0.99.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/transport-common': 0.2.4(@graphql-mesh/types@0.98.4)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/stitch': 9.2.8(graphql@16.8.1)
+ '@graphql-tools/stitching-directives': 3.0.2(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
+ '@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
graphql: 16.8.1
- graphql-yoga: 5.3.0(graphql@16.8.1)
+ graphql-yoga: 5.3.1(graphql@16.8.1)
tslib: 2.6.2
transitivePeerDependencies:
- '@graphql-mesh/cross-helpers'
- - '@graphql-mesh/types'
- - bufferutil
- - utf-8-validate
+ - '@graphql-mesh/store'
dev: false
- /@graphql-mesh/graphql@0.94.7(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(@types/node@20.12.7)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-f7kXfMH2TFpYpZovD9P2kVvdm8GwZmKLjYJKIgg1qyS9wKYkspBcfSMN6wO+xYlmMO+E/aLhoHYJy7OrtUikvA==}
+ /@graphql-mesh/graphql@0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-mEbz2XYSgRTdNidUBWB7FT3QzLliJwxJIoqipSbZNputJqSbUZZ6QD/oI1IrdPXqVl/ELE2CuLiogkOSO24C1Q==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.0
- '@graphql-mesh/store': ^0.94.6
- '@graphql-mesh/types': ^0.94.6
- '@graphql-mesh/utils': ^0.94.6
+ '@graphql-mesh/cross-helpers': ^0.4.1
+ '@graphql-mesh/store': ^0.95.8
+ '@graphql-mesh/types': ^0.95.8
+ '@graphql-mesh/utils': ^0.95.8
'@graphql-tools/utils': ^9.2.1 || ^10.0.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.2(@types/node@20.12.7)(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- '@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/string-interpolation': 0.5.4(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/federation': 1.1.35(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)
+ '@graphql-tools/url-loader': 8.0.2(@types/node@20.12.12)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
lodash.get: 4.4.2
tslib: 2.6.2
transitivePeerDependencies:
- '@types/node'
+ - '@types/react'
- bufferutil
- encoding
+ - graphql-ws
+ - react
+ - react-dom
+ - subscriptions-transport-ws
- utf-8-validate
dev: false
- /@graphql-mesh/graphql@0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(@types/node@20.12.7)(@types/react@18.2.79)(graphql@16.8.1)(react-dom@18.3.0)(react@18.3.0)(tslib@2.6.2):
- resolution: {integrity: sha512-mEbz2XYSgRTdNidUBWB7FT3QzLliJwxJIoqipSbZNputJqSbUZZ6QD/oI1IrdPXqVl/ELE2CuLiogkOSO24C1Q==}
+ /@graphql-mesh/graphql@0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-gt3/rDylShniGsdAzq3xkULUWY4s3j8uRoxOn3C8F7Bmi7kVqH0FAfgel53MWB24qxjJe3KrxmhhDURet9t0KA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.1
- '@graphql-mesh/store': ^0.95.8
- '@graphql-mesh/types': ^0.95.8
- '@graphql-mesh/utils': ^0.95.8
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/cross-helpers': ^0.4.2
+ '@graphql-mesh/store': ^0.98.4
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/federation': 1.1.27(@types/node@20.12.7)(@types/react@18.2.79)(graphql@16.8.1)(react-dom@18.3.0)(react@18.3.0)
- '@graphql-tools/url-loader': 8.0.2(@types/node@20.12.7)(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/string-interpolation': 0.5.4(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/federation': 1.1.35(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)
+ '@graphql-tools/url-loader': 8.0.2(@types/node@20.12.12)(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
lodash.get: 4.4.2
tslib: 2.6.2
@@ -3816,28 +3775,7 @@ packages:
- utf-8-validate
dev: false
- /@graphql-mesh/http@0.94.5(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/runtime@0.94.2)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-Z1XfM/FFbXcTnFnB41ckbwgNArf8/uqKXDhs3vOhAQXqIcMNhYT+DjkN6lxQG90KFVL5pyeWsXq6UO0VoMhxew==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.0
- '@graphql-mesh/runtime': ^0.94.2
- '@graphql-mesh/types': ^0.94.2
- '@graphql-mesh/utils': ^0.94.2
- graphql: '*'
- tslib: ^2.4.0
- dependencies:
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/runtime': 0.94.2(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@whatwg-node/server': 0.9.33
- graphql: 16.8.1
- graphql-yoga: 4.0.5(graphql@16.8.1)
- tslib: 2.6.2
- dev: false
-
- /@graphql-mesh/http@0.96.14(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/runtime@0.96.13)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2):
+ /@graphql-mesh/http@0.96.14(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.96.13)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-38Mxw2K2RABBBO0IiXKZDu2o+jlM4vcUSEg+9h2Dz67oOJZHpKeId6z1PFb7uYMzAs29yoMcqXIEnews+HVhrQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -3848,38 +3786,40 @@ packages:
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/runtime': 0.96.13(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@whatwg-node/server': 0.9.33
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/runtime': 0.96.13(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@whatwg-node/server': 0.9.34
graphql: 16.8.1
- graphql-yoga: 5.3.0(graphql@16.8.1)
+ graphql-yoga: 5.3.1(graphql@16.8.1)
tslib: 2.6.2
dev: false
- /@graphql-mesh/merger-bare@0.94.6(@graphql-mesh/store@0.94.6)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-qVQdklNvpv1kc8D/H304LqZdeMmazvmy7A+KnPj1Ot9LmUTRwRQ8PZ8KrXZFpmZPpU/ItIdL2f/jh4E3rxtESg==}
+ /@graphql-mesh/http@0.99.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.99.5)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-sHcstYCjxN+EBtSnmQCjR6AwmETOvcQUNILeWxOMnWwZ/AZslZwkoaXbp6yQfV6P+vX//gGujKClqnrY073kUA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/types': ^0.94.6
- '@graphql-mesh/utils': ^0.94.6
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/cross-helpers': ^0.4.2
+ '@graphql-mesh/runtime': ^0.99.5
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/merger-stitching': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/schema': 10.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/runtime': 0.99.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
+ '@whatwg-node/server': 0.9.34
graphql: 16.8.1
+ graphql-yoga: 5.3.1(graphql@16.8.1)
tslib: 2.6.2
- transitivePeerDependencies:
- - '@graphql-mesh/store'
dev: false
- /@graphql-mesh/merger-bare@0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
+ /@graphql-mesh/merger-bare@0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-E5R8Sv5Dkp+eswYKEDHgu8puwSeolPX1j9IHwBVe1npRRCXc3CjMsQJ9+kcTln453vbSBcM1a3fQspIaKA1Tcg==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -3889,41 +3829,39 @@ packages:
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/merger-stitching': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/merger-stitching': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-tools/schema': 10.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
- '@graphql-mesh/store'
dev: false
- /@graphql-mesh/merger-stitching@0.94.6(@graphql-mesh/store@0.94.6)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-gD5KH42IFqeUK7SVM1IcDOOcv0jEOxiS22x4QT6dRIsecORJ+uMr6CTtI4V0nknGD+B2gA2Im25QfCR0KZPKxg==}
+ /@graphql-mesh/merger-bare@0.98.4(@graphql-mesh/store@0.98.4)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-izDZMZy2dOnWR13STj2BjAr381prdHjq3x+cH8OwDH2Fpn6aLTeH7M9Xi7qO1PNxNCgVCzYvtQE9ZaEpwTYHeQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/store': ^0.94.6
- '@graphql-mesh/types': ^0.94.6
- '@graphql-mesh/utils': ^0.94.6
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/store': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-mesh/merger-stitching': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/stitch': 9.1.2(graphql@16.8.1)
- '@graphql-tools/stitching-directives': 3.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
+ transitivePeerDependencies:
+ - '@graphql-mesh/store'
dev: false
- /@graphql-mesh/merger-stitching@0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
+ /@graphql-mesh/merger-stitching@0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-eAukU8AsjK8jIT3vFhalGoERh98xZgzKkTCQL7w2wPpFXveSDMn+9fVvCJ1EBKTsLa7SkNXqzAFkfYp21hW0ng==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -3934,45 +3872,40 @@ packages:
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
'@graphql-tools/schema': 10.0.0(graphql@16.8.1)
- '@graphql-tools/stitch': 9.1.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/stitch': 9.2.8(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/runtime@0.94.2(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-gZJcK5o8TlDg2Lc9b6JXeq3OgfxthvQOseSsdpylgOV9zx/6kT0p9x3rqBwTN6zWTz7lYiCZ4TDGoWQvu5kJ1A==}
+ /@graphql-mesh/merger-stitching@0.98.4(@graphql-mesh/store@0.98.4)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-sRudqg7erMPGhTF4r/ozuZkKOHkjQJJwaG8mZ4qOufvc0R5chRSH+MPP2W35LDi9wjwnWY80YbjVSSXEpZ3T2Q==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.0
- '@graphql-mesh/types': ^0.94.2
- '@graphql-mesh/utils': ^0.94.2
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/store': ^0.98.4
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@envelop/core': 4.0.3
- '@envelop/extended-validation': 3.0.3(@envelop/core@4.0.3)(graphql@16.8.1)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/batch-delegate': 9.0.2(graphql@16.8.1)
- '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.1)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- '@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
- '@whatwg-node/fetch': 0.9.17
+ '@graphql-mesh/store': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/schema': 10.0.3(graphql@16.8.1)
+ '@graphql-tools/stitch': 9.2.8(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/runtime@0.96.13(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
+ /@graphql-mesh/runtime@0.96.13(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-eZIW/gdEVLvCLEEae8e3lny7d89CFfDyu0Z0xu4yVEdYeVpG9Ki2mDYFHztusIIkZikecvdsoM9MZX6LYcPOkg==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -3983,17 +3916,17 @@ packages:
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@envelop/core': 5.0.0
- '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.0)(graphql@16.8.1)
- '@envelop/graphql-jit': 8.0.3(@envelop/core@5.0.0)(graphql@16.8.1)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ '@envelop/core': 5.0.1
+ '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.1)(graphql@16.8.1)
+ '@envelop/graphql-jit': 8.0.3(@envelop/core@5.0.1)(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/string-interpolation': 0.5.4(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-tools/batch-delegate': 9.0.2(graphql@16.8.1)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
'@graphql-tools/executor': 1.2.6(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
'@whatwg-node/fetch': 0.9.17
graphql: 16.8.1
@@ -4001,28 +3934,28 @@ packages:
tslib: 2.6.2
dev: false
- /@graphql-mesh/runtime@0.98.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.97.5)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-s8EVdZbWI0r5kvQwDTobc8rU2ox+cGCv6vWGbmdN1NUwKDi4W8Fcisyc/2k7xX+FzCcW3uknlmE3sIbLVsmzUQ==}
+ /@graphql-mesh/runtime@0.99.5(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-JNQrS1qMEENn2swd79BXy/6dwJL+5j8B+/UYkg1lZOKpQ5C4dFdl5+wkXiq/6rdNUK8d6Jeczbo4NeMrqHLoJQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.1
- '@graphql-mesh/types': ^0.97.5
- '@graphql-mesh/utils': ^0.97.5
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/cross-helpers': ^0.4.2
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@envelop/core': 5.0.0
- '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.0)(graphql@16.8.1)
- '@envelop/graphql-jit': 8.0.3(@envelop/core@5.0.0)(graphql@16.8.1)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.97.5(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ '@envelop/core': 5.0.1
+ '@envelop/extended-validation': 4.0.0(@envelop/core@5.0.1)(graphql@16.8.1)
+ '@envelop/graphql-jit': 8.0.3(@envelop/core@5.0.1)(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/string-interpolation': 0.5.4(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-tools/batch-delegate': 9.0.2(graphql@16.8.1)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
'@graphql-tools/executor': 1.2.6(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
'@whatwg-node/fetch': 0.9.17
graphql: 16.8.1
@@ -4030,153 +3963,129 @@ packages:
tslib: 2.6.2
dev: false
- /@graphql-mesh/store@0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-BHpoa6btmgTedvwatbx1UORhnOUStYQJSitr2oXUIP4YN3DrRH3hf/BhwGiNWXq/AgTi4ZldXgJ8RA1OEXeX8Q==}
+ /@graphql-mesh/store@0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-29lpMcvqS1DM9alUOCyj6he2V7ZzG/DZxkerRefT8Mo5FexwJZI3LeI0YHNSY9Cq0x8KzRoH1TWcTTN/1PDRRw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.0
- '@graphql-mesh/types': ^0.94.6
- '@graphql-mesh/utils': ^0.94.6
+ '@graphql-mesh/cross-helpers': ^0.4.1
+ '@graphql-mesh/types': ^0.95.8
+ '@graphql-mesh/utils': ^0.95.8
'@graphql-tools/utils': ^9.2.1 || ^10.0.0
graphql: '*'
tslib: ^2.4.0
dependencies:
'@graphql-inspector/core': 5.0.1(graphql@16.8.1)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/store@0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-29lpMcvqS1DM9alUOCyj6he2V7ZzG/DZxkerRefT8Mo5FexwJZI3LeI0YHNSY9Cq0x8KzRoH1TWcTTN/1PDRRw==}
+ /@graphql-mesh/store@0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-aitkzzNyx+49jCWaiCzTZlsGbnEl2yuf6jMrTy5hgYB5kAKuS+gXiW8rDGvFTnTlsdu0BWUh14XnCWfuqR+r2Q==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.1
- '@graphql-mesh/types': ^0.95.8
- '@graphql-mesh/utils': ^0.95.8
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/cross-helpers': ^0.4.2
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-inspector/core': 5.0.1(graphql@16.8.1)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-inspector/core': 5.0.2(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/string-interpolation@0.5.3(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-/R4kj3M1uqUie/7RZ58zgRrT8RBrDsCCR6ii00s62DbLsl+jZYOZFyTqHGsFbP7L7aHnl0fo1dwhEJIs+rjCLg==}
+ /@graphql-mesh/string-interpolation@0.5.4(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-Luw/AFPcvTBBNr3KC7d9REyAEC8ZS6HUZiGMKOGYp+uviHUjX30loEVMOkLdrVNPN4Qf35k6yt4NpapTXqcl/Q==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: '*'
tslib: ^2.4.0
dependencies:
- dayjs: 1.11.10
+ dayjs: 1.11.11
graphql: 16.8.1
json-pointer: 0.6.2
lodash.get: 4.4.2
tslib: 2.6.2
dev: false
- /@graphql-mesh/transform-type-merging@0.94.6(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-WKcb34/BEcHD4U0yOTMWDBCMd+CmFMo3SiRixJ5QAUXnd+ESdjlMLeLPN+iLIKPA675Zr/a4apttcL/VYD7DYQ==}
+ /@graphql-mesh/transform-type-merging@0.98.4(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-inQVZ/QjkBpuWMytLNSkimYDCKlPFwa1emQJmpq/Tp8FL/fHpsk3pNeVMtQ3hs7cV9D3qMCxA8XcyDiwt82l4w==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/types': ^0.94.6
- '@graphql-mesh/utils': ^0.94.6
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-mesh/utils': ^0.98.4
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
'@graphql-tools/stitching-directives': 3.0.2(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/transport-common@0.1.5(@graphql-mesh/types@0.95.8)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-TwIhjde4hAvsP5SkEjj1fMiSPCsrxTPe6Ddw0+160lM1T6flkinXlZKATilSX28IZjwXBwfqstgt/B2/wJnpvw==}
+ /@graphql-mesh/transport-common@0.2.4(@graphql-mesh/types@0.98.4)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-AhqYa0xVmMptw4Dy+ZuBQLSF08wh39gOwQmWu4NkH492gV49aEmw6gr81uL8YNIVo0bTmD6UMdlie7tY/Ll2GQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/types': ^0.97.5
+ '@graphql-mesh/types': ^0.98.4
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/types@0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-Dir0ETwXhNK0Du5CHQ51xnBu/t5PhcTBbQVniPq/zgM02FJZRvbRHqlg2/Q1g3X3M9dIjs787XLhEarG4imL2g==}
+ /@graphql-mesh/types@0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-9H5HGtT+jP2SHOR2+yde6iqB+nlj4UHg1hE4anEc6/dpnbEOdg4QY4VIPsz6OyRgPByYUBJHm7hwkfr6j2XIDA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/store': ^0.94.6
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/store': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/store': 0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-tools/batch-delegate': 9.0.2(graphql@16.8.1)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/types@0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-H2xh5KGc3+Ly3VdAPnRdKTibZpW9zEFgUzsozL9MQhCs6WLX+/kOADb0uIDqYFKX5c/2axmcy87BFNOausXYig==}
+ /@graphql-mesh/types@0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-9H5HGtT+jP2SHOR2+yde6iqB+nlj4UHg1hE4anEc6/dpnbEOdg4QY4VIPsz6OyRgPByYUBJHm7hwkfr6j2XIDA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/store': ^0.95.8
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/store': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/store': 0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@graphql-tools/batch-delegate': 9.0.2(graphql@16.8.1)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-mesh/utils@0.94.6(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-EqMNzthWtnOtMrjAbrtVmNBV1a9vDwsCXHqRTaYAP9IWoBeoumq9xHueot6nLaY91cTgFsprnxyhaAXgxSCb9A==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.0
- '@graphql-mesh/types': ^0.94.6
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
- graphql: '*'
- tslib: ^2.4.0
- dependencies:
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.94.6(@graphql-mesh/store@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- dset: 3.1.3
- graphql: 16.8.1
- js-yaml: 4.1.0
- lodash.get: 4.4.2
- lodash.topath: 4.5.2
- tiny-lru: 11.2.6
- tslib: 2.6.2
- dev: false
-
- /@graphql-mesh/utils@0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
+ /@graphql-mesh/utils@0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-gH2/kXvxMHVWMX8DppIIZpFfSUaoKDJ6eQHFoAAsdabGE+vLtVk0OEYqMGVGtD/8ZDFa/P6CmwXc6hBzoLY6Kg==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -4186,11 +4095,11 @@ packages:
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/string-interpolation': 0.5.4(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@whatwg-node/fetch': 0.9.17
dset: 3.1.3
graphql: 16.8.1
@@ -4201,21 +4110,21 @@ packages:
tslib: 2.6.2
dev: false
- /@graphql-mesh/utils@0.97.5(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2):
- resolution: {integrity: sha512-v6USLChBkKSfo4V/tFphxF8NJFnEZkpKc+ij8LyDL1clr9KR3knCTpDuAlyLFAopp7oEntmFYR6RzdrnhjvRwA==}
+ /@graphql-mesh/utils@0.98.4(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2):
+ resolution: {integrity: sha512-vmbNTr19Pc1YMi5wjivCWMLei4h2FB/MfZBRSId5KV5LUAmhK/hXCBKpLlS+vUIIn2LXFH4h7IZnadfZ0h1xLQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@graphql-mesh/cross-helpers': ^0.4.1
- '@graphql-mesh/types': ^0.97.5
- '@graphql-tools/utils': ^9.2.1 || ^10.0.0
+ '@graphql-mesh/cross-helpers': ^0.4.2
+ '@graphql-mesh/types': ^0.98.4
+ '@graphql-tools/utils': ^10.2.0
graphql: '*'
tslib: ^2.4.0
dependencies:
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/string-interpolation': 0.5.3(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/types': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/string-interpolation': 0.5.4(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/types': 0.98.4(@graphql-mesh/store@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@whatwg-node/fetch': 0.9.17
dset: 3.1.3
graphql: 16.8.1
@@ -4232,8 +4141,8 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
dataloader: 2.2.2
graphql: 16.8.1
tslib: 2.6.2
@@ -4246,19 +4155,19 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
dataloader: 2.2.2
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/code-file-loader@7.3.23(@babel/core@7.24.4)(graphql@16.8.1):
+ /@graphql-tools/code-file-loader@7.3.23(@babel/core@7.24.5)(graphql@16.8.1):
resolution: {integrity: sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.4)(graphql@16.8.1)
+ '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.5)(graphql@16.8.1)
'@graphql-tools/utils': 9.2.1(graphql@16.8.1)
globby: 11.1.0
graphql: 16.8.1
@@ -4269,14 +4178,14 @@ packages:
- supports-color
dev: true
- /@graphql-tools/code-file-loader@8.1.1(graphql@16.8.1):
- resolution: {integrity: sha512-q4KN25EPSUztc8rA8YUU3ufh721Yk12xXDbtUA+YstczWS7a1RJlghYMFEfR1HsHSYbF7cUqkbnTKSGM3o52bQ==}
+ /@graphql-tools/code-file-loader@8.1.2(graphql@16.8.1):
+ resolution: {integrity: sha512-GrLzwl1QV2PT4X4TEEfuTmZYzIZHLqoTGBjczdUzSqgCCcqwWzLB3qrJxFQfI8e5s1qZ1bhpsO9NoMn7tvpmyA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
globby: 11.1.0
graphql: 16.8.1
tslib: 2.6.2
@@ -4285,8 +4194,8 @@ packages:
- supports-color
dev: false
- /@graphql-tools/delegate@10.0.4(graphql@16.8.1):
- resolution: {integrity: sha512-WswZRbQZMh/ebhc8zSomK9DIh6Pd5KbuiMsyiKkKz37TWTrlCOe+4C/fyrBFez30ksq6oFyCeSKMwfrCbeGo0Q==}
+ /@graphql-tools/delegate@10.0.10(graphql@16.8.1):
+ resolution: {integrity: sha512-OOqsPRfGatQG0qMKG3sxtxHiRg7cA6OWMTuETDvwZCoOuxqCc17K+nt8GvaqptNJi2/wBgeH7pi7wA5QzgiG1g==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4294,7 +4203,7 @@ packages:
'@graphql-tools/batch-execute': 9.0.4(graphql@16.8.1)
'@graphql-tools/executor': 1.2.6(graphql@16.8.1)
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
dataloader: 2.2.2
graphql: 16.8.1
tslib: 2.6.2
@@ -4306,30 +4215,30 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@types/ws': 8.5.10
graphql: 16.8.1
graphql-ws: 5.16.0(graphql@16.8.1)
- isomorphic-ws: 5.0.0(ws@8.16.0)
+ isomorphic-ws: 5.0.0(ws@8.17.0)
tslib: 2.6.2
- ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.17.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: false
- /@graphql-tools/executor-http@1.0.9(@types/node@20.12.7)(graphql@16.8.1):
+ /@graphql-tools/executor-http@1.0.9(@types/node@20.12.12)(graphql@16.8.1):
resolution: {integrity: sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- '@repeaterjs/repeater': 3.0.5
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
+ '@repeaterjs/repeater': 3.0.6
'@whatwg-node/fetch': 0.9.17
extract-files: 11.0.0
graphql: 16.8.1
- meros: 1.3.0(@types/node@20.12.7)
+ meros: 1.3.0(@types/node@20.12.12)
tslib: 2.6.2
value-or-promise: 1.0.12
transitivePeerDependencies:
@@ -4342,12 +4251,12 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@types/ws': 8.5.10
graphql: 16.8.1
- isomorphic-ws: 5.0.0(ws@8.16.0)
+ isomorphic-ws: 5.0.0(ws@8.17.0)
tslib: 2.6.2
- ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.17.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -4359,32 +4268,32 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
- '@repeaterjs/repeater': 3.0.5
+ '@repeaterjs/repeater': 3.0.6
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/federation@1.1.27(@types/node@20.12.7)(@types/react@18.2.79)(graphql@16.8.1)(react-dom@18.3.0)(react@18.3.0):
- resolution: {integrity: sha512-cuCgppt+2RqpxE3p6w/GL1Tz5JDcd1nILFOmEPD67WqQUBr5VgUEi77rAvB3lTr68giLri4AQ50X32rUvPyPkg==}
+ /@graphql-tools/federation@1.1.35(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-40qvVaYI7Wf/pdv1GhznyXBW/3BS7ogJBPLbLaaz7mqmaHzSGCGpW3buOxUwnbvG3r0eMz/sOiCyw3JpP8BisQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/executor-http': 1.0.9(@types/node@20.12.7)(graphql@16.8.1)
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/executor-http': 1.0.9(@types/node@20.12.12)(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.4(graphql@16.8.1)
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/stitch': 9.1.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/stitch': 9.2.8(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
optionalDependencies:
- '@apollo/client': 3.10.1(@types/react@18.2.79)(graphql@16.8.1)(react-dom@18.3.0)(react@18.3.0)
+ '@apollo/client': 3.10.4(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)
transitivePeerDependencies:
- '@types/node'
- '@types/react'
@@ -4401,22 +4310,22 @@ packages:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@graphql-tools/import': 7.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
globby: 11.1.0
graphql: 16.8.1
tslib: 2.6.2
unixify: 1.0.0
dev: false
- /@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.24.4)(graphql@16.8.1):
+ /@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.24.5)(graphql@16.8.1):
resolution: {integrity: sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/parser': 7.24.4
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5)
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
+ '@babel/types': 7.24.5
'@graphql-tools/utils': 9.2.1(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
@@ -4425,18 +4334,18 @@ packages:
- supports-color
dev: true
- /@graphql-tools/graphql-tag-pluck@8.3.0(graphql@16.8.1):
- resolution: {integrity: sha512-gNqukC+s7iHC7vQZmx1SEJQmLnOguBq+aqE2zV2+o1hxkExvKqyFli1SY/9gmukFIKpKutCIj+8yLOM+jARutw==}
+ /@graphql-tools/graphql-tag-pluck@8.3.1(graphql@16.8.1):
+ resolution: {integrity: sha512-ujits9tMqtWQQq4FI4+qnVPpJvSEn7ogKtyN/gfNT+ErIn6z1e4gyVGQpTK5sgAUXq1lW4gU/5fkFFC5/sL2rQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
- '@babel/types': 7.24.0
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@babel/core': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5)
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
+ '@babel/types': 7.24.5
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
@@ -4449,7 +4358,7 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
resolve-from: 5.0.0
tslib: 2.6.2
@@ -4474,7 +4383,7 @@ packages:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
p-limit: 3.1.0
tslib: 2.6.2
@@ -4490,13 +4399,13 @@ packages:
tslib: 2.6.2
dev: true
- /@graphql-tools/merge@9.0.3(graphql@16.8.1):
- resolution: {integrity: sha512-FeKv9lKLMwqDu0pQjPpF59GY3HReUkWXKsMIuMuJQOKh9BETu7zPEFUELvcw8w+lwZkl4ileJsHXC9+AnsT2Lw==}
+ /@graphql-tools/merge@9.0.4(graphql@16.8.1):
+ resolution: {integrity: sha512-MivbDLUQ+4Q8G/Hp/9V72hbn810IJDEZQ57F01sHnlrrijyadibfVhaQfW/pNH+9T/l8ySZpaR/DpL5i+ruZ+g==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
@@ -4539,7 +4448,7 @@ packages:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/relay-compiler': 12.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
transitivePeerDependencies:
@@ -4553,8 +4462,8 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.4(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
@@ -4566,8 +4475,8 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.4(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
@@ -4585,18 +4494,18 @@ packages:
value-or-promise: 1.0.12
dev: true
- /@graphql-tools/stitch@9.1.2(graphql@16.8.1):
- resolution: {integrity: sha512-X1NoeZ+K7PvOQeoCE6uyAGfBOIAsXXrXl7rUxtZY3uYTktp2HdJKZhnYYgn6dYEiMpgVDCepNpW2iTEACNwV/A==}
+ /@graphql-tools/stitch@9.2.8(graphql@16.8.1):
+ resolution: {integrity: sha512-xIENcmTw8dfMTslcplxBDshWi2LjFWtih2dG3rfhMGaj3iaWMM8JMbBB8nND7Jhm+fxfnGG7MuxOO9nqWtTuow==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@graphql-tools/batch-delegate': 9.0.2(graphql@16.8.1)
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
'@graphql-tools/executor': 1.2.6(graphql@16.8.1)
- '@graphql-tools/merge': 9.0.3(graphql@16.8.1)
+ '@graphql-tools/merge': 9.0.4(graphql@16.8.1)
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
@@ -4609,32 +4518,32 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
dev: false
- /@graphql-tools/url-loader@8.0.2(@types/node@20.12.7)(graphql@16.8.1):
+ /@graphql-tools/url-loader@8.0.2(@types/node@20.12.12)(graphql@16.8.1):
resolution: {integrity: sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
'@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.8.1)
- '@graphql-tools/executor-http': 1.0.9(@types/node@20.12.7)(graphql@16.8.1)
+ '@graphql-tools/executor-http': 1.0.9(@types/node@20.12.12)(graphql@16.8.1)
'@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.5(graphql@16.8.1)
'@types/ws': 8.5.10
'@whatwg-node/fetch': 0.9.17
graphql: 16.8.1
- isomorphic-ws: 5.0.0(ws@8.16.0)
+ isomorphic-ws: 5.0.0(ws@8.17.0)
tslib: 2.6.2
value-or-promise: 1.0.12
- ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.17.0
transitivePeerDependencies:
- '@types/node'
- bufferutil
@@ -4642,8 +4551,8 @@ packages:
- utf-8-validate
dev: false
- /@graphql-tools/utils@10.1.3(graphql@16.8.1):
- resolution: {integrity: sha512-loco2ctrrMQzdpSHbcOo6+Ecp21BV67cQ2pNGhuVKAexruu01RdLn3LgtK47B9BpLz3cUD6U0u1R0rur7xMOOg==}
+ /@graphql-tools/utils@10.2.0(graphql@16.8.1):
+ resolution: {integrity: sha512-HYV7dO6pNA2nGKawygaBpk8y+vXOUjjzzO43W/Kb7EPRmXUEQKjHxPYRvQbiF72u1N3XxwGK5jnnFk9WVhUwYw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4678,9 +4587,9 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 10.0.4(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.10(graphql@16.8.1)
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
tslib: 2.6.2
value-or-promise: 1.0.12
@@ -4693,13 +4602,6 @@ packages:
dependencies:
graphql: 16.8.1
- /@graphql-yoga/logger@1.0.0:
- resolution: {integrity: sha512-JYoxwnPggH2BfO+dWlWZkDeFhyFZqaTRGLvFhy+Pjp2UxitEW6nDrw+pEDw/K9tJwMjIFMmTT9VfTqrnESmBHg==}
- engines: {node: '>=16.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
/@graphql-yoga/logger@2.0.0:
resolution: {integrity: sha512-Mg8psdkAp+YTG1OGmvU+xa6xpsAmSir0hhr3yFYPyLNwzUj95DdIwsMpKadDj9xDpYgJcH3Hp/4JMal9DhQimA==}
engines: {node: '>=18.0.0'}
@@ -4707,27 +4609,17 @@ packages:
tslib: 2.6.2
dev: false
- /@graphql-yoga/plugin-persisted-operations@2.0.5(@graphql-tools/utils@10.1.3)(graphql-yoga@4.0.5)(graphql@16.8.1):
- resolution: {integrity: sha512-I1TNdt0PFtOLQEQ2IuIkyqKUd1u2s1KOY3L38+7PDuvFJ9G+EiLTMfMbO0FgPVFBgQd63WX4kwzv3+CEccFqmQ==}
- engines: {node: '>=16.0.0'}
+ /@graphql-yoga/plugin-persisted-operations@3.3.1(@graphql-tools/utils@10.2.0)(graphql-yoga@5.3.1)(graphql@16.8.1):
+ resolution: {integrity: sha512-2FteUIepgAZL5q2JSPbTFozba4T6v34skb6I7FiqZp7XwNnp8Da9Jf5BpcwUb4buP51FzbO5WJW1UMyNptxuOA==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
'@graphql-tools/utils': ^10.0.0
graphql: ^15.2.0 || ^16.0.0
- graphql-yoga: ^4.0.5
+ graphql-yoga: ^5.3.1
dependencies:
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
graphql: 16.8.1
- graphql-yoga: 4.0.5(graphql@16.8.1)
- dev: false
-
- /@graphql-yoga/subscription@4.0.0:
- resolution: {integrity: sha512-0qsN/BPPZNMoC2CZ8i+P6PgiJyHh1H35aKDt37qARBDaIOKDQuvEOq7+4txUKElcmXi7DYFo109FkhSQoEajrg==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@graphql-yoga/typed-event-target': 2.0.0
- '@repeaterjs/repeater': 3.0.5
- '@whatwg-node/events': 0.1.1
- tslib: 2.6.2
+ graphql-yoga: 5.3.1(graphql@16.8.1)
dev: false
/@graphql-yoga/subscription@5.0.0:
@@ -4735,24 +4627,16 @@ packages:
engines: {node: '>=18.0.0'}
dependencies:
'@graphql-yoga/typed-event-target': 3.0.0
- '@repeaterjs/repeater': 3.0.5
+ '@repeaterjs/repeater': 3.0.6
'@whatwg-node/events': 0.1.1
tslib: 2.6.2
dev: false
- /@graphql-yoga/typed-event-target@2.0.0:
- resolution: {integrity: sha512-oA/VGxGmaSDym1glOHrltw43qZsFwLLjBwvh57B79UKX/vo3+UQcRgOyE44c5RP7DCYjkrC2tuArZmb6jCzysw==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@repeaterjs/repeater': 3.0.5
- tslib: 2.6.2
- dev: false
-
/@graphql-yoga/typed-event-target@3.0.0:
resolution: {integrity: sha512-w+liuBySifrstuHbFrHoHAEyVnDFVib+073q8AeAJ/qqJfvFvAwUPLLtNohR/WDVRgSasfXtl3dcNuVJWN+rjg==}
engines: {node: '>=18.0.0'}
dependencies:
- '@repeaterjs/repeater': 3.0.5
+ '@repeaterjs/repeater': 3.0.6
tslib: 2.6.2
dev: false
@@ -4853,7 +4737,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -4874,14 +4758,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ jest-config: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -4909,7 +4793,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
jest-mock: 29.7.0
dev: true
@@ -4936,7 +4820,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -4969,7 +4853,7 @@ packages:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -5031,7 +4915,7 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -5057,7 +4941,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
'@types/yargs': 17.0.32
chalk: 4.1.2
dev: true
@@ -5100,6 +4984,37 @@ packages:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
+ /@jsonjoy.com/base64@1.1.2(tslib@2.6.2):
+ resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /@jsonjoy.com/json-pack@1.0.4(tslib@2.6.2):
+ resolution: {integrity: sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ dependencies:
+ '@jsonjoy.com/base64': 1.1.2(tslib@2.6.2)
+ '@jsonjoy.com/util': 1.1.3(tslib@2.6.2)
+ hyperdyperid: 1.2.0
+ thingies: 1.21.0(tslib@2.6.2)
+ tslib: 2.6.2
+ dev: true
+
+ /@jsonjoy.com/util@1.1.3(tslib@2.6.2):
+ resolution: {integrity: sha512-g//kkF4kOwUjemValCtOc/xiYzmwMRmWq3Bn+YnzOzuZLHq2PpMOxxIayN3cKbo7Ko2Np65t6D9H81IvXbXhqg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/@kamilkisiela/fast-url-parser@1.1.4:
resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==}
dev: false
@@ -5108,19 +5023,19 @@ packages:
resolution: {integrity: sha512-mDJsOucVW8m3Lk2fdQst+P74SgiKebvq1iBk4sXLbADQOwhL9bWGaArvO+tW7jPJZwEfSPWBdHcHoYi11XAwZw==}
dev: false
- /@lens-protocol/widgets-react@2.1.0(react@18.3.0):
+ /@lens-protocol/widgets-react@2.1.0(react@18.3.1):
resolution: {integrity: sha512-cdPpR6QSZ4uc52OhsJ96HKUyzeHecVBjVuyYTAxmOmsr/pkVKOay8tSjKfgLMtVnqUWiNVoOgL5omcIFn7DRNg==}
dependencies:
'@emotion/css': 11.11.2
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
date-fns: 2.30.0
ethers: 5.7.2
graphql: 16.8.1
- react-markdown: 8.0.7(@types/react@18.2.79)(react@18.3.0)
- react-player: 2.16.0(react@18.3.0)
+ react-markdown: 8.0.7(@types/react@18.3.2)(react@18.3.1)
+ react-player: 2.16.0(react@18.3.1)
rehype-raw: 6.1.1
typescript: 4.9.5
- urql: 3.0.4(graphql@16.8.1)(react@18.3.0)
+ urql: 3.0.4(graphql@16.8.1)(react@18.3.1)
transitivePeerDependencies:
- bufferutil
- react
@@ -5250,6 +5165,26 @@ packages:
dev: true
optional: true
+ /@mapbox/node-pre-gyp@1.0.11:
+ resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ detect-libc: 2.0.3
+ https-proxy-agent: 5.0.1
+ make-dir: 3.1.0
+ node-fetch: 2.7.0
+ nopt: 5.0.0
+ npmlog: 5.0.1
+ rimraf: 3.0.2
+ semver: 7.6.2
+ tar: 6.2.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: false
+ optional: true
+
/@metamask/abi-utils@2.0.2:
resolution: {integrity: sha512-B/A1dY/w4F/t6cDHUscklO6ovb/ztFsrsTXFd8QlqSByk/vyy+QbPE3VVpmmyI/7RX+PA1AJcvBdzCIz+r9dVQ==}
engines: {node: '>=16.0.0'}
@@ -5260,11 +5195,11 @@ packages:
- supports-color
dev: true
- /@metamask/approval-controller@6.0.1:
- resolution: {integrity: sha512-AcSTKPgv5Cu7r0ZlmJefbzuAf138lPqH1fsOsAyKnZSqKhY1E0Ow7Jzjb9VdvK3vcDQu2e4B/1xHZLxDuujKKA==}
+ /@metamask/approval-controller@6.0.2:
+ resolution: {integrity: sha512-G5FmEwRkKJPjCh3sA6g8eoYOcmLj/Y6Kllh663fYYbt1DZHHJtkrWBuaUnbTySS0VYqbTInpcgSRzuawE1VMgw==}
engines: {node: '>=16.0.0'}
dependencies:
- '@metamask/base-controller': 5.0.1
+ '@metamask/base-controller': 5.0.2
'@metamask/rpc-errors': 6.2.1
'@metamask/utils': 8.4.0
nanoid: 3.3.7
@@ -5280,12 +5215,12 @@ packages:
diff: 5.2.0
execa: 5.1.1
prettier: 2.8.8
- semver: 7.6.0
+ semver: 7.6.2
yargs: 17.7.2
dev: true
- /@metamask/base-controller@5.0.1:
- resolution: {integrity: sha512-p8Y0rMKd4hepRX3Qv3QcOZ2tFlk9Ir0OGageThgh33kSCkh/EnjUEqsYN43vQX1s29zNYgnXs6bJHIlCkmwv4w==}
+ /@metamask/base-controller@5.0.2:
+ resolution: {integrity: sha512-izOaXXnLz9OXbdika0ZvIDf24pgsWNPI02Lm0E4eMU61ICpV78bzQB7YyIbMtF6MWnItw1RnX9jN6zNEmp5pdA==}
engines: {node: '>=16.0.0'}
dependencies:
'@metamask/utils': 8.4.0
@@ -5294,13 +5229,13 @@ packages:
- supports-color
dev: true
- /@metamask/controller-utils@9.1.0(@babel/runtime@7.24.4):
+ /@metamask/controller-utils@9.1.0(@babel/runtime@7.24.5):
resolution: {integrity: sha512-17XQhyhR1bC7NjQHJF2KhxStVeoFW8liQ/Z526cI3uVcKOgYRxxDwBiRGs+xzv9XAm7f1W73W83wnb8fcBxlxg==}
engines: {node: '>=16.0.0'}
dependencies:
'@ethereumjs/util': 8.1.0
'@metamask/eth-query': 4.0.0
- '@metamask/ethjs-unit': 0.3.0(@babel/runtime@7.24.4)
+ '@metamask/ethjs-unit': 0.3.0(@babel/runtime@7.24.5)
'@metamask/utils': 8.4.0
'@spruceid/siwe-parser': 2.1.0
'@types/bn.js': 5.1.5
@@ -5392,7 +5327,7 @@ packages:
engines: {node: ^16.20 || ^18.16 || >=20}
dependencies:
'@metamask/eth-json-rpc-provider': 2.3.2
- '@metamask/eth-sig-util': 7.0.1
+ '@metamask/eth-sig-util': 7.0.2
'@metamask/json-rpc-engine': 7.3.3
'@metamask/rpc-errors': 6.2.1
'@metamask/utils': 8.4.0
@@ -5404,6 +5339,17 @@ packages:
- supports-color
dev: true
+ /@metamask/eth-json-rpc-provider@1.0.1:
+ resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@metamask/json-rpc-engine': 7.3.3
+ '@metamask/safe-event-emitter': 3.1.1
+ '@metamask/utils': 5.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@metamask/eth-json-rpc-provider@2.3.2:
resolution: {integrity: sha512-VaZx++3gfi85+j9zB5TvqSWLeZ6QpsNjIk56Nq6OMDp2U8iUEPgjdA8CybOtkyDb88EbpuOSzHZcdHEeIX3zPw==}
engines: {node: '>=16.0.0'}
@@ -5434,27 +5380,27 @@ packages:
tweetnacl-util: 0.15.1
dev: true
- /@metamask/eth-sig-util@7.0.1:
- resolution: {integrity: sha512-59GSrMyFH2fPfu7nKeIQdZ150zxXNNhAQIUaFRUW+MGtVA4w/ONbiQobcRBLi+jQProfIyss51G8pfLPcQ0ylg==}
+ /@metamask/eth-sig-util@7.0.2:
+ resolution: {integrity: sha512-DhTDMNEtED0ihIc4Tysm6qUJTvArCdgSTeeJWdo526W/cAk5mrSAvEYYgv8idAiBumDtcPWGimMTaB7MvY64bg==}
engines: {node: ^16.20 || ^18.16 || >=20}
dependencies:
'@ethereumjs/util': 8.1.0
'@metamask/abi-utils': 2.0.2
'@metamask/utils': 8.4.0
+ '@scure/base': 1.1.6
ethereum-cryptography: 2.1.3
tweetnacl: 1.0.3
- tweetnacl-util: 0.15.1
transitivePeerDependencies:
- supports-color
dev: true
- /@metamask/ethjs-unit@0.3.0(@babel/runtime@7.24.4):
+ /@metamask/ethjs-unit@0.3.0(@babel/runtime@7.24.5):
resolution: {integrity: sha512-HZtg69ODXYS9+ovKUYofZuIAwq4fc2/MGazD4vBQRKWMhPu4ySdmgR0EuzbxEK4uhr18KA4pbL+mCYjyjGxY7w==}
engines: {node: '>=8.17.0', npm: '>=6'}
peerDependencies:
'@babel/runtime': ^7.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@metamask/number-to-bn': 1.7.1
bn.js: 5.2.1
dev: true
@@ -5469,8 +5415,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@metamask/json-rpc-engine@8.0.1:
- resolution: {integrity: sha512-FE0dGaudbX1kP2fznko1jfmafFT+HWYuaoPdMESA7C2H3JMPKKS6NOYmQtM7Imt5LzWbltOoTfQENNCGCTWG8w==}
+ /@metamask/json-rpc-engine@8.0.2:
+ resolution: {integrity: sha512-IoQPmql8q7ABLruW7i4EYVHWUbF74yrp63bRuXV5Zf9BQwcn5H9Ww1eLtROYvI1bUXwOiHZ6qT5CWTrDc/t/AA==}
engines: {node: '>=16.0.0'}
dependencies:
'@metamask/rpc-errors': 6.2.1
@@ -5478,7 +5424,6 @@ packages:
'@metamask/utils': 8.4.0
transitivePeerDependencies:
- supports-color
- dev: true
/@metamask/json-rpc-middleware-stream@6.0.2:
resolution: {integrity: sha512-jtyx3PRfc1kqoLpYveIVQNwsxYKefc64/LCl9h9Da1m3nUKEvypbYuXSIwi237qvOjKmNHQKsDOZg6f4uBf62Q==}
@@ -5490,28 +5435,27 @@ packages:
readable-stream: 3.6.2
transitivePeerDependencies:
- supports-color
+ dev: false
/@metamask/json-rpc-middleware-stream@7.0.1:
resolution: {integrity: sha512-hsveICXi/56do/mxgwE4IApWwOfZ204iWtSiCcLayEDCLS96X/tqnW1xXvNTrk1l4PtSUHajsyHBY67I89bTIA==}
engines: {node: '>=16.0.0'}
dependencies:
- '@metamask/json-rpc-engine': 8.0.1
+ '@metamask/json-rpc-engine': 8.0.2
'@metamask/safe-event-emitter': 3.1.1
'@metamask/utils': 8.4.0
readable-stream: 3.6.2
transitivePeerDependencies:
- supports-color
- dev: true
- /@metamask/key-tree@9.0.0:
- resolution: {integrity: sha512-Fma7twGR7PK0QLby0ZCI2q4VDiSlZM0iIUYvmExDtiS6TIGQBu4br0rMWgfgMBz+arFFw8FriQxRrNBv4hb8SA==}
+ /@metamask/key-tree@9.1.0:
+ resolution: {integrity: sha512-3GN6aJmr7DSeWiNoCqb4N00dDM2Yj6P+ld5BWcNhVn6X+9sHuiGAMLeLAqrfIt2KcnuvKqHKZwWVl35fVFKMVg==}
engines: {node: '>=16.0.0'}
dependencies:
'@metamask/scure-bip39': 2.1.1
- '@metamask/utils': 6.2.0
- '@noble/ed25519': 1.7.3
+ '@metamask/utils': 8.4.0
+ '@noble/curves': 1.4.0
'@noble/hashes': 1.4.0
- '@noble/secp256k1': 1.7.1
'@scure/base': 1.1.6
transitivePeerDependencies:
- supports-color
@@ -5531,16 +5475,16 @@ packages:
once: 1.4.0
readable-stream: 3.6.2
- /@metamask/permission-controller@9.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1):
+ /@metamask/permission-controller@9.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2):
resolution: {integrity: sha512-4EV39Y8Sg88kQiMZ5eAYW5rOkPFb23FzhAVSv0bwOdOEFBJc/tDel8SmX68XQCrTwOgkUmatiUpNDj22r0ujrA==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@metamask/approval-controller': ^6.0.0
dependencies:
- '@metamask/approval-controller': 6.0.1
- '@metamask/base-controller': 5.0.1
- '@metamask/controller-utils': 9.1.0(@babel/runtime@7.24.4)
- '@metamask/json-rpc-engine': 8.0.1
+ '@metamask/approval-controller': 6.0.2
+ '@metamask/base-controller': 5.0.2
+ '@metamask/controller-utils': 9.1.0(@babel/runtime@7.24.5)
+ '@metamask/json-rpc-engine': 8.0.2
'@metamask/rpc-errors': 6.2.1
'@metamask/utils': 8.4.0
'@types/deep-freeze-strict': 1.1.2
@@ -5552,12 +5496,12 @@ packages:
- supports-color
dev: true
- /@metamask/phishing-controller@9.0.1(@babel/runtime@7.24.4):
- resolution: {integrity: sha512-7DGdz21RwSaU4UzrsMZVW4/GJAIYmPLzvdMDXkGLmJ4jgKMVRW5ClLEgPGkq26SieD2jD/gLRpbG/KutqAiylQ==}
+ /@metamask/phishing-controller@9.0.2(@babel/runtime@7.24.5):
+ resolution: {integrity: sha512-eZRbym8o7isHbu741GVztxD2rzKvNQvB+XbmAq6qJD6eMKSSYKC9r/nDaxzaVz9qO93XCE8WnvSUmJx4m8RtaA==}
engines: {node: '>=16.0.0'}
dependencies:
- '@metamask/base-controller': 5.0.1
- '@metamask/controller-utils': 9.1.0(@babel/runtime@7.24.4)
+ '@metamask/base-controller': 5.0.2
+ '@metamask/controller-utils': 9.1.0(@babel/runtime@7.24.5)
'@types/punycode': 2.1.4
eth-phishing-detect: 1.2.0
punycode: 2.3.1
@@ -5596,12 +5540,12 @@ packages:
- supports-color
dev: false
- /@metamask/providers@16.0.0:
- resolution: {integrity: sha512-zqZpn7Tg+QuvhL9x1WYCdXjFclZrMR2LOU2a3kHVFms5pOfizzFApB492VFgHuv/5xKohSxDkhXpAZ/TNGmM4g==}
+ /@metamask/providers@16.1.0:
+ resolution: {integrity: sha512-znVCvux30+3SaUwcUGaSf+pUckzT5ukPRpcBmy+muBLC0yaWnBcvDqGfcsw6CBIenUdFrVoAFa8B6jsuCY/a+g==}
engines: {node: ^18.18 || >=20}
dependencies:
- '@metamask/json-rpc-engine': 7.3.3
- '@metamask/json-rpc-middleware-stream': 6.0.2
+ '@metamask/json-rpc-engine': 8.0.2
+ '@metamask/json-rpc-middleware-stream': 7.0.1
'@metamask/object-multiplex': 2.0.0
'@metamask/rpc-errors': 6.2.1
'@metamask/safe-event-emitter': 3.1.1
@@ -5644,26 +5588,26 @@ packages:
engines: {node: '>=14.0.0'}
dev: true
- /@metamask/snaps-cli@6.1.1(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1):
- resolution: {integrity: sha512-9V4+au6K8l5kZBSKI8nV2ZTZkvaDCpgLkIzkFeZAVG/vTl2n4w+8z7pkOIzLqxjoKsp6y9THgpnDa/kV5JJTFw==}
+ /@metamask/snaps-cli@6.2.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2):
+ resolution: {integrity: sha512-lhmKSQ1Uv/ejuyJ0s2E9YfMtE5xJyOPUfoBGSi90Gghg7wDRQaEv0/JHj2WUlHBJNT4mZ+FQwyJ60O/Qmhmzgw==}
engines: {node: ^18.16 || >=20}
hasBin: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.4)
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@metamask/snaps-sdk': 4.0.1
- '@metamask/snaps-utils': 7.2.0(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
- '@metamask/snaps-webpack-plugin': 4.0.1(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-private-property-in-object': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5)
+ '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
+ '@metamask/snaps-sdk': 4.2.0
+ '@metamask/snaps-utils': 7.4.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
+ '@metamask/snaps-webpack-plugin': 4.0.1(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/utils': 8.4.0
'@swc/core': 1.3.78
assert: 2.1.0
- babelify: 10.0.0(@babel/core@7.24.4)
+ babelify: 10.0.0(@babel/core@7.24.5)
browserify: 17.0.0
browserify-zlib: 0.2.0
buffer: 6.0.3
@@ -5681,7 +5625,7 @@ packages:
punycode: 2.3.1
querystring-es3: 0.2.1
readable-stream: 3.6.2
- semver: 7.6.0
+ semver: 7.6.2
serve-handler: 6.1.5
stream-browserify: 3.0.0
stream-http: 3.2.0
@@ -5708,7 +5652,7 @@ packages:
- webpack-cli
dev: true
- /@metamask/snaps-controllers@6.0.4(@babel/runtime@7.24.4)(@metamask/snaps-execution-environments@5.0.4):
+ /@metamask/snaps-controllers@6.0.4(@babel/runtime@7.24.5)(@metamask/snaps-execution-environments@5.0.4):
resolution: {integrity: sha512-a2UbshUf6kYojTUKiYJA45113ApMWWIzrTuFRyqaqCH/l20feGh6bdd3SuDnxBVyliQgRfOrRsCINrIMzMWAIA==}
engines: {node: ^18.16 || >=20}
peerDependencies:
@@ -5717,20 +5661,20 @@ packages:
'@metamask/snaps-execution-environments':
optional: true
dependencies:
- '@metamask/approval-controller': 6.0.1
- '@metamask/base-controller': 5.0.1
- '@metamask/json-rpc-engine': 8.0.1
+ '@metamask/approval-controller': 6.0.2
+ '@metamask/base-controller': 5.0.2
+ '@metamask/json-rpc-engine': 8.0.2
'@metamask/json-rpc-middleware-stream': 7.0.1
'@metamask/object-multiplex': 2.0.0
- '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
- '@metamask/phishing-controller': 9.0.1(@babel/runtime@7.24.4)
+ '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
+ '@metamask/phishing-controller': 9.0.2(@babel/runtime@7.24.5)
'@metamask/post-message-stream': 8.0.0
'@metamask/rpc-errors': 6.2.1
- '@metamask/snaps-execution-environments': 5.0.4(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/snaps-execution-environments': 5.0.4(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/snaps-registry': 3.1.0
- '@metamask/snaps-rpc-methods': 7.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/snaps-rpc-methods': 7.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/snaps-sdk': 3.2.0
- '@metamask/snaps-utils': 7.2.0(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/snaps-utils': 7.4.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/utils': 8.4.0
'@xstate/fsm': 2.1.0
browserify-zlib: 0.2.0
@@ -5746,17 +5690,17 @@ packages:
- supports-color
dev: true
- /@metamask/snaps-execution-environments@5.0.4(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1):
+ /@metamask/snaps-execution-environments@5.0.4(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2):
resolution: {integrity: sha512-9Kazmd0fbrTUfy0tM+LLuNeIpxeSReLV/3NkueIt9zm9KHF2+FEVwaiU0mGJpg8cgLH41RnCENmexrITdoyROg==}
engines: {node: ^18.16 || >=20}
dependencies:
- '@metamask/json-rpc-engine': 8.0.1
+ '@metamask/json-rpc-engine': 8.0.2
'@metamask/object-multiplex': 2.0.0
'@metamask/post-message-stream': 8.0.0
- '@metamask/providers': 16.0.0
+ '@metamask/providers': 16.1.0
'@metamask/rpc-errors': 6.2.1
'@metamask/snaps-sdk': 3.2.0
- '@metamask/snaps-utils': 7.2.0(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/snaps-utils': 7.4.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/utils': 8.4.0
nanoid: 3.3.7
readable-stream: 3.6.2
@@ -5767,24 +5711,24 @@ packages:
- supports-color
dev: true
- /@metamask/snaps-jest@6.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1):
+ /@metamask/snaps-jest@6.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2):
resolution: {integrity: sha512-wcCsPKUuYT+TbNFy82mWTi1kq0JsS865RMolsHDr9CtkUR+HnMdrbe3IRitwhkfIfw9W6Ongw5XWeIIFuHt60w==}
engines: {node: ^18.16 || >=20}
dependencies:
'@jest/environment': 29.7.0
'@jest/expect': 29.7.0
'@jest/globals': 29.7.0
- '@metamask/base-controller': 5.0.1
+ '@metamask/base-controller': 5.0.2
'@metamask/eth-json-rpc-middleware': 12.1.0
- '@metamask/json-rpc-engine': 8.0.1
+ '@metamask/json-rpc-engine': 8.0.2
'@metamask/json-rpc-middleware-stream': 7.0.1
- '@metamask/key-tree': 9.0.0
- '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
- '@metamask/snaps-controllers': 6.0.4(@babel/runtime@7.24.4)(@metamask/snaps-execution-environments@5.0.4)
- '@metamask/snaps-execution-environments': 5.0.4(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
- '@metamask/snaps-rpc-methods': 7.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/key-tree': 9.1.0
+ '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
+ '@metamask/snaps-controllers': 6.0.4(@babel/runtime@7.24.5)(@metamask/snaps-execution-environments@5.0.4)
+ '@metamask/snaps-execution-environments': 5.0.4(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
+ '@metamask/snaps-rpc-methods': 7.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/snaps-sdk': 3.2.0
- '@metamask/snaps-utils': 7.2.0(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/snaps-utils': 7.4.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/utils': 8.4.0
'@reduxjs/toolkit': 1.9.7
express: 4.19.2
@@ -5814,15 +5758,15 @@ packages:
- supports-color
dev: true
- /@metamask/snaps-rpc-methods@7.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1):
+ /@metamask/snaps-rpc-methods@7.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2):
resolution: {integrity: sha512-IhTWbbY3o2cF8od3BI95tVfKuK6LkD7t30PgbH4a2yWUVhDLELHDRlHOzRrkTcd8haY1BKQmBlYZm+6oVNfrUQ==}
engines: {node: ^18.16 || >=20}
dependencies:
- '@metamask/key-tree': 9.0.0
- '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/key-tree': 9.1.0
+ '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/rpc-errors': 6.2.1
'@metamask/snaps-sdk': 3.2.0
- '@metamask/snaps-utils': 7.2.0(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/snaps-utils': 7.4.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/utils': 8.4.0
'@noble/hashes': 1.4.0
superstruct: 1.0.4
@@ -5836,8 +5780,8 @@ packages:
resolution: {integrity: sha512-Xfsc6seyucs7TP2JLXoKYrWm5FbrttdHnMOTfuzTb4T+qmdmoc3wdw83RAGjRFiOOaHGFc6JJSCdP33fBmw4Hg==}
engines: {node: ^18.16 || >=20}
dependencies:
- '@metamask/key-tree': 9.0.0
- '@metamask/providers': 16.0.0
+ '@metamask/key-tree': 9.1.0
+ '@metamask/providers': 16.1.0
'@metamask/rpc-errors': 6.2.1
'@metamask/utils': 8.4.0
fast-xml-parser: 4.3.6
@@ -5845,12 +5789,12 @@ packages:
transitivePeerDependencies:
- supports-color
- /@metamask/snaps-sdk@4.0.1:
- resolution: {integrity: sha512-5XypS6zbCRRrWpOb8cpahJUtMee4r0Mv9ReLuXu1yVothJFbEQIUyJDNkTQ4zqKBJSVObAjBjuQN1fmde6wtrw==}
+ /@metamask/snaps-sdk@4.2.0:
+ resolution: {integrity: sha512-LQlq12CH+BYJPhflL9AFX9FihKxljfW86WFBP43JRlJwSkzWYLAFhTg0bzuv5AMOQI+LAXMhNABuSHTS954bFA==}
engines: {node: ^18.16 || >=20}
dependencies:
- '@metamask/key-tree': 9.0.0
- '@metamask/providers': 16.0.0
+ '@metamask/key-tree': 9.1.0
+ '@metamask/providers': 16.1.0
'@metamask/rpc-errors': 6.2.1
'@metamask/utils': 8.4.0
fast-xml-parser: 4.3.6
@@ -5859,19 +5803,19 @@ packages:
- supports-color
dev: true
- /@metamask/snaps-utils@7.2.0(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1):
- resolution: {integrity: sha512-hSHcQ1qJSbPhiu2xCkQlJ0Q2n1g6AU6D5E3ITzLFxsR5i6h0DgqOuzfEe8329h7owfdDUATJAFCHjPzmVqd2gw==}
+ /@metamask/snaps-utils@7.4.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2):
+ resolution: {integrity: sha512-Gb2IGxQUGWrg0pj4FVb1zdC23ufLWub4qTMuf45HPZnluX2x+GRFGKYCgoTZ+x2PWh9Zwra+nrHbXqOoxcT8nw==}
engines: {node: ^18.16 || >=20}
dependencies:
- '@babel/core': 7.24.4
- '@babel/types': 7.24.0
- '@metamask/base-controller': 5.0.1
- '@metamask/key-tree': 9.0.0
- '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@babel/core': 7.24.5
+ '@babel/types': 7.24.5
+ '@metamask/base-controller': 5.0.2
+ '@metamask/key-tree': 9.1.0
+ '@metamask/permission-controller': 9.0.2(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/rpc-errors': 6.2.1
'@metamask/slip44': 3.1.0
'@metamask/snaps-registry': 3.1.0
- '@metamask/snaps-sdk': 4.0.1
+ '@metamask/snaps-sdk': 4.2.0
'@metamask/utils': 8.4.0
'@noble/hashes': 1.4.0
'@scure/base': 1.1.6
@@ -5881,22 +5825,22 @@ packages:
fast-json-stable-stringify: 2.1.0
marked: 12.0.2
rfdc: 1.3.1
- semver: 7.6.0
- ses: 1.4.1
+ semver: 7.6.2
+ ses: 1.5.0
superstruct: 1.0.4
- validate-npm-package-name: 5.0.0
+ validate-npm-package-name: 5.0.1
transitivePeerDependencies:
- '@babel/runtime'
- '@metamask/approval-controller'
- supports-color
dev: true
- /@metamask/snaps-webpack-plugin@4.0.1(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1):
+ /@metamask/snaps-webpack-plugin@4.0.1(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2):
resolution: {integrity: sha512-x7EdfURhEDYNA+3SM0WOr/j6Ee/SpY/DGyZegATVAg7O/WWu6GGKxHj08eTQKANyUeAXXl0kAoiHBSOZjGUHIA==}
engines: {node: ^18.16 || >=20}
dependencies:
'@metamask/snaps-sdk': 3.2.0
- '@metamask/snaps-utils': 7.2.0(@babel/runtime@7.24.4)(@metamask/approval-controller@6.0.1)
+ '@metamask/snaps-utils': 7.4.0(@babel/runtime@7.24.5)(@metamask/approval-controller@6.0.2)
'@metamask/utils': 8.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -5905,30 +5849,18 @@ packages:
- supports-color
dev: true
- /@metamask/utils@3.6.0:
- resolution: {integrity: sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==}
+ /@metamask/utils@5.0.2:
+ resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==}
engines: {node: '>=14.0.0'}
- dependencies:
- '@types/debug': 4.1.12
- debug: 4.3.4(supports-color@5.5.0)
- semver: 7.6.0
- superstruct: 1.0.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@metamask/utils@6.2.0:
- resolution: {integrity: sha512-nM5CujDd4STfwx4ic/gim9G1W9oZcWUGKN4WbAT4waEkqNSIluVmZeHgxUKvdajZ7iCFDnjDLajkD4sP7c/ClQ==}
- engines: {node: '>=16.0.0'}
dependencies:
'@ethereumjs/tx': 4.2.0
- '@noble/hashes': 1.4.0
'@types/debug': 4.1.12
debug: 4.3.4(supports-color@5.5.0)
- semver: 7.6.0
+ semver: 7.6.2
superstruct: 1.0.4
transitivePeerDependencies:
- supports-color
+ dev: false
/@metamask/utils@8.4.0:
resolution: {integrity: sha512-dbIc3C7alOe0agCuBHM1h71UaEaEqOk2W8rAtEn8QGz4haH2Qq7MoK6i7v2guzvkJVVh79c+QCzIqphC3KvrJg==}
@@ -5940,7 +5872,7 @@ packages:
'@types/debug': 4.1.12
debug: 4.3.4(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.6.0
+ semver: 7.6.2
superstruct: 1.0.4
uuid: 9.0.1
transitivePeerDependencies:
@@ -6097,9 +6029,6 @@ packages:
dependencies:
'@noble/hashes': 1.4.0
- /@noble/ed25519@1.7.3:
- resolution: {integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==}
-
/@noble/hashes@1.2.0:
resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==}
dev: true
@@ -6118,6 +6047,7 @@ packages:
/@noble/secp256k1@1.7.1:
resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==}
+ dev: true
/@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -6137,80 +6067,52 @@ packages:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- /@nomicfoundation/edr-darwin-arm64@0.3.5:
- resolution: {integrity: sha512-gIXUIiPMUy6roLHpNlxf15DumU7/YhffUf7XIB+WUjMecaySfTGyZsTGnCMJZqrDyiYqWPyPKwCV/2u/jqFAUg==}
+ /@nomicfoundation/edr-darwin-arm64@0.3.8:
+ resolution: {integrity: sha512-eB0leCexS8sQEmfyD72cdvLj9djkBzQGP4wSQw6SNf2I4Sw4Cnzb3d45caG2FqFFjbvfqL0t+badUUIceqQuMw==}
engines: {node: '>= 18'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
dev: true
- optional: true
- /@nomicfoundation/edr-darwin-x64@0.3.5:
- resolution: {integrity: sha512-0MrpOCXUK8gmplpYZ2Cy0holHEylvWoNeecFcrP2WJ5DLQzrB23U5JU2MvUzOJ7aL76Za1VXNBWi/UeTWdHM+w==}
+ /@nomicfoundation/edr-darwin-x64@0.3.8:
+ resolution: {integrity: sha512-JksVCS1N5ClwVF14EvO25HCQ+Laljh/KRfHERMVAC9ZwPbTuAd/9BtKvToCBi29uCHWqsXMI4lxCApYQv2nznw==}
engines: {node: '>= 18'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
dev: true
- optional: true
- /@nomicfoundation/edr-linux-arm64-gnu@0.3.5:
- resolution: {integrity: sha512-aw9f7AZMiY1dZFNePJGKho2k+nEgFgzUAyyukiKfSqUIMXoFXMf1U3Ujv848czrSq9c5XGcdDa2xnEf3daU3xg==}
+ /@nomicfoundation/edr-linux-arm64-gnu@0.3.8:
+ resolution: {integrity: sha512-raCE+fOeNXhVBLUo87cgsHSGvYYRB6arih4eG6B9KGACWK5Veebtm9xtKeiD8YCsdUlUfat6F7ibpeNm91fpsA==}
engines: {node: '>= 18'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
dev: true
- optional: true
- /@nomicfoundation/edr-linux-arm64-musl@0.3.5:
- resolution: {integrity: sha512-cVFRQjyABBlsbDj+XTczYBfrCHprZ6YNzN8gGGSqAh+UGIJkAIRomK6ar27GyJLNx3HkgbuDoi/9kA0zOo/95w==}
+ /@nomicfoundation/edr-linux-arm64-musl@0.3.8:
+ resolution: {integrity: sha512-PwiDp4wBZWMCIy29eKkv8moTKRrpiSDlrc+GQMSZLhOAm8T33JKKXPwD/2EbplbhCygJDGXZdtEKl9x9PaH66A==}
engines: {node: '>= 18'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
dev: true
- optional: true
- /@nomicfoundation/edr-linux-x64-gnu@0.3.5:
- resolution: {integrity: sha512-CjOg85DfR1Vt0fQWn5U0qi26DATK9tVzo3YOZEyI0JBsnqvk43fUTPv3uUAWBrPIRg5O5kOc9xG13hSpCBBxBg==}
+ /@nomicfoundation/edr-linux-x64-gnu@0.3.8:
+ resolution: {integrity: sha512-6AcvA/XKoipGap5jJmQ9Y6yT7Uf39D9lu2hBcDCXnXbMcXaDGw4mn1/L4R63D+9VGZyu1PqlcJixCUZlGGIWlg==}
engines: {node: '>= 18'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
dev: true
- optional: true
- /@nomicfoundation/edr-linux-x64-musl@0.3.5:
- resolution: {integrity: sha512-hvX8bBGpBydAVevzK8jsu2FlqVZK1RrCyTX6wGHnltgMuBaoGLHYtNHiFpteOaJw2byYMiORc2bvj+98LhJ0Ew==}
+ /@nomicfoundation/edr-linux-x64-musl@0.3.8:
+ resolution: {integrity: sha512-cxb0sEmZjlwhYWO28sPsV64VDx31ekskhC1IsDXU1p9ntjHSJRmW4KEIqJ2O3QwJap/kLKfMS6TckvY10gjc6w==}
engines: {node: '>= 18'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
dev: true
- optional: true
- /@nomicfoundation/edr-win32-x64-msvc@0.3.5:
- resolution: {integrity: sha512-IJXjW13DY5UPsx/eG5DGfXtJ7Ydwrvw/BTZ2Y93lRLHzszVpSmeVmlxjZP5IW2afTSgMLaAAsqNw4NhppRGN8A==}
+ /@nomicfoundation/edr-win32-x64-msvc@0.3.8:
+ resolution: {integrity: sha512-yVuVPqRRNLZk7TbBMkKw7lzCvI8XO8fNTPTYxymGadjr9rEGRuNTU1yBXjfJ59I1jJU/X2TSkRk1OFX0P5tpZQ==}
engines: {node: '>= 18'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
dev: true
- optional: true
- /@nomicfoundation/edr@0.3.5:
- resolution: {integrity: sha512-dPSM9DuI1sr71gqWUMgLo8MjHQWO4+WNDm3iWaT6P4vUFJReZX5qwA5X+3UwIPBry8GvNY084u7yWUvB3/8rqA==}
+ /@nomicfoundation/edr@0.3.8:
+ resolution: {integrity: sha512-u2UJ5QpznSHVkZRh6ePWoeVb6kmPrrqh08gCnZ9FHlJV9CITqlrTQHJkacd+INH31jx88pTAJnxePE4XAiH5qg==}
engines: {node: '>= 18'}
- optionalDependencies:
- '@nomicfoundation/edr-darwin-arm64': 0.3.5
- '@nomicfoundation/edr-darwin-x64': 0.3.5
- '@nomicfoundation/edr-linux-arm64-gnu': 0.3.5
- '@nomicfoundation/edr-linux-arm64-musl': 0.3.5
- '@nomicfoundation/edr-linux-x64-gnu': 0.3.5
- '@nomicfoundation/edr-linux-x64-musl': 0.3.5
- '@nomicfoundation/edr-win32-x64-msvc': 0.3.5
+ dependencies:
+ '@nomicfoundation/edr-darwin-arm64': 0.3.8
+ '@nomicfoundation/edr-darwin-x64': 0.3.8
+ '@nomicfoundation/edr-linux-arm64-gnu': 0.3.8
+ '@nomicfoundation/edr-linux-arm64-musl': 0.3.8
+ '@nomicfoundation/edr-linux-x64-gnu': 0.3.8
+ '@nomicfoundation/edr-linux-x64-musl': 0.3.8
+ '@nomicfoundation/edr-win32-x64-msvc': 0.3.8
dev: true
/@nomicfoundation/ethereumjs-common@4.0.4:
@@ -6255,7 +6157,7 @@ packages:
ethereum-cryptography: 0.1.3
dev: true
- /@nomicfoundation/hardhat-chai-matchers@2.0.6(@nomicfoundation/hardhat-ethers@3.0.5)(chai@4.4.1)(ethers@6.12.0)(hardhat@2.22.3):
+ /@nomicfoundation/hardhat-chai-matchers@2.0.6(@nomicfoundation/hardhat-ethers@3.0.6)(chai@4.4.1)(ethers@6.12.1)(hardhat@2.22.4):
resolution: {integrity: sha512-Te1Uyo9oJcTCF0Jy9dztaLpshmlpjLf2yPtWXlXuLjMt3RRSmJLm/+rKVTW6gfadAEs12U/it6D0ZRnnRGiICQ==}
peerDependencies:
'@nomicfoundation/hardhat-ethers': ^3.0.0
@@ -6263,68 +6165,68 @@ packages:
ethers: ^6.1.0
hardhat: ^2.9.4
dependencies:
- '@nomicfoundation/hardhat-ethers': 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
+ '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
'@types/chai-as-promised': 7.1.8
chai: 4.4.1
- chai-as-promised: 7.1.1(chai@4.4.1)
+ chai-as-promised: 7.1.2(chai@4.4.1)
deep-eql: 4.1.3
- ethers: 6.12.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ ethers: 6.12.1
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
ordinal: 1.0.3
dev: true
- /@nomicfoundation/hardhat-ethers@3.0.5(ethers@6.12.0)(hardhat@2.22.3):
- resolution: {integrity: sha512-RNFe8OtbZK6Ila9kIlHp0+S80/0Bu/3p41HUpaRIoHLm6X3WekTd83vob3rE54Duufu1edCiBDxspBzi2rxHHw==}
+ /@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.12.1)(hardhat@2.22.4):
+ resolution: {integrity: sha512-/xzkFQAaHQhmIAYOQmvHBPwL+NkwLzT9gRZBsgWUYeV+E6pzXsBQsHfRYbAZ3XEYare+T7S+5Tg/1KDJgepSkA==}
peerDependencies:
ethers: ^6.1.0
hardhat: ^2.0.0
dependencies:
debug: 4.3.4(supports-color@5.5.0)
- ethers: 6.12.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ ethers: 6.12.1
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
lodash.isequal: 4.5.0
transitivePeerDependencies:
- supports-color
dev: true
- /@nomicfoundation/hardhat-foundry@1.1.1(hardhat@2.22.3):
- resolution: {integrity: sha512-cXGCBHAiXas9Pg9MhMOpBVQCkWRYoRFG7GJJAph+sdQsfd22iRs5U5Vs9XmpGEQd1yEvYISQZMeE68Nxj65iUQ==}
+ /@nomicfoundation/hardhat-foundry@1.1.2(hardhat@2.22.4):
+ resolution: {integrity: sha512-f5Vhj3m2qvKGpr6NAINYwNgILDsai8dVCsFb1rAVLkJxOmD2pAtfCmOH5SBVr9yUI5B1z9rbTwPBJVrqnb+PXQ==}
peerDependencies:
hardhat: ^2.17.2
dependencies:
chalk: 2.4.2
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
dev: true
- /@nomicfoundation/hardhat-ignition-ethers@0.15.1(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-ignition@0.15.1)(@nomicfoundation/ignition-core@0.15.1)(ethers@6.12.0)(hardhat@2.22.3):
- resolution: {integrity: sha512-FPeE0EbJ+RcBGro9TxODyDffpSPhnG8ra43nJp7/1H2M0S+UkmJUeZlSjAIVfUut1zMwy+57j+PNn07dOr/YmQ==}
+ /@nomicfoundation/hardhat-ignition-ethers@0.15.4(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition@0.15.4)(@nomicfoundation/ignition-core@0.15.4)(ethers@6.12.1)(hardhat@2.22.4):
+ resolution: {integrity: sha512-vY30V4b788GSziW/nOd0L/4IPw6mwpluahLs4+gPUUKWaHHGMA8OIeHaYpRRljM1i0M/Kg1yIozrDM/aeRebkg==}
peerDependencies:
'@nomicfoundation/hardhat-ethers': ^3.0.4
- '@nomicfoundation/hardhat-ignition': ^0.15.1
- '@nomicfoundation/ignition-core': ^0.15.1
+ '@nomicfoundation/hardhat-ignition': ^0.15.4
+ '@nomicfoundation/ignition-core': ^0.15.4
ethers: ^6.7.0
hardhat: ^2.18.0
dependencies:
- '@nomicfoundation/hardhat-ethers': 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-ignition': 0.15.1(@nomicfoundation/hardhat-verify@2.0.6)(hardhat@2.22.3)
- '@nomicfoundation/ignition-core': 0.15.1
- ethers: 6.12.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-ignition': 0.15.4(@nomicfoundation/hardhat-verify@2.0.7)(hardhat@2.22.4)
+ '@nomicfoundation/ignition-core': 0.15.4
+ ethers: 6.12.1
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
dev: true
- /@nomicfoundation/hardhat-ignition@0.15.1(@nomicfoundation/hardhat-verify@2.0.6)(hardhat@2.22.3):
- resolution: {integrity: sha512-hWV/W9ZdG9HIqUiQXexrwoBBGP4IrDLghlZPAXXEXETmJ2AVPnBKQG626YmAYgEk2G3vX9ojn16daT+H2i/mFA==}
+ /@nomicfoundation/hardhat-ignition@0.15.4(@nomicfoundation/hardhat-verify@2.0.7)(hardhat@2.22.4):
+ resolution: {integrity: sha512-x1lhLN9ZRSJ9eiNY9AoinMdeQeU4LDQSQOIw90W9DiZIG/g9YUzcTEIY58QTi2TZOF8YFiF6vJqLSePCpi8R1Q==}
peerDependencies:
'@nomicfoundation/hardhat-verify': ^2.0.1
hardhat: ^2.18.0
dependencies:
- '@nomicfoundation/hardhat-verify': 2.0.6(hardhat@2.22.3)
- '@nomicfoundation/ignition-core': 0.15.1
- '@nomicfoundation/ignition-ui': 0.15.1
+ '@nomicfoundation/hardhat-verify': 2.0.7(hardhat@2.22.4)
+ '@nomicfoundation/ignition-core': 0.15.4
+ '@nomicfoundation/ignition-ui': 0.15.4
chalk: 4.1.2
debug: 4.3.4(supports-color@5.5.0)
fs-extra: 10.1.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
prompts: 2.4.2
transitivePeerDependencies:
- bufferutil
@@ -6332,16 +6234,16 @@ packages:
- utf-8-validate
dev: true
- /@nomicfoundation/hardhat-network-helpers@1.0.10(hardhat@2.22.3):
+ /@nomicfoundation/hardhat-network-helpers@1.0.10(hardhat@2.22.4):
resolution: {integrity: sha512-R35/BMBlx7tWN5V6d/8/19QCwEmIdbnA4ZrsuXgvs8i2qFx5i7h6mH5pBS4Pwi4WigLH+upl6faYusrNPuzMrQ==}
peerDependencies:
hardhat: ^2.9.5
dependencies:
ethereumjs-util: 7.1.5
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
dev: true
- /@nomicfoundation/hardhat-toolbox@3.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@1.1.1)(@typechain/ethers-v6@0.4.3)(@typechain/hardhat@8.0.3)(@types/chai@4.3.14)(@types/mocha@10.0.6)(@types/node@20.12.7)(chai@4.4.1)(ethers@6.12.0)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.3)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5):
+ /@nomicfoundation/hardhat-toolbox@3.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@1.1.1)(@typechain/ethers-v6@0.4.3)(@typechain/hardhat@8.0.3)(@types/chai@4.3.16)(@types/mocha@10.0.6)(@types/node@20.12.12)(chai@4.4.1)(ethers@6.12.1)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.4)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5):
resolution: {integrity: sha512-MsteDXd0UagMksqm9KvcFG6gNKYNa3GGNCy73iQ6bEasEgg2v8Qjl6XA5hjs8o5UD5A3153B6W2BIVJ8SxYUtA==}
peerDependencies:
'@nomicfoundation/hardhat-chai-matchers': ^2.0.0
@@ -6362,26 +6264,26 @@ packages:
typechain: ^8.2.0
typescript: '>=4.5.0'
dependencies:
- '@nomicfoundation/hardhat-chai-matchers': 2.0.6(@nomicfoundation/hardhat-ethers@3.0.5)(chai@4.4.1)(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-ethers': 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-network-helpers': 1.0.10(hardhat@2.22.3)
- '@nomicfoundation/hardhat-verify': 1.1.1(hardhat@2.22.3)
- '@typechain/ethers-v6': 0.4.3(ethers@6.12.0)(typechain@8.3.2)(typescript@4.9.5)
- '@typechain/hardhat': 8.0.3(@typechain/ethers-v6@0.4.3)(ethers@6.12.0)(hardhat@2.22.3)(typechain@8.3.2)
- '@types/chai': 4.3.14
+ '@nomicfoundation/hardhat-chai-matchers': 2.0.6(@nomicfoundation/hardhat-ethers@3.0.6)(chai@4.4.1)(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-network-helpers': 1.0.10(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-verify': 1.1.1(hardhat@2.22.4)
+ '@typechain/ethers-v6': 0.4.3(ethers@6.12.1)(typechain@8.3.2)(typescript@4.9.5)
+ '@typechain/hardhat': 8.0.3(@typechain/ethers-v6@0.4.3)(ethers@6.12.1)(hardhat@2.22.4)(typechain@8.3.2)
+ '@types/chai': 4.3.16
'@types/mocha': 10.0.6
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
chai: 4.4.1
- ethers: 6.12.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
- hardhat-gas-reporter: 1.0.10(hardhat@2.22.3)
- solidity-coverage: 0.8.12(hardhat@2.22.3)
- ts-node: 10.9.2(@types/node@20.12.7)(typescript@4.9.5)
+ ethers: 6.12.1
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat-gas-reporter: 1.0.10(hardhat@2.22.4)
+ solidity-coverage: 0.8.12(hardhat@2.22.4)
+ ts-node: 10.9.2(@types/node@20.12.12)(typescript@4.9.5)
typechain: 8.3.2(typescript@4.9.5)
typescript: 4.9.5
dev: true
- /@nomicfoundation/hardhat-toolbox@5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-ignition-ethers@0.15.1)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@2.0.6)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.14)(@types/mocha@10.0.6)(@types/node@18.19.31)(chai@4.4.1)(ethers@6.12.0)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.3)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5):
+ /@nomicfoundation/hardhat-toolbox@5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.6)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition-ethers@0.15.4)(@nomicfoundation/hardhat-network-helpers@1.0.10)(@nomicfoundation/hardhat-verify@2.0.7)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.16)(@types/mocha@10.0.6)(@types/node@18.19.33)(chai@4.4.1)(ethers@6.12.1)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.4)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@4.9.5):
resolution: {integrity: sha512-FnUtUC5PsakCbwiVNsqlXVIWG5JIb5CEZoSXbJUsEBun22Bivx2jhF1/q9iQbzuaGpJKFQyOhemPB2+XlEE6pQ==}
peerDependencies:
'@nomicfoundation/hardhat-chai-matchers': ^2.0.0
@@ -6403,27 +6305,27 @@ packages:
typechain: ^8.3.0
typescript: '>=4.5.0'
dependencies:
- '@nomicfoundation/hardhat-chai-matchers': 2.0.6(@nomicfoundation/hardhat-ethers@3.0.5)(chai@4.4.1)(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-ethers': 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-ignition-ethers': 0.15.1(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-ignition@0.15.1)(@nomicfoundation/ignition-core@0.15.1)(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-network-helpers': 1.0.10(hardhat@2.22.3)
- '@nomicfoundation/hardhat-verify': 2.0.6(hardhat@2.22.3)
- '@typechain/ethers-v6': 0.5.1(ethers@6.12.0)(typechain@8.3.2)(typescript@4.9.5)
- '@typechain/hardhat': 9.1.0(@typechain/ethers-v6@0.5.1)(ethers@6.12.0)(hardhat@2.22.3)(typechain@8.3.2)
- '@types/chai': 4.3.14
+ '@nomicfoundation/hardhat-chai-matchers': 2.0.6(@nomicfoundation/hardhat-ethers@3.0.6)(chai@4.4.1)(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-ignition-ethers': 0.15.4(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition@0.15.4)(@nomicfoundation/ignition-core@0.15.4)(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-network-helpers': 1.0.10(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-verify': 2.0.7(hardhat@2.22.4)
+ '@typechain/ethers-v6': 0.5.1(ethers@6.12.1)(typechain@8.3.2)(typescript@4.9.5)
+ '@typechain/hardhat': 9.1.0(@typechain/ethers-v6@0.5.1)(ethers@6.12.1)(hardhat@2.22.4)(typechain@8.3.2)
+ '@types/chai': 4.3.16
'@types/mocha': 10.0.6
- '@types/node': 18.19.31
+ '@types/node': 18.19.33
chai: 4.4.1
- ethers: 6.12.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
- hardhat-gas-reporter: 1.0.10(hardhat@2.22.3)
- solidity-coverage: 0.8.12(hardhat@2.22.3)
- ts-node: 10.9.2(@types/node@18.19.31)(typescript@4.9.5)
+ ethers: 6.12.1
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat-gas-reporter: 1.0.10(hardhat@2.22.4)
+ solidity-coverage: 0.8.12(hardhat@2.22.4)
+ ts-node: 10.9.2(@types/node@18.19.33)(typescript@4.9.5)
typechain: 8.3.2(typescript@4.9.5)
typescript: 4.9.5
dev: true
- /@nomicfoundation/hardhat-verify@1.1.1(hardhat@2.22.3):
+ /@nomicfoundation/hardhat-verify@1.1.1(hardhat@2.22.4):
resolution: {integrity: sha512-9QsTYD7pcZaQFEA3tBb/D/oCStYDiEVDN7Dxeo/4SCyHRSm86APypxxdOMEPlGmXsAvd+p1j/dTODcpxb8aztA==}
peerDependencies:
hardhat: ^2.0.4
@@ -6433,17 +6335,17 @@ packages:
cbor: 8.1.0
chalk: 2.4.2
debug: 4.3.4(supports-color@5.5.0)
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
lodash.clonedeep: 4.5.0
semver: 6.3.1
table: 6.8.2
- undici: 6.14.1
+ undici: 6.16.1
transitivePeerDependencies:
- supports-color
dev: true
- /@nomicfoundation/hardhat-verify@2.0.6(hardhat@2.22.3):
- resolution: {integrity: sha512-oKUI5fl8QC8jysE2LUBHE6rObzEmccJcc4b43Ov7LFMlCBZJE27qoqGIsg/++wX7L8Jdga+bkejPxl8NvsecpQ==}
+ /@nomicfoundation/hardhat-verify@2.0.7(hardhat@2.22.4):
+ resolution: {integrity: sha512-jiYHBX+K6bBN0YhwFHQ5SWWc3dQZliM3pdgpH33C7tnsVACsX1ubZn6gZ9hfwlzG0tyjFM72XQhpaXQ56cE6Ew==}
peerDependencies:
hardhat: ^2.0.4
dependencies:
@@ -6452,23 +6354,23 @@ packages:
cbor: 8.1.0
chalk: 2.4.2
debug: 4.3.4(supports-color@5.5.0)
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
lodash.clonedeep: 4.5.0
semver: 6.3.1
table: 6.8.2
- undici: 6.14.1
+ undici: 6.16.1
transitivePeerDependencies:
- supports-color
dev: true
- /@nomicfoundation/ignition-core@0.15.1:
- resolution: {integrity: sha512-/AZO0YHRv1+yQSOtSSbg4GEH9YhU8EVePSfByU2PZW2bsAK0SA8GdoLYFbVNl140dogem5lrE+bCKtX0eN/n+A==}
+ /@nomicfoundation/ignition-core@0.15.4:
+ resolution: {integrity: sha512-i379lH+xOLFdaDv0KiNma550ZXCHc5ZkmKYhM44xyLMKBlvX6skUVFkgUjjN1gvprgOIxc17GVQXlR1R5FhGZA==}
dependencies:
'@ethersproject/address': 5.6.1
'@nomicfoundation/solidity-analyzer': 0.1.1
cbor: 9.0.2
debug: 4.3.4(supports-color@5.5.0)
- ethers: 6.12.0
+ ethers: 6.12.1
fs-extra: 10.1.0
immer: 10.0.2
lodash: 4.17.21
@@ -6479,8 +6381,8 @@ packages:
- utf-8-validate
dev: true
- /@nomicfoundation/ignition-ui@0.15.1:
- resolution: {integrity: sha512-ecx6M9K4IeF7L0XCcHg0E72zlVaGSOlkhb/9XuWrA2ltfB/e4ZsOhVxXtwDf9xIcaq7tUdMSxyj6Ld0bPAhxAw==}
+ /@nomicfoundation/ignition-ui@0.15.4:
+ resolution: {integrity: sha512-cHbmuxmhso5n2zdIaaIW4p8NNzrFj0mrnv8ufhAZfM3s3IFrRoGc1zo8hI/n1CiOTPuqUbdZcB79d+2tCKtCNw==}
dev: true
/@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1:
@@ -6589,7 +6491,31 @@ packages:
'@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.1
dev: true
- /@oclif/core@2.16.0(@types/node@20.12.7)(typescript@4.9.5):
+ /@npmcli/agent@2.2.2:
+ resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ agent-base: 7.1.1
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
+ lru-cache: 10.2.2
+ socks-proxy-agent: 8.0.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /@npmcli/fs@3.1.1:
+ resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ semver: 7.6.2
+ dev: false
+ optional: true
+
+ /@oclif/core@2.16.0(@types/node@20.12.12)(typescript@4.9.5):
resolution: {integrity: sha512-dL6atBH0zCZl1A1IXCKJgLPrM/wR7K+Wi401E/IvqsK8m2iCHW+0TEOGrans/cuN3oTW+uxIyJFHJ8Im0k4qBw==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -6616,7 +6542,7 @@ packages:
strip-ansi: 6.0.1
supports-color: 8.1.1
supports-hyperlinks: 2.3.0
- ts-node: 10.9.2(@types/node@20.12.7)(typescript@4.9.5)
+ ts-node: 10.9.2(@types/node@20.12.12)(typescript@4.9.5)
tslib: 2.6.2
widest-line: 3.1.0
wordwrap: 1.0.0
@@ -6628,7 +6554,7 @@ packages:
- typescript
dev: true
- /@oclif/core@2.8.6(@types/node@20.12.7)(typescript@4.9.5):
+ /@oclif/core@2.8.6(@types/node@20.12.12)(typescript@4.9.5):
resolution: {integrity: sha512-1QlPaHMhOORySCXkQyzjsIsy2GYTilOw3LkjeHkCgsPJQjAT4IclVytJusWktPbYNys9O+O4V23J44yomQvnBQ==}
engines: {node: '>=14.0.0'}
dependencies:
@@ -6651,12 +6577,12 @@ packages:
natural-orderby: 2.0.3
object-treeify: 1.1.33
password-prompt: 1.1.3
- semver: 7.6.0
+ semver: 7.6.2
string-width: 4.2.3
strip-ansi: 6.0.1
supports-color: 8.1.1
supports-hyperlinks: 2.3.0
- ts-node: 10.9.2(@types/node@20.12.7)(typescript@4.9.5)
+ ts-node: 10.9.2(@types/node@20.12.12)(typescript@4.9.5)
tslib: 2.6.2
widest-line: 3.1.0
wordwrap: 1.0.0
@@ -6668,11 +6594,11 @@ packages:
- typescript
dev: true
- /@oclif/plugin-autocomplete@2.3.10(@types/node@20.12.7)(typescript@4.9.5):
+ /@oclif/plugin-autocomplete@2.3.10(@types/node@20.12.12)(typescript@4.9.5):
resolution: {integrity: sha512-Ow1AR8WtjzlyCtiWWPgzMyT8SbcDJFr47009riLioHa+MHX2BCDtVn2DVnN/E6b9JlPV5ptQpjefoRSNWBesmg==}
engines: {node: '>=12.0.0'}
dependencies:
- '@oclif/core': 2.16.0(@types/node@20.12.7)(typescript@4.9.5)
+ '@oclif/core': 2.16.0(@types/node@20.12.12)(typescript@4.9.5)
chalk: 4.1.2
debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
@@ -6683,11 +6609,11 @@ packages:
- typescript
dev: true
- /@oclif/plugin-not-found@2.4.3(@types/node@20.12.7)(typescript@4.9.5):
+ /@oclif/plugin-not-found@2.4.3(@types/node@20.12.12)(typescript@4.9.5):
resolution: {integrity: sha512-nIyaR4y692frwh7wIHZ3fb+2L6XEecQwRDIb4zbEam0TvaVmBQWZoColQyWA84ljFBPZ8XWiQyTz+ixSwdRkqg==}
engines: {node: '>=12.0.0'}
dependencies:
- '@oclif/core': 2.16.0(@types/node@20.12.7)(typescript@4.9.5)
+ '@oclif/core': 2.16.0(@types/node@20.12.12)(typescript@4.9.5)
chalk: 4.1.2
fast-levenshtein: 3.0.0
transitivePeerDependencies:
@@ -6717,10 +6643,10 @@ packages:
resolution: {integrity: sha512-ytPc6eLGcHHnapAZ9S+5qsdomhjo6QBHTDRRBFfTxXIpsicMhVPouPgmUPebZZZGX7vt9USA+Z+0M0dSVtSUEA==}
dev: false
- /@openzeppelin/defender-admin-client@1.54.1(debug@4.3.4):
- resolution: {integrity: sha512-kRpSUdTsnSqntp4FOXIm95t+6VKHc8CUY2Si71VDuxs0q7HSPZkdpRPSntcolwEzWy9L4a8NS/QMwDF5NJ4X1g==}
+ /@openzeppelin/defender-admin-client@1.54.2(debug@4.3.4):
+ resolution: {integrity: sha512-bKU+T/eY9P0rC7o+0av8BDb7/L2Ixgb9LVh+1gVVyg6ZDBT07DoU9VONOXJuL6rbOnlniZVo4xhm/7kNAuLIyw==}
dependencies:
- '@openzeppelin/defender-base-client': 1.54.1(debug@4.3.4)
+ '@openzeppelin/defender-base-client': 1.54.2(debug@4.3.4)
axios: 1.6.8(debug@4.3.4)
ethers: 5.7.2
lodash: 4.17.21
@@ -6732,8 +6658,8 @@ packages:
- utf-8-validate
dev: true
- /@openzeppelin/defender-base-client@1.54.1(debug@4.3.4):
- resolution: {integrity: sha512-DRGz/7KN3ZQwu28YWMOaojrC7jjPkz/uCwkC8/C8B11qwZhA5qIVvyhYHhhFOCl0J84+E3TNdvkPD2q3p2WaJw==}
+ /@openzeppelin/defender-base-client@1.54.2(debug@4.3.4):
+ resolution: {integrity: sha512-0k2Md6WKKkLTbsygz4UYWojJAkgrNLrishmosUIBCjaiGcAXMopgnRgX6V4WjnWkyI8RVEqb9H6IZY+8BNk6Bw==}
dependencies:
amazon-cognito-identity-js: 6.3.12
async-retry: 1.3.3
@@ -6745,8 +6671,8 @@ packages:
- encoding
dev: true
- /@openzeppelin/defender-sdk-base-client@1.12.0:
- resolution: {integrity: sha512-6n5SwJWCjFciC+T7QhfXnkEmkNZGKK0efkCZDAfu/Kd8L1AICnIkWwVte71dnzCBln7wglMiZupSHL3fZqePmQ==}
+ /@openzeppelin/defender-sdk-base-client@1.13.0:
+ resolution: {integrity: sha512-XyCHF4Q//rInmJG6XM9x4JDiERJTCjmGX7FOmtbXYAKTTE5ygUvFU7gXJ5oxtbB2anPU3OJIPM25Shkd3+7dKw==}
dependencies:
amazon-cognito-identity-js: 6.3.12
async-retry: 1.3.3
@@ -6754,10 +6680,10 @@ packages:
- encoding
dev: true
- /@openzeppelin/defender-sdk-deploy-client@1.12.0(debug@4.3.4):
- resolution: {integrity: sha512-E1RTyh0kXGRJJy7Kq/qSjQlyHJmtytLLKGHIVbI4Ijo9vwRZ7FZhZgK9lapJNshS4E1p3WgXHSOUJtOfn3F1bg==}
+ /@openzeppelin/defender-sdk-deploy-client@1.13.0(debug@4.3.4):
+ resolution: {integrity: sha512-igLut1lIV52DWV9Bn8MrESgCvCQSOunqRZkSLC/KGCbEUTEyNoAHNsGMu9Z+K11RYCD0CHGnfAi0ODLsbrq6QA==}
dependencies:
- '@openzeppelin/defender-sdk-base-client': 1.12.0
+ '@openzeppelin/defender-sdk-base-client': 1.13.0
axios: 1.6.8(debug@4.3.4)
lodash: 4.17.21
transitivePeerDependencies:
@@ -6765,10 +6691,10 @@ packages:
- encoding
dev: true
- /@openzeppelin/defender-sdk-network-client@1.12.0(debug@4.3.4):
- resolution: {integrity: sha512-0dlEHC27hOVRY+iVcoP2zH8K0jy4O+sOGKz2Ep9eebNcWc7GO6z1wsc4fU51AoiMh+G7cYb+l5z1wQ4Q3Y9vIA==}
+ /@openzeppelin/defender-sdk-network-client@1.13.0(debug@4.3.4):
+ resolution: {integrity: sha512-Rv9QBEBvEi407zZzCPnOrL8y8ByyQo7fwni5EBoRJQPj1HeM4uhZkLRNpq8YZOjjNhu648SP+L4F8Bbtdzmd9w==}
dependencies:
- '@openzeppelin/defender-sdk-base-client': 1.12.0
+ '@openzeppelin/defender-sdk-base-client': 1.13.0
axios: 1.6.8(debug@4.3.4)
lodash: 4.17.21
transitivePeerDependencies:
@@ -6776,7 +6702,7 @@ packages:
- encoding
dev: true
- /@openzeppelin/hardhat-upgrades@2.5.1(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-verify@1.1.1)(ethers@6.12.0)(hardhat@2.22.3):
+ /@openzeppelin/hardhat-upgrades@2.5.1(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-verify@1.1.1)(ethers@6.12.1)(hardhat@2.22.4):
resolution: {integrity: sha512-wRwq9f2PqlfIdNGFApsqRpqptqy98exSFp8SESb6Brgw4L07sExySInNJhscM/tWVSnR1Qnuws9Ck6Fs5zIxvg==}
hasBin: true
peerDependencies:
@@ -6788,18 +6714,18 @@ packages:
'@nomicfoundation/hardhat-verify':
optional: true
dependencies:
- '@nomicfoundation/hardhat-ethers': 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-verify': 1.1.1(hardhat@2.22.3)
- '@openzeppelin/defender-admin-client': 1.54.1(debug@4.3.4)
- '@openzeppelin/defender-base-client': 1.54.1(debug@4.3.4)
- '@openzeppelin/defender-sdk-base-client': 1.12.0
- '@openzeppelin/defender-sdk-deploy-client': 1.12.0(debug@4.3.4)
+ '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-verify': 1.1.1(hardhat@2.22.4)
+ '@openzeppelin/defender-admin-client': 1.54.2(debug@4.3.4)
+ '@openzeppelin/defender-base-client': 1.54.2(debug@4.3.4)
+ '@openzeppelin/defender-sdk-base-client': 1.13.0
+ '@openzeppelin/defender-sdk-deploy-client': 1.13.0(debug@4.3.4)
'@openzeppelin/upgrades-core': 1.33.1
chalk: 4.1.2
debug: 4.3.4(supports-color@5.5.0)
ethereumjs-util: 7.1.5
- ethers: 6.12.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ ethers: 6.12.1
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
proper-lockfile: 4.1.2
undici: 5.28.4
transitivePeerDependencies:
@@ -6809,7 +6735,7 @@ packages:
- utf-8-validate
dev: true
- /@openzeppelin/hardhat-upgrades@3.1.0(@nomicfoundation/hardhat-ethers@3.0.5)(@nomicfoundation/hardhat-verify@2.0.6)(ethers@6.12.0)(hardhat@2.22.3):
+ /@openzeppelin/hardhat-upgrades@3.1.0(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-verify@2.0.7)(ethers@6.12.1)(hardhat@2.22.4):
resolution: {integrity: sha512-CQ5Cg2kE8WeW6qajUTacBsmkntiAwJd7f6p+BUtd1fEvEv7si4H2lmAqvjOjkFc9ihIEQxMBy50IsBXSZGktmg==}
hasBin: true
peerDependencies:
@@ -6821,21 +6747,21 @@ packages:
'@nomicfoundation/hardhat-verify':
optional: true
dependencies:
- '@nomicfoundation/hardhat-ethers': 3.0.5(ethers@6.12.0)(hardhat@2.22.3)
- '@nomicfoundation/hardhat-verify': 2.0.6(hardhat@2.22.3)
- '@openzeppelin/defender-admin-client': 1.54.1(debug@4.3.4)
- '@openzeppelin/defender-base-client': 1.54.1(debug@4.3.4)
- '@openzeppelin/defender-sdk-base-client': 1.12.0
- '@openzeppelin/defender-sdk-deploy-client': 1.12.0(debug@4.3.4)
- '@openzeppelin/defender-sdk-network-client': 1.12.0(debug@4.3.4)
+ '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.12.1)(hardhat@2.22.4)
+ '@nomicfoundation/hardhat-verify': 2.0.7(hardhat@2.22.4)
+ '@openzeppelin/defender-admin-client': 1.54.2(debug@4.3.4)
+ '@openzeppelin/defender-base-client': 1.54.2(debug@4.3.4)
+ '@openzeppelin/defender-sdk-base-client': 1.13.0
+ '@openzeppelin/defender-sdk-deploy-client': 1.13.0(debug@4.3.4)
+ '@openzeppelin/defender-sdk-network-client': 1.13.0(debug@4.3.4)
'@openzeppelin/upgrades-core': 1.33.1
chalk: 4.1.2
debug: 4.3.4(supports-color@5.5.0)
ethereumjs-util: 7.1.5
- ethers: 6.12.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ ethers: 6.12.1
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
proper-lockfile: 4.1.2
- undici: 6.14.1
+ undici: 6.16.1
transitivePeerDependencies:
- bufferutil
- encoding
@@ -6927,7 +6853,7 @@ packages:
dotenv: 7.0.0
dotenv-expand: 5.1.0
json5: 2.2.3
- msgpackr: 1.10.1
+ msgpackr: 1.10.2
nullthrows: 1.1.1
semver: 5.7.2
dev: true
@@ -7026,7 +6952,7 @@ packages:
'@parcel/source-map': 2.1.1
'@parcel/utils': 2.8.3
nullthrows: 1.1.1
- terser: 5.30.4
+ terser: 5.31.0
transitivePeerDependencies:
- '@parcel/core'
dev: true
@@ -7355,8 +7281,8 @@ packages:
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
dev: true
- /@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.1)(webpack@5.91.0):
- resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==}
+ /@pmmmwh/react-refresh-webpack-plugin@0.5.13(react-refresh@0.14.2)(webpack@5.91.0):
+ resolution: {integrity: sha512-odZVYXly+JwzYri9rKqqUAk0cY6zLpv4dxoKinhoJNShV36Gpxf+CyDIILJ4tYsJ1ZxIWs233Y39iVnynvDA/g==}
engines: {node: '>= 10.13'}
peerDependencies:
'@types/webpack': 4.x || 5.x
@@ -7364,7 +7290,7 @@ packages:
sockjs-client: ^1.4.0
type-fest: '>=0.17.0 <5.0.0'
webpack: '>=4.43.0 <6.0.0'
- webpack-dev-server: 3.x || 4.x
+ webpack-dev-server: 3.x || 4.x || 5.x
webpack-hot-middleware: 2.x
webpack-plugin-serve: 0.x || 1.x
peerDependenciesMeta:
@@ -7382,13 +7308,11 @@ packages:
optional: true
dependencies:
ansi-html-community: 0.0.8
- common-path-prefix: 3.0.0
- core-js-pure: 3.37.0
+ core-js-pure: 3.37.1
error-stack-parser: 2.1.4
- find-up: 5.0.0
html-entities: 2.5.2
loader-utils: 2.0.4
- react-refresh: 0.14.1
+ react-refresh: 0.14.2
schema-utils: 3.3.0
source-map: 0.7.4
webpack: 5.91.0
@@ -7469,10 +7393,10 @@ packages:
/@radix-ui/primitive@1.0.1:
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dev: false
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -7485,15 +7409,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -7506,18 +7430,18 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -7526,12 +7450,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-context@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-context@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -7540,12 +7464,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -7554,12 +7478,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
@@ -7572,19 +7496,19 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==}
peerDependencies:
'@types/react': '*'
@@ -7597,21 +7521,21 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- dev: false
-
- /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ dev: false
+
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -7620,12 +7544,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
peerDependencies:
'@types/react': '*'
@@ -7638,17 +7562,17 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-id@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-id@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -7657,13 +7581,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==}
peerDependencies:
'@types/react': '*'
@@ -7676,32 +7600,32 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
aria-hidden: 1.2.4
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-remove-scroll: 2.5.5(@types/react@18.3.2)(react@18.3.1)
dev: false
- /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
peerDependencies:
'@types/react': '*'
@@ -7714,24 +7638,24 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@floating-ui/react-dom': 2.0.8(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@floating-ui/react-dom': 2.0.9(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.2)(react@18.3.1)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
'@types/react': '*'
@@ -7744,15 +7668,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -7765,16 +7689,16 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -7787,15 +7711,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
@@ -7808,23 +7732,23 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- dev: false
-
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.79)(react@18.3.0):
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ dev: false
+
+ /@radix-ui/react-slot@1.0.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -7833,13 +7757,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -7848,12 +7772,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -7862,13 +7786,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -7877,13 +7801,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -7892,12 +7816,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -7906,13 +7830,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.79
- react: 18.3.0
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.79)(react@18.3.0):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -7921,22 +7845,22 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.4
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.3.0)
- '@types/react': 18.2.79
- react: 18.3.0
+ '@babel/runtime': 7.24.5
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1)
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
/@radix-ui/rect@1.0.1:
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dev: false
/@redux-saga/core@1.3.0:
resolution: {integrity: sha512-L+i+qIGuyWn7CIg7k1MteHGfttKPmxwZR5E7OsGikCL2LzYA0RERlaUY00Y3P3ZV2EYgrsYlBrGs6cJP5OKKqA==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@redux-saga/deferred': 1.2.1
'@redux-saga/delay-p': 1.2.1
'@redux-saga/is': 1.1.3
@@ -7987,13 +7911,13 @@ packages:
reselect: 4.1.8
dev: true
- /@remix-run/router@1.16.0:
- resolution: {integrity: sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==}
+ /@remix-run/router@1.16.1:
+ resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==}
engines: {node: '>=14.0.0'}
dev: false
- /@repeaterjs/repeater@3.0.5:
- resolution: {integrity: sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==}
+ /@repeaterjs/repeater@3.0.6:
+ resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==}
dev: false
/@rescript/std@9.0.0:
@@ -8041,7 +7965,7 @@ packages:
/@safe-global/safe-apps-sdk@8.0.0(typescript@5.2.2):
resolution: {integrity: sha512-gYw0ki/EAuV1oSyMxpqandHjnthZjYYy+YWpTAzf8BqfXM3ItcZLpjxfg+3+mXW8HIO+3jw6T9iiqEXsqHaMMw==}
dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.21.0
+ '@safe-global/safe-gateway-typescript-sdk': 3.21.1
viem: 1.18.9(typescript@5.2.2)
transitivePeerDependencies:
- bufferutil
@@ -8053,7 +7977,7 @@ packages:
/@safe-global/safe-apps-sdk@8.1.0(typescript@5.2.2):
resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==}
dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.21.0
+ '@safe-global/safe-gateway-typescript-sdk': 3.21.1
viem: 1.18.9(typescript@5.2.2)
transitivePeerDependencies:
- bufferutil
@@ -8065,7 +7989,7 @@ packages:
/@safe-global/safe-apps-sdk@9.0.0(typescript@5.2.2):
resolution: {integrity: sha512-fEqmQBU3JqTjORSl3XYrcaxdxkUqeeM39qsQjqCzzTHioN8DEfg3JCLq6EBoXzcKTVOYi8SPzLV7KJccdDw+4w==}
dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.21.0
+ '@safe-global/safe-gateway-typescript-sdk': 3.21.1
viem: 1.18.9(typescript@5.2.2)
transitivePeerDependencies:
- bufferutil
@@ -8074,8 +7998,8 @@ packages:
- zod
dev: false
- /@safe-global/safe-gateway-typescript-sdk@3.21.0:
- resolution: {integrity: sha512-q68R8j80EcUa5qLB2+lVfCYIDvK2/wE0UhFF7++4KQXDLX2AUolBWL4wsr9G44TpsiIj3fS2Bv/TrlWk8mrtTQ==}
+ /@safe-global/safe-gateway-typescript-sdk@3.21.1:
+ resolution: {integrity: sha512-7nakIjcRSs6781LkizYpIfXh1DYlkUDqyALciqz/BjFU/S97sVjZdL4cuKsG9NEarytE+f6p0Qbq2Bo1aocVUA==}
engines: {node: '>=16'}
dev: false
@@ -8213,7 +8137,7 @@ packages:
resolution: {integrity: sha512-VFhaHjlNzWyBtBm3YdqOwP8GbQHK7sWzXKpSUBTLjl2Zz6/9PwCK4qXZXI5CHpDjmvbouHUDbjrZP2KU5h6VQg==}
dependencies:
'@babel/helper-module-imports': 7.24.3
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
glob: 7.2.3
lodash: 4.17.21
require-package-name: 2.0.1
@@ -8261,48 +8185,17 @@ packages:
'@sinonjs/commons': 3.0.1
dev: true
- /@smithy/types@2.12.0:
- resolution: {integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==}
- engines: {node: '>=14.0.0'}
+ /@smithy/types@3.0.0:
+ resolution: {integrity: sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw==}
+ engines: {node: '>=16.0.0'}
dependencies:
tslib: 2.6.2
dev: true
- /@socket.io/component-emitter@3.1.1:
- resolution: {integrity: sha512-dzJtaDAAoXx4GCOJpbB2eG/Qj8VDpdwkLsWGzGm+0L7E8/434RyMbAHmk9ubXWVAb9nXmc44jUf8GKqVDiKezg==}
+ /@socket.io/component-emitter@3.1.2:
+ resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
dev: true
- /@solana/buffer-layout@4.0.1:
- resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==}
- engines: {node: '>=5.10'}
- dependencies:
- buffer: 6.0.3
- dev: false
-
- /@solana/web3.js@1.91.7:
- resolution: {integrity: sha512-HqljZKDwk6Z4TajKRGhGLlRsbGK4S8EY27DA7v1z6yakewiUY3J7ZKDZRxcqz2MYV/ZXRrJ6wnnpiHFkPdv0WA==}
- dependencies:
- '@babel/runtime': 7.24.4
- '@noble/curves': 1.4.0
- '@noble/hashes': 1.4.0
- '@solana/buffer-layout': 4.0.1
- agentkeepalive: 4.5.0
- bigint-buffer: 1.1.5
- bn.js: 5.2.1
- borsh: 0.7.0
- bs58: 4.0.1
- buffer: 6.0.3
- fast-stable-stringify: 1.0.0
- jayson: 4.1.0
- node-fetch: 2.7.0
- rpc-websockets: 7.10.0
- superstruct: 0.14.2
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
- dev: false
-
/@solidity-parser/parser@0.14.5:
resolution: {integrity: sha512-6dKnHZn7fg/iQATVEzqyUOyEidbn05q7YA2mQ9hC0MMXhhV3/JrsxmFSYZAcr7j1yUP700LLhTruvJ3MiQmjJg==}
dependencies:
@@ -8321,7 +8214,7 @@ packages:
resolution: {integrity: sha512-tFQwY2oQLa4qvHE6npKsVgVdVLQOCGP1zJM3yjZOHut43LqCwdSwitZndFLrJHZLpqru9FnmYHRakvsPvrI+qA==}
dependencies:
'@noble/hashes': 1.4.0
- apg-js: 4.3.0
+ apg-js: 4.4.0
uri-js: 4.4.1
valid-url: 1.0.9
dev: true
@@ -8442,172 +8335,172 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.4):
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.5):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.4):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.5):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.4):
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.5):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.4):
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.5):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.4):
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.5):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.5):
resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.4):
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.5):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.4):
+ /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
- /@svgr/babel-preset@6.5.1(@babel/core@7.24.4):
+ /@svgr/babel-preset@6.5.1(@babel/core@7.24.5):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.4)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.4)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.4)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.4)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.4)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.5)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.5)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.5)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.5)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.5)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.5)
dev: true
- /@svgr/babel-preset@8.1.0(@babel/core@7.24.4):
+ /@svgr/babel-preset@8.1.0(@babel/core@7.24.5):
resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.4
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.4)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.5)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.5)
dev: true
/@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.4
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.24.5)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -8619,8 +8512,8 @@ packages:
resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
engines: {node: '>=14'}
dependencies:
- '@babel/core': 7.24.4
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.24.5)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.2.2)
snake-case: 3.0.4
@@ -8633,7 +8526,7 @@ packages:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
entities: 4.5.0
dev: true
@@ -8641,7 +8534,7 @@ packages:
resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
engines: {node: '>=14'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
entities: 4.5.0
dev: true
@@ -8651,8 +8544,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.24.4
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.24.5)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -8666,8 +8559,8 @@ packages:
peerDependencies:
'@svgr/core': '*'
dependencies:
- '@babel/core': 7.24.4
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.24.5)
'@svgr/core': 8.1.0(typescript@5.2.2)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -8691,11 +8584,11 @@ packages:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.5)
+ '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.5)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
'@svgr/core': 6.5.1
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
'@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1)
@@ -8868,10 +8761,10 @@ packages:
'@tanstack/react-query': ^4.36.1
dependencies:
'@tanstack/query-persist-client-core': 4.36.1
- '@tanstack/react-query': 4.36.1(react-dom@18.3.0)(react@18.3.0)
+ '@tanstack/react-query': 4.36.1(react-dom@18.3.1)(react@18.3.1)
dev: false
- /@tanstack/react-query@4.36.1(react-dom@18.3.0)(react@18.3.0):
+ /@tanstack/react-query@4.36.1(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -8884,25 +8777,25 @@ packages:
optional: true
dependencies:
'@tanstack/query-core': 4.36.1
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- use-sync-external-store: 1.2.1(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
dev: false
- /@tanstack/react-table@8.16.0(react-dom@18.3.0)(react@18.3.0):
- resolution: {integrity: sha512-rKRjnt8ostqN2fercRVOIH/dq7MAmOENCMvVlKx6P9Iokhh6woBGnIZEkqsY/vEJf1jN3TqLOb34xQGLVRuhAg==}
+ /@tanstack/react-table@8.17.3(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-5gwg5SvPD3lNAXPuJJz1fOCEZYk9/GeBFH3w/hCgnfyszOIzwkwgp5I7Q4MJtn0WECp84b5STQUDdmvGi8m3nA==}
engines: {node: '>=12'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
- '@tanstack/table-core': 8.16.0
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@tanstack/table-core': 8.17.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /@tanstack/table-core@8.16.0:
- resolution: {integrity: sha512-dCG8vQGk4js5v88/k83tTedWOwjGnIyONrKpHpfmSJB8jwFHl8GSu1sBBxbtACVAPtAQgwNxl0rw1d3RqRM1Tg==}
+ /@tanstack/table-core@8.17.3:
+ resolution: {integrity: sha512-mPBodDGVL+fl6d90wUREepHa/7lhsghg2A3vFpakEhrhtbIlgNAZiMr7ccTgak5qbHqF14Fwy+W1yFWQt+WmYQ==}
engines: {node: '>=12'}
dev: false
@@ -8911,7 +8804,7 @@ packages:
engines: {node: '>=12'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -8925,7 +8818,7 @@ packages:
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
dependencies:
'@adobe/css-tools': 4.3.3
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@types/testing-library__jest-dom': 5.14.9
aria-query: 5.3.0
chalk: 3.0.0
@@ -8935,18 +8828,18 @@ packages:
redent: 3.0.0
dev: true
- /@testing-library/react@13.4.0(react-dom@18.3.0)(react@18.3.0):
+ /@testing-library/react@13.4.0(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==}
engines: {node: '>=12'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@testing-library/dom': 8.20.1
- '@types/react-dom': 18.2.25
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@types/react-dom': 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: true
/@testing-library/user-event@13.5.0(@testing-library/dom@8.20.1):
@@ -8955,7 +8848,7 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@testing-library/dom': 8.20.1
dev: true
@@ -8993,35 +8886,35 @@ packages:
resolution: {integrity: sha512-qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ==}
dev: true
- /@typechain/ethers-v6@0.4.3(ethers@6.12.0)(typechain@8.3.2)(typescript@4.9.5):
+ /@typechain/ethers-v6@0.4.3(ethers@6.12.1)(typechain@8.3.2)(typescript@4.9.5):
resolution: {integrity: sha512-TrxBsyb4ryhaY9keP6RzhFCviWYApcLCIRMPyWaKp2cZZrfaM3QBoxXTnw/eO4+DAY3l+8O0brNW0WgeQeOiDA==}
peerDependencies:
ethers: 6.x
typechain: ^8.3.1
typescript: '>=4.7.0'
dependencies:
- ethers: 6.12.0
+ ethers: 6.12.1
lodash: 4.17.21
ts-essentials: 7.0.3(typescript@4.9.5)
typechain: 8.3.2(typescript@4.9.5)
typescript: 4.9.5
dev: true
- /@typechain/ethers-v6@0.5.1(ethers@6.12.0)(typechain@8.3.2)(typescript@4.9.5):
+ /@typechain/ethers-v6@0.5.1(ethers@6.12.1)(typechain@8.3.2)(typescript@4.9.5):
resolution: {integrity: sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA==}
peerDependencies:
ethers: 6.x
typechain: ^8.3.2
typescript: '>=4.7.0'
dependencies:
- ethers: 6.12.0
+ ethers: 6.12.1
lodash: 4.17.21
ts-essentials: 7.0.3(typescript@4.9.5)
typechain: 8.3.2(typescript@4.9.5)
typescript: 4.9.5
dev: true
- /@typechain/hardhat@8.0.3(@typechain/ethers-v6@0.4.3)(ethers@6.12.0)(hardhat@2.22.3)(typechain@8.3.2):
+ /@typechain/hardhat@8.0.3(@typechain/ethers-v6@0.4.3)(ethers@6.12.1)(hardhat@2.22.4)(typechain@8.3.2):
resolution: {integrity: sha512-MytSmJJn+gs7Mqrpt/gWkTCOpOQ6ZDfRrRT2gtZL0rfGe4QrU4x9ZdW15fFbVM/XTa+5EsKiOMYXhRABibNeng==}
peerDependencies:
'@typechain/ethers-v6': ^0.4.3
@@ -9029,14 +8922,14 @@ packages:
hardhat: ^2.9.9
typechain: ^8.3.1
dependencies:
- '@typechain/ethers-v6': 0.4.3(ethers@6.12.0)(typechain@8.3.2)(typescript@4.9.5)
- ethers: 6.12.0
+ '@typechain/ethers-v6': 0.4.3(ethers@6.12.1)(typechain@8.3.2)(typescript@4.9.5)
+ ethers: 6.12.1
fs-extra: 9.1.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
typechain: 8.3.2(typescript@4.9.5)
dev: true
- /@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1)(ethers@6.12.0)(hardhat@2.22.3)(typechain@8.3.2):
+ /@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1)(ethers@6.12.1)(hardhat@2.22.4)(typechain@8.3.2):
resolution: {integrity: sha512-mtaUlzLlkqTlfPwB3FORdejqBskSnh+Jl8AIJGjXNAQfRQ4ofHADPl1+oU7Z3pAJzmZbUXII8MhOLQltcHgKnA==}
peerDependencies:
'@typechain/ethers-v6': ^0.5.1
@@ -9044,10 +8937,10 @@ packages:
hardhat: ^2.9.9
typechain: ^8.3.2
dependencies:
- '@typechain/ethers-v6': 0.5.1(ethers@6.12.0)(typechain@8.3.2)(typescript@4.9.5)
- ethers: 6.12.0
+ '@typechain/ethers-v6': 0.5.1(ethers@6.12.1)(typechain@8.3.2)(typescript@4.9.5)
+ ethers: 6.12.1
fs-extra: 9.1.0
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
typechain: 8.3.2(typescript@4.9.5)
dev: true
@@ -9058,8 +8951,8 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.5
@@ -9068,32 +8961,32 @@ packages:
/@types/babel__generator@7.6.8:
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: true
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
dev: true
/@types/babel__traverse@7.20.5:
resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: true
/@types/bn.js@4.11.6:
resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.33
dev: true
/@types/bn.js@5.1.5:
resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.33
dev: true
/@types/cacheable-request@6.0.3:
@@ -9101,24 +8994,24 @@ packages:
dependencies:
'@types/http-cache-semantics': 4.0.4
'@types/keyv': 3.1.4
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
'@types/responselike': 1.0.3
dev: true
/@types/chai-as-promised@7.1.8:
resolution: {integrity: sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==}
dependencies:
- '@types/chai': 4.3.14
+ '@types/chai': 4.3.16
dev: true
- /@types/chai@4.3.14:
- resolution: {integrity: sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==}
+ /@types/chai@4.3.16:
+ resolution: {integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==}
dev: true
/@types/cli-progress@3.11.5:
resolution: {integrity: sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: true
/@types/common-tags@1.8.4:
@@ -9128,7 +9021,7 @@ packages:
/@types/concat-stream@1.6.1:
resolution: {integrity: sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 8.10.66
dev: true
/@types/configstore@2.1.1:
@@ -9139,6 +9032,7 @@ packages:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
'@types/node': 12.20.55
+ dev: true
/@types/cookie@0.4.1:
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
@@ -9147,7 +9041,7 @@ packages:
/@types/cors@2.8.17:
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: true
/@types/debug@0.0.30:
@@ -9191,7 +9085,7 @@ packages:
/@types/form-data@0.0.33:
resolution: {integrity: sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 8.10.66
dev: true
/@types/get-port@3.2.0:
@@ -9209,13 +9103,13 @@ packages:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: true
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: true
/@types/hast@2.3.10:
@@ -9227,7 +9121,7 @@ packages:
/@types/hoist-non-react-statics@3.3.5:
resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==}
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
hoist-non-react-statics: 3.3.2
dev: true
@@ -9238,7 +9132,7 @@ packages:
/@types/http-proxy@1.17.14:
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: true
/@types/istanbul-lib-coverage@2.0.6:
@@ -9282,11 +9176,11 @@ packages:
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: true
- /@types/lodash@4.17.0:
- resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==}
+ /@types/lodash@4.17.1:
+ resolution: {integrity: sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q==}
dev: true
/@types/long@4.0.2:
@@ -9327,7 +9221,7 @@ packages:
/@types/node-fetch@2.6.11:
resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
form-data: 4.0.0
dev: true
@@ -9337,19 +9231,20 @@ packages:
/@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ dev: true
/@types/node@18.15.13:
resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==}
dev: true
- /@types/node@18.19.31:
- resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==}
+ /@types/node@18.19.33:
+ resolution: {integrity: sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==}
dependencies:
undici-types: 5.26.5
dev: true
- /@types/node@20.12.7:
- resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
+ /@types/node@20.12.12:
+ resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==}
dependencies:
undici-types: 5.26.5
@@ -9367,7 +9262,7 @@ packages:
/@types/pbkdf2@3.1.2:
resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.33
dev: true
/@types/prettier@2.7.3:
@@ -9388,22 +9283,22 @@ packages:
/@types/reach__router@1.3.15:
resolution: {integrity: sha512-5WEHKGglRjq/Ae3F8UQxg+GYUIhTUEiyBT9GKPoOLU/vPTn8iZrRbdzxqvarOaGludIejJykHLMdOCdhgWqaxA==}
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
dev: true
/@types/react-copy-to-clipboard@5.0.7:
resolution: {integrity: sha512-Gft19D+as4M+9Whq1oglhmK49vqPhcLzk8WfvfLvaYMIPYanyfLy0+CwFucMJfdKoSFyySPmkkWn8/E6voQXjQ==}
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
dev: true
- /@types/react-dom@18.2.25:
- resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==}
+ /@types/react-dom@18.3.0:
+ resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
- /@types/react@18.2.79:
- resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==}
+ /@types/react@18.3.2:
+ resolution: {integrity: sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==}
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
@@ -9411,7 +9306,7 @@ packages:
/@types/responselike@1.0.3:
resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: true
/@types/rimraf@2.0.5:
@@ -9424,7 +9319,7 @@ packages:
/@types/secp256k1@4.0.6:
resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==}
dependencies:
- '@types/node': 18.19.31
+ '@types/node': 18.19.33
dev: true
/@types/semver@7.5.8:
@@ -9439,7 +9334,7 @@ packages:
resolution: {integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==}
dependencies:
'@types/hoist-non-react-statics': 3.3.5
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
csstype: 3.1.3
dev: true
@@ -9465,11 +9360,12 @@ packages:
resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==}
dependencies:
'@types/node': 12.20.55
+ dev: true
/@types/ws@8.5.10:
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: false
/@types/yargs-parser@21.0.3:
@@ -9507,7 +9403,7 @@ packages:
graphemer: 1.4.0
ignore: 5.3.1
natural-compare-lite: 1.4.0
- semver: 7.6.0
+ semver: 7.6.2
tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
@@ -9535,7 +9431,7 @@ packages:
graphemer: 1.4.0
ignore: 5.3.1
natural-compare-lite: 1.4.0
- semver: 7.6.0
+ semver: 7.6.2
tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
@@ -9564,7 +9460,7 @@ packages:
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.6.0
+ semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
@@ -9593,7 +9489,7 @@ packages:
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.6.0
+ semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
@@ -9802,7 +9698,7 @@ packages:
debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.0
+ semver: 7.6.2
tsutils: 3.21.0(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
@@ -9824,7 +9720,7 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.0
+ semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
@@ -9845,7 +9741,7 @@ packages:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
eslint: 7.32.0
eslint-scope: 5.1.1
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
- typescript
@@ -9865,7 +9761,7 @@ packages:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
eslint: 8.57.0
eslint-scope: 5.1.1
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
- typescript
@@ -9884,7 +9780,7 @@ packages:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2)
eslint: 8.53.0
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
- typescript
@@ -9903,7 +9799,7 @@ packages:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2)
eslint: 8.57.0
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
- typescript
@@ -9938,18 +9834,18 @@ packages:
wonka: 6.3.4
dev: false
- /@verax-attestation-registry/verax-sdk@1.2.1(@envelop/core@5.0.0)(@graphql-mesh/types@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.7)(@types/react@18.2.79)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(react-dom@18.3.0)(react@18.3.0)(tslib@2.6.2)(typescript@5.2.2):
+ /@verax-attestation-registry/verax-sdk@1.2.1(@envelop/core@5.0.1)(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2):
resolution: {integrity: sha512-Me+JGGgOGLBsjBKtw+P/nXRy7thYRaMYkAn1ytP/sNQuUAL3w+hjnBdz/BWAZzB2ZrjNJuKe8TFmqhYjNLnisg==}
dependencies:
- '@graphprotocol/client-cli': 3.0.1(@envelop/core@5.0.0)(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@10.1.3)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql-yoga@4.0.5)(graphql@16.8.1)
- '@graphql-mesh/cache-localforage': 0.95.8(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/cross-helpers': 0.4.1(@graphql-tools/utils@10.1.3)(graphql@16.8.1)
- '@graphql-mesh/graphql': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(@types/node@20.12.7)(@types/react@18.2.79)(graphql@16.8.1)(react-dom@18.3.0)(react@18.3.0)(tslib@2.6.2)
- '@graphql-mesh/http': 0.96.14(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/runtime@0.96.13)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/merger-bare': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/runtime': 0.96.13(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
- '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.1)(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.1.3)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphprotocol/client-cli': 3.0.3(@envelop/core@5.0.1)(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)
+ '@graphql-mesh/cache-localforage': 0.95.8(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/graphql': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)
+ '@graphql-mesh/http': 0.96.14(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.96.13)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/merger-bare': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/runtime': 0.96.13(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
'@whatwg-node/fetch': 0.9.17
axios: 1.6.8(debug@4.3.4)
dotenv: 16.4.5
@@ -9982,6 +9878,50 @@ packages:
- zod
dev: false
+ /@verax-attestation-registry/verax-sdk@1.6.0(@envelop/core@5.0.1)(@graphql-mesh/types@0.98.4)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2):
+ resolution: {integrity: sha512-Y3sgKtxU7vnShfuXmBJ8Yo3S9MhSMQ4Pv+ifk2WqgjBr7CBFJ3ztA9hU9d6kBJRnKOYoEll5LU8XsGlaLPFzKg==}
+ dependencies:
+ '@graphprotocol/client-cli': 3.0.3(@envelop/core@5.0.1)(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/delegate@10.0.10)(@graphql-tools/merge@9.0.4)(@graphql-tools/utils@10.2.0)(@graphql-tools/wrap@10.0.5)(@types/node@20.12.12)(@types/react@18.3.2)(graphql-tag@2.12.6)(graphql-yoga@5.3.1)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)
+ '@graphql-mesh/cache-localforage': 0.95.8(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1)
+ '@graphql-mesh/graphql': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(graphql@16.8.1)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)
+ '@graphql-mesh/http': 0.96.14(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/runtime@0.96.13)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/merger-bare': 0.95.8(@graphql-mesh/store@0.95.8)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/runtime': 0.96.13(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/store': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-mesh/utils@0.95.8)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@graphql-mesh/utils': 0.95.8(@graphql-mesh/cross-helpers@0.4.2)(@graphql-mesh/types@0.98.4)(@graphql-tools/utils@10.2.0)(graphql@16.8.1)(tslib@2.6.2)
+ '@whatwg-node/fetch': 0.9.17
+ axios: 1.6.8(debug@4.3.4)
+ dotenv: 16.4.5
+ graphql: 16.8.1
+ viem: 2.10.8(typescript@5.2.2)
+ transitivePeerDependencies:
+ - '@envelop/core'
+ - '@graphql-mesh/types'
+ - '@graphql-tools/delegate'
+ - '@graphql-tools/merge'
+ - '@graphql-tools/utils'
+ - '@graphql-tools/wrap'
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
+ - '@types/react'
+ - bufferutil
+ - debug
+ - encoding
+ - graphql-tag
+ - graphql-ws
+ - graphql-yoga
+ - react
+ - react-dom
+ - subscriptions-transport-ws
+ - supports-color
+ - tslib
+ - typescript
+ - utf-8-validate
+ - zod
+ dev: false
+
/@vercel/webpack-asset-relocator-loader@1.7.3:
resolution: {integrity: sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==}
dependencies:
@@ -9994,99 +9934,99 @@ packages:
peerDependencies:
vite: ^4.2.0 || ^5.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-react-jsx-self': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.5)
'@types/babel__core': 7.20.5
- react-refresh: 0.14.1
- vite: 4.5.3(@types/node@20.12.7)
+ react-refresh: 0.14.2
+ vite: 4.5.3(@types/node@20.12.12)
transitivePeerDependencies:
- supports-color
dev: true
- /@vue/compiler-core@3.4.25:
- resolution: {integrity: sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==}
+ /@vue/compiler-core@3.4.27:
+ resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
requiresBuild: true
dependencies:
- '@babel/parser': 7.24.4
- '@vue/shared': 3.4.25
+ '@babel/parser': 7.24.5
+ '@vue/shared': 3.4.27
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
dev: false
- /@vue/compiler-dom@3.4.25:
- resolution: {integrity: sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==}
+ /@vue/compiler-dom@3.4.27:
+ resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
requiresBuild: true
dependencies:
- '@vue/compiler-core': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/compiler-core': 3.4.27
+ '@vue/shared': 3.4.27
dev: false
- /@vue/compiler-sfc@3.4.25:
- resolution: {integrity: sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==}
+ /@vue/compiler-sfc@3.4.27:
+ resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
requiresBuild: true
dependencies:
- '@babel/parser': 7.24.4
- '@vue/compiler-core': 3.4.25
- '@vue/compiler-dom': 3.4.25
- '@vue/compiler-ssr': 3.4.25
- '@vue/shared': 3.4.25
+ '@babel/parser': 7.24.5
+ '@vue/compiler-core': 3.4.27
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
estree-walker: 2.0.2
magic-string: 0.30.10
postcss: 8.4.38
source-map-js: 1.2.0
dev: false
- /@vue/compiler-ssr@3.4.25:
- resolution: {integrity: sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==}
+ /@vue/compiler-ssr@3.4.27:
+ resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
requiresBuild: true
dependencies:
- '@vue/compiler-dom': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/compiler-dom': 3.4.27
+ '@vue/shared': 3.4.27
dev: false
- /@vue/reactivity@3.4.25:
- resolution: {integrity: sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==}
+ /@vue/reactivity@3.4.27:
+ resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==}
requiresBuild: true
dependencies:
- '@vue/shared': 3.4.25
+ '@vue/shared': 3.4.27
dev: false
- /@vue/runtime-core@3.4.25:
- resolution: {integrity: sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==}
+ /@vue/runtime-core@3.4.27:
+ resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==}
requiresBuild: true
dependencies:
- '@vue/reactivity': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/reactivity': 3.4.27
+ '@vue/shared': 3.4.27
dev: false
- /@vue/runtime-dom@3.4.25:
- resolution: {integrity: sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==}
+ /@vue/runtime-dom@3.4.27:
+ resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==}
requiresBuild: true
dependencies:
- '@vue/runtime-core': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/runtime-core': 3.4.27
+ '@vue/shared': 3.4.27
csstype: 3.1.3
dev: false
- /@vue/server-renderer@3.4.25(vue@3.4.25):
- resolution: {integrity: sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==}
+ /@vue/server-renderer@3.4.27(vue@3.4.27):
+ resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
requiresBuild: true
peerDependencies:
- vue: 3.4.25
+ vue: 3.4.27
dependencies:
- '@vue/compiler-ssr': 3.4.25
- '@vue/shared': 3.4.25
- vue: 3.4.25(typescript@5.2.2)
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
+ vue: 3.4.27(typescript@5.2.2)
dev: false
- /@vue/shared@3.4.25:
- resolution: {integrity: sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==}
+ /@vue/shared@3.4.27:
+ resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
requiresBuild: true
dev: false
- /@wagmi/connectors@3.1.11(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9):
+ /@wagmi/connectors@3.1.11(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9):
resolution: {integrity: sha512-wzxp9f9PtSUFjDUP/QDjc1t7HON4D8wrVKsw35ejdO8hToDpx1gU9lwH/47Zo/1zExGezQc392sjoHSszYd7OA==}
peerDependencies:
typescript: '>=5.0.4'
@@ -10095,12 +10035,12 @@ packages:
typescript:
optional: true
dependencies:
- '@coinbase/wallet-sdk': 3.7.2
+ '@coinbase/wallet-sdk': 3.9.3
'@safe-global/safe-apps-provider': 0.18.2(typescript@5.2.2)
'@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)
- '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.3.2)(react@18.3.1)
'@walletconnect/legacy-provider': 2.0.0
- '@walletconnect/modal': 2.6.2(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/modal': 2.6.2(@types/react@18.3.2)(react@18.3.1)
'@walletconnect/utils': 2.11.0
abitype: 0.8.7(typescript@5.2.2)
eventemitter3: 4.0.7
@@ -10130,7 +10070,7 @@ packages:
- zod
dev: false
- /@wagmi/connectors@3.1.11(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4):
+ /@wagmi/connectors@3.1.11(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4):
resolution: {integrity: sha512-wzxp9f9PtSUFjDUP/QDjc1t7HON4D8wrVKsw35ejdO8hToDpx1gU9lwH/47Zo/1zExGezQc392sjoHSszYd7OA==}
peerDependencies:
typescript: '>=5.0.4'
@@ -10139,12 +10079,12 @@ packages:
typescript:
optional: true
dependencies:
- '@coinbase/wallet-sdk': 3.7.2
+ '@coinbase/wallet-sdk': 3.9.3
'@safe-global/safe-apps-provider': 0.18.2(typescript@5.2.2)
'@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)
- '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.3.2)(react@18.3.1)
'@walletconnect/legacy-provider': 2.0.0
- '@walletconnect/modal': 2.6.2(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/modal': 2.6.2(@types/react@18.3.2)(react@18.3.1)
'@walletconnect/utils': 2.11.0
abitype: 0.8.7(typescript@5.2.2)
eventemitter3: 4.0.7
@@ -10174,7 +10114,7 @@ packages:
- zod
dev: false
- /@wagmi/connectors@3.1.4(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9):
+ /@wagmi/connectors@3.1.4(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9):
resolution: {integrity: sha512-DrYPXByoP9o+xko9R6whKz1cjaJ7HZ+9P27WkW7bhYUWU/sPeDZAvWiLmPwNAhQy8U7A/teAxyUtbExaOdc8zw==}
peerDependencies:
typescript: '>=5.0.4'
@@ -10183,13 +10123,13 @@ packages:
typescript:
optional: true
dependencies:
- '@coinbase/wallet-sdk': 3.7.2
+ '@coinbase/wallet-sdk': 3.9.3
'@ledgerhq/connect-kit-loader': 1.1.8
'@safe-global/safe-apps-provider': 0.17.1(typescript@5.2.2)
'@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)
'@walletconnect/ethereum-provider': 2.10.2(@walletconnect/modal@2.6.2)
'@walletconnect/legacy-provider': 2.0.0
- '@walletconnect/modal': 2.6.2(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/modal': 2.6.2(@types/react@18.3.2)(react@18.3.1)
'@walletconnect/utils': 2.10.2
abitype: 0.8.7(typescript@5.2.2)
eventemitter3: 4.0.7
@@ -10219,7 +10159,7 @@ packages:
- zod
dev: false
- /@wagmi/core@1.4.13(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9):
+ /@wagmi/core@1.4.13(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9):
resolution: {integrity: sha512-ytMCvXbBOgfDu9Qw67279wq/jNEe7EZLjLyekX7ROnvHRADqFr3lwZI6ih41UmtRZAmXAx8Ghyuqy154EjB5mQ==}
peerDependencies:
typescript: '>=5.0.4'
@@ -10228,12 +10168,12 @@ packages:
typescript:
optional: true
dependencies:
- '@wagmi/connectors': 3.1.11(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9)
+ '@wagmi/connectors': 3.1.11(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9)
abitype: 0.8.7(typescript@5.2.2)
eventemitter3: 4.0.7
typescript: 5.2.2
viem: 1.18.9(typescript@5.2.2)
- zustand: 4.5.2(@types/react@18.2.79)(react@18.3.0)
+ zustand: 4.5.2(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10259,7 +10199,7 @@ packages:
- zod
dev: false
- /@wagmi/core@1.4.13(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4):
+ /@wagmi/core@1.4.13(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4):
resolution: {integrity: sha512-ytMCvXbBOgfDu9Qw67279wq/jNEe7EZLjLyekX7ROnvHRADqFr3lwZI6ih41UmtRZAmXAx8Ghyuqy154EjB5mQ==}
peerDependencies:
typescript: '>=5.0.4'
@@ -10268,12 +10208,12 @@ packages:
typescript:
optional: true
dependencies:
- '@wagmi/connectors': 3.1.11(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4)
+ '@wagmi/connectors': 3.1.11(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4)
abitype: 0.8.7(typescript@5.2.2)
eventemitter3: 4.0.7
typescript: 5.2.2
viem: 1.21.4(typescript@5.2.2)
- zustand: 4.5.2(@types/react@18.2.79)(react@18.3.0)
+ zustand: 4.5.2(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10299,7 +10239,7 @@ packages:
- zod
dev: false
- /@wagmi/core@1.4.6(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9):
+ /@wagmi/core@1.4.6(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9):
resolution: {integrity: sha512-6SYcRZulzVNXCZ77EtJ7WfqirmMR+Svb5H/3Lqh0sDGwuW9kdH9G3hBDLf8LMJ1ImiWFsSDR5cl2qo7ZreYllA==}
peerDependencies:
typescript: '>=5.0.4'
@@ -10308,12 +10248,12 @@ packages:
typescript:
optional: true
dependencies:
- '@wagmi/connectors': 3.1.4(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9)
+ '@wagmi/connectors': 3.1.4(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9)
abitype: 0.8.7(typescript@5.2.2)
eventemitter3: 4.0.7
typescript: 5.2.2
viem: 1.18.9(typescript@5.2.2)
- zustand: 4.5.2(@types/react@18.2.79)(react@18.3.0)
+ zustand: 4.5.2(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10450,11 +10390,11 @@ packages:
'@walletconnect/modal':
optional: true
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.7
- '@walletconnect/jsonrpc-provider': 1.0.13
- '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/modal': 2.6.2(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/modal': 2.6.2(@types/react@18.3.2)(react@18.3.1)
'@walletconnect/sign-client': 2.10.2
'@walletconnect/types': 2.10.2
'@walletconnect/universal-provider': 2.10.2
@@ -10480,14 +10420,14 @@ packages:
- utf-8-validate
dev: false
- /@walletconnect/ethereum-provider@2.11.0(@types/react@18.2.79)(react@18.3.0):
+ /@walletconnect/ethereum-provider@2.11.0(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-YrTeHVjuSuhlUw7SQ6xBJXDuJ6iAC+RwINm9nVhoKYJSHAy3EVSJZOofMKrnecL0iRMtD29nj57mxAInIBRuZA==}
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.7
- '@walletconnect/jsonrpc-provider': 1.0.13
- '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/modal': 2.6.2(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/modal': 2.6.2(@types/react@18.3.2)(react@18.3.1)
'@walletconnect/sign-client': 2.11.0
'@walletconnect/types': 2.11.0
'@walletconnect/universal-provider': 2.11.0
@@ -10530,13 +10470,13 @@ packages:
tslib: 1.14.1
dev: false
- /@walletconnect/jsonrpc-http-connection@1.0.7:
- resolution: {integrity: sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==}
+ /@walletconnect/jsonrpc-http-connection@1.0.8:
+ resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==}
dependencies:
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/safe-json': 1.0.2
cross-fetch: 3.1.8
- tslib: 1.14.1
+ events: 3.3.0
transitivePeerDependencies:
- encoding
dev: false
@@ -10549,6 +10489,14 @@ packages:
tslib: 1.14.1
dev: false
+ /@walletconnect/jsonrpc-provider@1.0.14:
+ resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==}
+ dependencies:
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/safe-json': 1.0.2
+ events: 3.3.0
+ dev: false
+
/@walletconnect/jsonrpc-types@1.0.3:
resolution: {integrity: sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==}
dependencies:
@@ -10556,11 +10504,18 @@ packages:
tslib: 1.14.1
dev: false
+ /@walletconnect/jsonrpc-types@1.0.4:
+ resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==}
+ dependencies:
+ events: 3.3.0
+ keyvaluestorage-interface: 1.0.0
+ dev: false
+
/@walletconnect/jsonrpc-utils@1.0.8:
resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==}
dependencies:
'@walletconnect/environment': 1.0.1
- '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/jsonrpc-types': 1.0.4
tslib: 1.14.1
dev: false
@@ -10637,15 +10592,15 @@ packages:
'@walletconnect/legacy-types': 2.0.0
'@walletconnect/legacy-utils': 2.0.0
copy-to-clipboard: 3.3.3
- preact: 10.20.2
+ preact: 10.22.0
qrcode: 1.5.3
dev: false
/@walletconnect/legacy-provider@2.0.0:
resolution: {integrity: sha512-A8xPebMI1A+50HbWwTpFCbwP7G+1NGKdTKyg8BUUg3h3Y9JucpC1W6w/x0v1Xw7qFEqQnz74LoIN/A3ytH9xrQ==}
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.7
- '@walletconnect/jsonrpc-provider': 1.0.13
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/legacy-client': 2.0.0
'@walletconnect/legacy-modal': 2.0.0
'@walletconnect/legacy-types': 2.0.0
@@ -10657,7 +10612,7 @@ packages:
/@walletconnect/legacy-types@2.0.0:
resolution: {integrity: sha512-sOVrA7HUdbI1OwKyPOQU0/DdvTSVFlsXWpAk2K2WvP2erTkBWPMTJq6cv2BmKdoJ3p6gLApT7sd+jHi3OF71uw==}
dependencies:
- '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/jsonrpc-types': 1.0.4
dev: false
/@walletconnect/legacy-utils@2.0.0:
@@ -10680,19 +10635,19 @@ packages:
pino: 7.11.0
dev: false
- /@walletconnect/modal-core@2.6.2(@types/react@18.2.79)(react@18.3.0):
+ /@walletconnect/modal-core@2.6.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==}
dependencies:
- valtio: 1.11.2(@types/react@18.2.79)(react@18.3.0)
+ valtio: 1.11.2(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react
dev: false
- /@walletconnect/modal-ui@2.6.2(@types/react@18.2.79)(react@18.3.0):
+ /@walletconnect/modal-ui@2.6.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==}
dependencies:
- '@walletconnect/modal-core': 2.6.2(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.3.2)(react@18.3.1)
lit: 2.8.0
motion: 10.16.2
qrcode: 1.5.3
@@ -10701,11 +10656,11 @@ packages:
- react
dev: false
- /@walletconnect/modal@2.6.2(@types/react@18.2.79)(react@18.3.0):
+ /@walletconnect/modal@2.6.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==}
dependencies:
- '@walletconnect/modal-core': 2.6.2(@types/react@18.2.79)(react@18.3.0)
- '@walletconnect/modal-ui': 2.6.2(@types/react@18.2.79)(react@18.3.0)
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.3.2)(react@18.3.1)
+ '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react
@@ -10723,7 +10678,7 @@ packages:
/@walletconnect/relay-api@1.0.10:
resolution: {integrity: sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==}
dependencies:
- '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/jsonrpc-types': 1.0.4
dev: false
/@walletconnect/relay-auth@1.0.4:
@@ -10867,9 +10822,9 @@ packages:
/@walletconnect/universal-provider@2.10.2:
resolution: {integrity: sha512-wFgI0LbQ3D56sgaUMsgOHCM5m8WLxiC71BGuCKQfApgsbNMVKugYVy2zWHyUyi8sqTQHI+uSaVpDev4UHq9LEw==}
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.7
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
'@walletconnect/jsonrpc-provider': 1.0.13
- '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/sign-client': 2.10.2
@@ -10899,9 +10854,9 @@ packages:
/@walletconnect/universal-provider@2.11.0:
resolution: {integrity: sha512-zgJv8jDvIMP4Qse/D9oIRXGdfoNqonsrjPZanQ/CHNe7oXGOBiQND2IIeX+tS0H7uNA0TPvctljCLiIN9nw4eA==}
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.7
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
'@walletconnect/jsonrpc-provider': 1.0.13
- '@walletconnect/jsonrpc-types': 1.0.3
+ '@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/sign-client': 2.11.0
@@ -11015,12 +10970,12 @@ packages:
dayjs: 1.11.10
dev: false
- /@web3modal/core@3.5.7(@types/react@18.2.79)(react@18.3.0):
+ /@web3modal/core@3.5.7(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-RCqhydtqZRVrOtC5E88s97cJcRNcD3euBatu0Z+TXUvuK52p9JHC7Yq2j/E7rDS4dTa0hgzqNOw3/pYScoLfiQ==}
dependencies:
'@web3modal/common': 3.5.7
'@web3modal/wallet': 3.5.7
- valtio: 1.11.2(@types/react@18.2.79)(react@18.3.0)
+ valtio: 1.11.2(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react
@@ -11032,47 +10987,47 @@ packages:
buffer: 6.0.3
dev: false
- /@web3modal/scaffold-react@3.5.7(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /@web3modal/scaffold-react@3.5.7(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-t2mzqPWpxes5SkwAsXwcE+2TEXfnS3x+cc1d8VKevvz2/R9Z9Kf14RY/2hKHeKN4W3E5KFftHuAepUZleKgYVQ==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
dependencies:
- '@web3modal/scaffold': 3.5.7(@types/react@18.2.79)(react@18.3.0)
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@web3modal/scaffold': 3.5.7(@types/react@18.3.2)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
dev: false
- /@web3modal/scaffold-utils@3.5.7(@types/react@18.2.79)(react@18.3.0):
+ /@web3modal/scaffold-utils@3.5.7(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-pRa47Ev1VPAqOhkH3H1N+NkziCuTB6iJ2I7tbEe/zKSdSN6CuNeYEwhcwukagGk1yV00He4MsLhIDz54tAs3Fg==}
dependencies:
'@web3modal/polyfills': 3.5.7
- '@web3modal/scaffold': 3.5.7(@types/react@18.2.79)(react@18.3.0)
- valtio: 1.11.2(@types/react@18.2.79)(react@18.3.0)
+ '@web3modal/scaffold': 3.5.7(@types/react@18.3.2)(react@18.3.1)
+ valtio: 1.11.2(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react
dev: false
- /@web3modal/scaffold-vue@3.5.7(@types/react@18.2.79)(react@18.3.0)(vue@3.4.25):
+ /@web3modal/scaffold-vue@3.5.7(@types/react@18.3.2)(react@18.3.1)(vue@3.4.27):
resolution: {integrity: sha512-WIS4tXauPMTGD+nUbemc+lhR3hiRh51yICm6hkbaW4Agf6e0rKpCiqtIAqLJL+hhMLNu6ZJ6gWjCOSym4hb9wQ==}
peerDependencies:
vue: '>=3'
dependencies:
- '@web3modal/scaffold': 3.5.7(@types/react@18.2.79)(react@18.3.0)
- vue: 3.4.25(typescript@5.2.2)
+ '@web3modal/scaffold': 3.5.7(@types/react@18.3.2)(react@18.3.1)
+ vue: 3.4.27(typescript@5.2.2)
transitivePeerDependencies:
- '@types/react'
- react
dev: false
- /@web3modal/scaffold@3.5.7(@types/react@18.2.79)(react@18.3.0):
+ /@web3modal/scaffold@3.5.7(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-/yQwXg2qUX1srNmoqmVAgqa8INNi2ObR9BaaNo/UFzRn02qMQsV9BQfkTrp2lC91HPUGewM833eKQw20+sUfTg==}
dependencies:
'@web3modal/common': 3.5.7
- '@web3modal/core': 3.5.7(@types/react@18.2.79)(react@18.3.0)
+ '@web3modal/core': 3.5.7(@types/react@18.3.2)(react@18.3.1)
'@web3modal/ui': 3.5.7
lit: 3.1.0
transitivePeerDependencies:
@@ -11080,16 +11035,16 @@ packages:
- react
dev: false
- /@web3modal/siwe@3.5.7(@types/react@18.2.79)(typescript@5.2.2):
+ /@web3modal/siwe@3.5.7(@types/react@18.3.2)(typescript@5.2.2):
resolution: {integrity: sha512-dV0yhJYtKq4VxKSSlTxpFgVice0qhcTPfTxrD9Z8u8O5QYw4gv8S7g6dvtFCvTce4DlHSlqNM9MZqeViB6BHpg==}
requiresBuild: true
dependencies:
- '@web3modal/core': 3.5.7(@types/react@18.2.79)(react@18.3.0)
- '@web3modal/scaffold-utils': 3.5.7(@types/react@18.2.79)(react@18.3.0)
+ '@web3modal/core': 3.5.7(@types/react@18.3.2)(react@18.3.1)
+ '@web3modal/scaffold-utils': 3.5.7(@types/react@18.3.2)(react@18.3.1)
optionalDependencies:
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- vue: 3.4.25(typescript@5.2.2)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ vue: 3.4.27(typescript@5.2.2)
transitivePeerDependencies:
- '@types/react'
- typescript
@@ -11103,24 +11058,24 @@ packages:
qrcode: 1.5.3
dev: false
- /@web3modal/wagmi@3.5.7(@types/react@18.2.79)(@wagmi/core@1.4.13)(typescript@5.2.2)(viem@1.21.4):
+ /@web3modal/wagmi@3.5.7(@types/react@18.3.2)(@wagmi/core@1.4.13)(typescript@5.2.2)(viem@1.21.4):
resolution: {integrity: sha512-Bag6YCnXn26maD4qVWCQHjlSQo9hMBkf5zivGlwMRA/akNFZyAVrjEGdZTiCrFq3hhRI4k4wdek/pyELYhWpQg==}
peerDependencies:
'@wagmi/core': '>=1 <2'
viem: '>=1 <2'
dependencies:
- '@wagmi/core': 1.4.13(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4)
+ '@wagmi/core': 1.4.13(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4)
'@web3modal/polyfills': 3.5.7
- '@web3modal/scaffold': 3.5.7(@types/react@18.2.79)(react@18.3.0)
- '@web3modal/scaffold-react': 3.5.7(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)
- '@web3modal/scaffold-utils': 3.5.7(@types/react@18.2.79)(react@18.3.0)
- '@web3modal/scaffold-vue': 3.5.7(@types/react@18.2.79)(react@18.3.0)(vue@3.4.25)
+ '@web3modal/scaffold': 3.5.7(@types/react@18.3.2)(react@18.3.1)
+ '@web3modal/scaffold-react': 3.5.7(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)
+ '@web3modal/scaffold-utils': 3.5.7(@types/react@18.3.2)(react@18.3.1)
+ '@web3modal/scaffold-vue': 3.5.7(@types/react@18.3.2)(react@18.3.1)(vue@3.4.27)
viem: 1.21.4(typescript@5.2.2)
optionalDependencies:
- '@web3modal/siwe': 3.5.7(@types/react@18.2.79)(typescript@5.2.2)
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- vue: 3.4.25(typescript@5.2.2)
+ '@web3modal/siwe': 3.5.7(@types/react@18.3.2)(typescript@5.2.2)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ vue: 3.4.27(typescript@5.2.2)
transitivePeerDependencies:
- '@types/react'
- typescript
@@ -11262,7 +11217,7 @@ packages:
resolution: {integrity: sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==}
engines: {node: '>=16.0.0'}
dependencies:
- '@whatwg-node/node-fetch': 0.5.10
+ '@whatwg-node/node-fetch': 0.5.11
urlpattern-polyfill: 10.0.0
dev: false
@@ -11276,8 +11231,8 @@ packages:
tslib: 2.6.2
dev: true
- /@whatwg-node/node-fetch@0.5.10:
- resolution: {integrity: sha512-KIAHepie/T1PRkUfze4t+bPlyvpxlWiXTPtcGlbIZ0vWkBJMdRmCg4ZrJ2y4XaO1eTPo1HlWYUuj1WvoIpumqg==}
+ /@whatwg-node/node-fetch@0.5.11:
+ resolution: {integrity: sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==}
engines: {node: '>=16.0.0'}
dependencies:
'@kamilkisiela/fast-url-parser': 1.1.4
@@ -11287,8 +11242,8 @@ packages:
tslib: 2.6.2
dev: false
- /@whatwg-node/server@0.9.33:
- resolution: {integrity: sha512-bHWZi6YhVsDKAzjlPn5EN7u5j7SvHqDI6Acr37hgMBjKyCzqHivfPFgC/sRZ6LLxM9pJNsXpFoAF1kySXhAn6w==}
+ /@whatwg-node/server@0.9.34:
+ resolution: {integrity: sha512-1sHRjqUtZIyTR2m2dS/dJpzS5OcNDpPuUSVDa2PoEgzYVKr4GsqJaYtRaEXXFohvvyh6PkouYCc1rE7jMDWVCA==}
engines: {node: '>=16.0.0'}
dependencies:
'@whatwg-node/fetch': 0.9.17
@@ -11366,11 +11321,22 @@ packages:
dependencies:
jsonparse: 1.3.1
through: 2.3.8
+ dev: true
/abbrev@1.0.9:
resolution: {integrity: sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==}
dev: true
+ /abbrev@1.1.1:
+ resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
+
+ /abbrev@2.0.0:
+ resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/abitype@0.10.3(typescript@5.2.2):
resolution: {integrity: sha512-tRN+7XIa7J9xugdbRzFv/95ka5ivR/sRe01eiWvM0HWWjHuigSZEACgKa0sj4wGuekTDtghCx+5Izk/cOi78pQ==}
peerDependencies:
@@ -11397,11 +11363,25 @@ packages:
typescript: 5.2.2
dev: false
- /abitype@0.9.8(typescript@5.2.2):
- resolution: {integrity: sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==}
+ /abitype@0.9.8(typescript@5.2.2):
+ resolution: {integrity: sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ zod: ^3 >=3.19.1
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ zod:
+ optional: true
+ dependencies:
+ typescript: 5.2.2
+ dev: false
+
+ /abitype@1.0.0(typescript@5.2.2):
+ resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==}
peerDependencies:
typescript: '>=5.0.4'
- zod: ^3 >=3.19.1
+ zod: ^3 >=3.22.0
peerDependenciesMeta:
typescript:
optional: true
@@ -11537,14 +11517,17 @@ packages:
debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- dev: true
- /agentkeepalive@4.5.0:
- resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==}
- engines: {node: '>= 8.0.0'}
+ /agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ engines: {node: '>= 14'}
+ requiresBuild: true
dependencies:
- humanize-ms: 1.2.1
+ debug: 4.3.4(supports-color@5.5.0)
+ transitivePeerDependencies:
+ - supports-color
dev: false
+ optional: true
/aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
@@ -11552,9 +11535,8 @@ packages:
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
- dev: true
- /ajv-formats@2.1.1(ajv@8.12.0):
+ /ajv-formats@2.1.1(ajv@8.13.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependencies:
ajv: ^8.0.0
@@ -11562,10 +11544,10 @@ packages:
ajv:
optional: true
dependencies:
- ajv: 8.12.0
+ ajv: 8.13.0
dev: true
- /ajv-formats@3.0.1(ajv@8.12.0):
+ /ajv-formats@3.0.1(ajv@8.13.0):
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
peerDependencies:
ajv: ^8.0.0
@@ -11573,7 +11555,7 @@ packages:
ajv:
optional: true
dependencies:
- ajv: 8.12.0
+ ajv: 8.13.0
dev: false
/ajv-keywords@3.5.2(ajv@6.12.6):
@@ -11584,12 +11566,12 @@ packages:
ajv: 6.12.6
dev: true
- /ajv-keywords@5.1.0(ajv@8.12.0):
+ /ajv-keywords@5.1.0(ajv@8.13.0):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
dependencies:
- ajv: 8.12.0
+ ajv: 8.13.0
fast-deep-equal: 3.1.3
dev: true
@@ -11601,8 +11583,8 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv@8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ /ajv@8.13.0:
+ resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
dependencies:
fast-deep-equal: 3.1.3
json-schema-traverse: 1.0.0
@@ -11739,8 +11721,8 @@ packages:
normalize-path: 3.0.0
picomatch: 2.3.1
- /apg-js@4.3.0:
- resolution: {integrity: sha512-8U8MULS+JocCnm11bfrVS4zxtAcE3uOiCAI21SnjDrV9LNhMSGwTGGeko3QfyK1JLWwT7KebFqJMB2puzfdFMQ==}
+ /apg-js@4.4.0:
+ resolution: {integrity: sha512-fefmXFknJmtgtNEXfPwZKYkMFX4Fyeyz+fNF6JWp87biGOPslJbCBVU158zvKRZfHBKnJDy8CMM40oLFGkXT8Q==}
dev: true
/apisauce@2.1.6(debug@4.3.4):
@@ -11763,11 +11745,34 @@ packages:
resolution: {integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==}
dev: true
+ /aproba@2.0.0:
+ resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/are-docs-informative@0.0.2:
resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
engines: {node: '>=14'}
dev: true
+ /are-we-there-yet@2.0.0:
+ resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
+ engines: {node: '>=10'}
+ requiresBuild: true
+ dependencies:
+ delegates: 1.0.0
+ readable-stream: 3.6.2
+ dev: false
+ optional: true
+
+ /are-we-there-yet@4.0.2:
+ resolution: {integrity: sha512-ncSWAawFhKMJDTdoAeOV+jyW1VCMj5QIAwULIBV0SSR7B/RLPPEQiknKcg/RIIZlUQrxELpsxMiTUoAQ4sIUyg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
@@ -12043,10 +12048,10 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001612
+ caniuse-lite: 1.0.30001620
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.0
+ picocolors: 1.0.1
postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
@@ -12056,6 +12061,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
possible-typed-array-names: 1.0.0
+ dev: true
/axe-core@4.7.0:
resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
@@ -12089,9 +12095,9 @@ packages:
eslint: '>= 4.12.1'
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
+ '@babel/types': 7.24.5
eslint: 8.57.0
eslint-visitor-keys: 1.3.0
resolve: 1.22.8
@@ -12099,17 +12105,17 @@ packages:
- supports-color
dev: true
- /babel-jest@29.7.0(@babel/core@7.24.4):
+ /babel-jest@29.7.0(@babel/core@7.24.5):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.24.4)
+ babel-preset-jest: 29.6.3(@babel/core@7.24.5)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12121,14 +12127,14 @@ packages:
resolution: {integrity: sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ==}
dev: true
- /babel-loader@8.3.0(@babel/core@7.24.4)(webpack@5.91.0):
+ /babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0):
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
@@ -12150,7 +12156,7 @@ packages:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.24.5
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -12164,7 +12170,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
dev: true
@@ -12173,98 +12179,98 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
cosmiconfig: 7.1.0
resolve: 1.22.8
- /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.4):
+ /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5):
resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': 7.24.4
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.4):
+ /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.5):
resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
- core-js-compat: 3.37.0
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.4):
+ /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.5):
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-remove-graphql-queries@5.13.1(@babel/core@7.24.4)(gatsby@5.13.4):
+ /babel-plugin-remove-graphql-queries@5.13.1(@babel/core@7.24.5)(gatsby@5.13.4):
resolution: {integrity: sha512-yncJ/W6Un48aBRpK/rmdpQOMcr4+EmJ3oi2Wq1zXKu8WLlw+j93KTbejf7fg2msm8GUskb/+9Nnpz7oMCqO9aA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@babel/core': ^7.0.0
gatsby: ^5.0.0-next
dependencies:
- '@babel/core': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/types': 7.24.0
- gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
+ '@babel/core': 7.24.5
+ '@babel/runtime': 7.24.5
+ '@babel/types': 7.24.5
+ gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
gatsby-core-utils: 4.13.1
dev: true
- /babel-plugin-styled-components@2.1.4(@babel/core@7.24.4)(styled-components@5.3.11):
+ /babel-plugin-styled-components@2.1.4(@babel/core@7.24.5)(styled-components@5.3.11):
resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
peerDependencies:
styled-components: '>= 2'
dependencies:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.24.3
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0)
+ styled-components: 5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
transitivePeerDependencies:
- '@babel/core'
dev: false
- /babel-plugin-styled-components@2.1.4(@babel/core@7.24.4)(styled-components@5.3.3):
+ /babel-plugin-styled-components@2.1.4(@babel/core@7.24.5)(styled-components@5.3.3):
resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
peerDependencies:
styled-components: '>= 2'
dependencies:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.24.3
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.3(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0)
+ styled-components: 5.3.3(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
transitivePeerDependencies:
- '@babel/core'
/babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
- /babel-plugin-transform-import-meta@2.2.1(@babel/core@7.24.4):
+ /babel-plugin-transform-import-meta@2.2.1(@babel/core@7.24.5):
resolution: {integrity: sha512-AxNh27Pcg8Kt112RGa3Vod2QS2YXKKJ6+nSvRtv7qQTJAdx0MZa4UHZ4lnxHUWA2MNbLuZQv5FVab4P1CoLOWw==}
peerDependencies:
'@babel/core': ^7.10.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/template': 7.24.0
tslib: 2.6.2
dev: true
@@ -12273,106 +12279,106 @@ packages:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
dev: true
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.4):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.5):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
- dev: true
-
- /babel-preset-fbjs@3.4.0(@babel/core@7.24.4):
+ '@babel/core': 7.24.5
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5)
+ dev: true
+
+ /babel-preset-fbjs@3.4.0(@babel/core@7.24.5):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5)
+ '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
+ '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.5)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
- /babel-preset-gatsby@3.13.2(@babel/core@7.24.4)(core-js@3.37.0):
+ /babel-preset-gatsby@3.13.2(@babel/core@7.24.5)(core-js@3.37.1):
resolution: {integrity: sha512-1zZ3Fpt9jD63inJXWUF2hA6U2cBAMYFDSC5hKqnSSVbNUzKlHUcY0Vbx8azBSaHg27TVp9BitR10zvq5AHP/OQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@babel/core': ^7.11.6
core-js: ^3.0.0
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
- '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.4)
- '@babel/runtime': 7.24.4
+ '@babel/core': 7.24.5
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.5)
+ '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5)
+ '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.5)
+ '@babel/preset-env': 7.24.5(@babel/core@7.24.5)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.5)
+ '@babel/runtime': 7.24.5
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
- core-js: 3.37.0
+ core-js: 3.37.1
gatsby-core-utils: 4.13.1
gatsby-legacy-polyfills: 3.13.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-preset-jest@29.6.3(@babel/core@7.24.4):
+ /babel-preset-jest@29.6.3(@babel/core@7.24.5):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5)
dev: true
- /babelify@10.0.0(@babel/core@7.24.4):
+ /babelify@10.0.0(@babel/core@7.24.5):
resolution: {integrity: sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
dev: true
/bail@2.0.2:
@@ -12424,6 +12430,7 @@ packages:
resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==}
dependencies:
safe-buffer: 5.2.1
+ dev: true
/base16@1.0.0:
resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
@@ -12451,14 +12458,6 @@ packages:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
dev: true
- /bigint-buffer@1.1.5:
- resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==}
- engines: {node: '>= 10.0.0'}
- requiresBuild: true
- dependencies:
- bindings: 1.5.0
- dev: false
-
/binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
@@ -12484,16 +12483,6 @@ packages:
hasBin: true
dev: true
- /bind-decorator@1.0.11:
- resolution: {integrity: sha512-yzkH0uog6Vv/vQ9+rhSKxecnqGUZHYncg7qS7voz3Q76+TAi1SGiOKk2mlOvusQnFz9Dc4BC/NMkeXu11YgjJg==}
- dev: false
-
- /bindings@1.5.0:
- resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
- dependencies:
- file-uri-to-path: 1.0.0
- dev: false
-
/bl@1.2.3:
resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
dependencies:
@@ -12577,14 +12566,6 @@ packages:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
- /borsh@0.7.0:
- resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==}
- dependencies:
- bn.js: 5.2.1
- bs58: 4.0.1
- text-encoding-utf-8: 1.0.2
- dev: false
-
/boxen@5.1.2:
resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
engines: {node: '>=10'}
@@ -12762,10 +12743,10 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001612
- electron-to-chromium: 1.4.749
+ caniuse-lite: 1.0.30001620
+ electron-to-chromium: 1.4.772
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ update-browserslist-db: 1.0.16(browserslist@4.23.0)
/bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
@@ -12778,6 +12759,7 @@ packages:
resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==}
dependencies:
base-x: 3.0.9
+ dev: true
/bs58check@2.1.2:
resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==}
@@ -12843,14 +12825,6 @@ packages:
base64-js: 1.5.1
ieee754: 1.2.1
- /bufferutil@4.0.8:
- resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==}
- engines: {node: '>=6.14.2'}
- requiresBuild: true
- dependencies:
- node-gyp-build: 4.8.0
- dev: false
-
/builtin-status-codes@3.0.0:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
dev: true
@@ -12858,7 +12832,7 @@ packages:
/builtins@5.1.0:
resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
dependencies:
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/busboy@1.6.0:
@@ -12877,6 +12851,26 @@ packages:
engines: {node: '>= 0.8'}
dev: true
+ /cacache@18.0.3:
+ resolution: {integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ '@npmcli/fs': 3.1.1
+ fs-minipass: 3.0.3
+ glob: 10.3.15
+ lru-cache: 10.2.2
+ minipass: 7.1.1
+ minipass-collect: 2.0.1
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ p-map: 4.0.0
+ ssri: 10.0.6
+ tar: 6.2.1
+ unique-filename: 3.0.0
+ dev: false
+ optional: true
+
/cache-manager@2.11.1:
resolution: {integrity: sha512-XhUuc9eYwkzpK89iNewFwtvcDYMUsvtwzHeyEOPJna/WsVsXcrzsA1ft2M0QqPNunEzLhNCYPo05tEfG+YuNow==}
dependencies:
@@ -12934,6 +12928,7 @@ packages:
function-bind: 1.1.2
get-intrinsic: 1.2.4
set-function-length: 1.2.2
+ dev: true
/callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -12965,13 +12960,13 @@ packages:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001612
+ caniuse-lite: 1.0.30001620
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite@1.0.30001612:
- resolution: {integrity: sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==}
+ /caniuse-lite@1.0.30001620:
+ resolution: {integrity: sha512-WJvYsOjd1/BYUY6SNGUosK9DUidBPDTnOARHp3fSmFO1ekdxaY6nKRttEVrfMmYi80ctS0kz1wiWmm14fVc3ew==}
/capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -13011,10 +13006,10 @@ packages:
hasBin: true
dev: true
- /chai-as-promised@7.1.1(chai@4.4.1):
- resolution: {integrity: sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==}
+ /chai-as-promised@7.1.2(chai@4.4.1):
+ resolution: {integrity: sha512-aBDHZxRzYnUYuIAIPBH2s511DjlKPzXNlXSGFC8CwmroWQLfrW0LtE1nK3MAwwNhJPa9raEjNCmRoFpG0Hurdw==}
peerDependencies:
- chai: '>= 2.1.2 < 5'
+ chai: '>= 2.1.2 < 6'
dependencies:
chai: 4.4.1
check-error: 1.0.3
@@ -13159,7 +13154,6 @@ packages:
/chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- dev: true
/chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
@@ -13188,8 +13182,8 @@ packages:
consola: 3.2.3
dev: false
- /cjs-module-lexer@1.2.3:
- resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
+ /cjs-module-lexer@1.3.1:
+ resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
dev: true
/class-variance-authority@0.7.0:
@@ -13201,7 +13195,6 @@ packages:
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- dev: true
/clean-stack@3.0.1:
resolution: {integrity: sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==}
@@ -13367,6 +13360,13 @@ packages:
simple-swizzle: 0.2.2
dev: true
+ /color-support@1.1.3:
+ resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
+ hasBin: true
+ requiresBuild: true
+ dev: false
+ optional: true
+
/color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
@@ -13438,6 +13438,7 @@ packages:
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ dev: true
/commander@3.0.2:
resolution: {integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==}
@@ -13457,10 +13458,6 @@ packages:
engines: {node: '>= 12.0.0'}
dev: true
- /common-path-prefix@3.0.0:
- resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
- dev: true
-
/common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
@@ -13545,7 +13542,7 @@ packages:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
dev: true
- /connectkit@1.5.3(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0)(viem@1.18.9)(wagmi@1.4.6):
+ /connectkit@1.5.3(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)(viem@1.18.9)(wagmi@1.4.6):
resolution: {integrity: sha512-vXneVOa+oit5Migoxca2QkgVBHaROItzb2kW13o7aUrcEcecYIGZjsizsVM2YvIdKihyWs+zJFrlED4g8zAMew==}
engines: {node: '>=12.4'}
peerDependencies:
@@ -13556,16 +13553,16 @@ packages:
dependencies:
buffer: 6.0.3
detect-browser: 5.3.0
- framer-motion: 6.5.1(react-dom@18.3.0)(react@18.3.0)
+ framer-motion: 6.5.1(react-dom@18.3.1)(react@18.3.1)
qrcode: 1.5.3
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- react-transition-state: 1.1.5(react-dom@18.3.0)(react@18.3.0)
- react-use-measure: 2.1.1(react-dom@18.3.0)(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-transition-state: 1.1.5(react-dom@18.3.1)(react@18.3.1)
+ react-use-measure: 2.1.1(react-dom@18.3.1)(react@18.3.1)
resize-observer-polyfill: 1.5.1
- styled-components: 5.3.11(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0)
+ styled-components: 5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
viem: 1.18.9(typescript@5.2.2)
- wagmi: 1.4.6(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9)
+ wagmi: 1.4.6(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9)
transitivePeerDependencies:
- '@babel/core'
- react-is
@@ -13580,6 +13577,12 @@ packages:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
dev: true
+ /console-control-strings@1.1.0:
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/constant-case@3.0.4:
resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
dependencies:
@@ -13659,19 +13662,19 @@ packages:
browserslist: 4.23.0
dev: true
- /core-js-compat@3.37.0:
- resolution: {integrity: sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==}
+ /core-js-compat@3.37.1:
+ resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
dependencies:
browserslist: 4.23.0
dev: true
- /core-js-pure@3.37.0:
- resolution: {integrity: sha512-d3BrpyFr5eD4KcbRvQ3FTUx/KWmaDesr7+a3+1+P46IUnNoEt+oiLijPINZMEon7w9oGkIINWxrBAU9DEciwFQ==}
+ /core-js-pure@3.37.1:
+ resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
requiresBuild: true
dev: true
- /core-js@3.37.0:
- resolution: {integrity: sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==}
+ /core-js@3.37.1:
+ resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
requiresBuild: true
dev: true
@@ -13751,8 +13754,8 @@ packages:
typescript: 5.2.2
dev: true
- /cosmiconfig@8.3.6(typescript@5.4.5):
- resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
+ /cosmiconfig@9.0.0(typescript@5.4.5):
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
engines: {node: '>=14'}
peerDependencies:
typescript: '>=4.9.5'
@@ -13760,10 +13763,10 @@ packages:
typescript:
optional: true
dependencies:
+ env-paths: 2.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
- path-type: 4.0.0
typescript: 5.4.5
dev: false
@@ -13783,7 +13786,7 @@ packages:
resolution: {integrity: sha512-CCg8Vz/iQs1cgMEzyRlVGMvNs8ivE/2w+TL6yS56FVe1JjOou8nKYHzxnWxRmBUtC7rTfjxVaTESIotuYBsltQ==}
hasBin: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dev: true
/create-hash@1.2.0:
@@ -13807,7 +13810,7 @@ packages:
sha.js: 2.4.11
dev: true
- /create-jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2):
+ /create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2):
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -13816,7 +13819,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ jest-config: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -13920,7 +13923,7 @@ packages:
postcss-modules-values: 4.0.0(postcss@8.4.38)
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
- semver: 7.6.0
+ semver: 7.6.2
webpack: 5.91.0
dev: true
@@ -14106,12 +14109,16 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
/dayjs@1.11.10:
resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
dev: false
+ /dayjs@1.11.11:
+ resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==}
+ dev: false
+
/death@1.1.0:
resolution: {integrity: sha512-vsV6S4KVHvTGxbEcij7hkWRv0It+sGGWVOM67dQde/o5Xjnr+KmLjxWJii2uEObIrt1CcM9w0Yaovx+iOlIL+w==}
dev: true
@@ -14268,6 +14275,7 @@ packages:
es-define-property: 1.0.0
es-errors: 1.3.0
gopd: 1.0.1
+ dev: true
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
@@ -14294,11 +14302,18 @@ packages:
/delay@5.0.0:
resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==}
engines: {node: '>=10'}
+ dev: true
/delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
+ /delegates@1.0.0:
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
@@ -14354,7 +14369,6 @@ packages:
/detect-libc@2.0.3:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
- dev: true
/detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
@@ -14381,8 +14395,9 @@ packages:
- supports-color
dev: true
- /detect-port@1.5.1:
- resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
+ /detect-port@1.6.1:
+ resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==}
+ engines: {node: '>= 4.0.0'}
hasBin: true
dependencies:
address: 1.2.2
@@ -14408,7 +14423,7 @@ packages:
'@types/debug': 0.0.30
'@types/get-port': 3.2.0
'@types/glob': 5.0.38
- '@types/lodash': 4.17.0
+ '@types/lodash': 4.17.1
'@types/mkdirp': 0.5.2
'@types/node': 8.10.66
'@types/rimraf': 2.0.5
@@ -14495,13 +14510,6 @@ packages:
- supports-color
dev: true
- /dnscache@1.0.2:
- resolution: {integrity: sha512-2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ==}
- dependencies:
- asap: 2.0.6
- lodash.clone: 4.5.0
- dev: false
-
/docker-compose@0.23.19:
resolution: {integrity: sha512-v5vNLIdUqwj4my80wxFDkNH+4S85zsRuH29SO7dCWVWPCMt/ohZBsGN6g6KXWifT0pzQ7uOxqEKCYCDPJ8Vz4g==}
engines: {node: '>= 6.0.0'}
@@ -14683,7 +14691,7 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
- jake: 10.8.7
+ jake: 10.9.1
dev: true
/ejs@3.1.8:
@@ -14691,7 +14699,7 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
- jake: 10.8.7
+ jake: 10.9.1
dev: true
/electron-fetch@1.9.1:
@@ -14701,8 +14709,8 @@ packages:
encoding: 0.1.13
dev: true
- /electron-to-chromium@1.4.749:
- resolution: {integrity: sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==}
+ /electron-to-chromium@1.4.772:
+ resolution: {integrity: sha512-jFfEbxR/abTTJA3ci+2ok1NTuOBBtB4jH+UT6PUmRN+DY3WSD4FFRsgoVQ+QNIJ0T7wrXwzsWCI2WKC46b++2A==}
/elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -14756,7 +14764,6 @@ packages:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
dependencies:
iconv-lite: 0.6.3
- dev: true
/end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
@@ -14766,7 +14773,7 @@ packages:
/engine.io-client@6.5.3:
resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==}
dependencies:
- '@socket.io/component-emitter': 3.1.1
+ '@socket.io/component-emitter': 3.1.2
debug: 4.3.4(supports-color@5.5.0)
engine.io-parser: 5.2.2
ws: 8.11.0
@@ -14788,7 +14795,7 @@ packages:
dependencies:
'@types/cookie': 0.4.1
'@types/cors': 2.8.17
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.4.2
@@ -14802,8 +14809,8 @@ packages:
- utf-8-validate
dev: true
- /enhanced-resolve@5.16.0:
- resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
+ /enhanced-resolve@5.16.1:
+ resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
@@ -14833,13 +14840,19 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
+ /env-paths@2.2.0:
+ resolution: {integrity: sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==}
+ engines: {node: '>=6'}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/env-paths@2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- dev: true
- /envinfo@7.12.0:
- resolution: {integrity: sha512-Iw9rQJBGpJRd3rwXm9ft/JiGoAZmLxxJZELYDQoPRZ4USVhkKtIcNBPw6U+/K2mBpaqM25JSV6Yl4Az9vO2wJg==}
+ /envinfo@7.13.0:
+ resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
engines: {node: '>=4'}
hasBin: true
dev: true
@@ -14848,6 +14861,12 @@ packages:
resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==}
dev: true
+ /err-code@2.0.3:
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/err-code@3.0.1:
resolution: {integrity: sha512-GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA==}
dev: true
@@ -14882,7 +14901,7 @@ packages:
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
get-symbol-description: 1.0.2
- globalthis: 1.0.3
+ globalthis: 1.0.4
gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
@@ -14920,10 +14939,12 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.2.4
+ dev: true
/es-errors@1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
+ dev: true
/es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
@@ -14950,7 +14971,7 @@ packages:
es-set-tostringtag: 2.0.3
function-bind: 1.1.2
get-intrinsic: 1.2.4
- globalthis: 1.0.3
+ globalthis: 1.0.4
has-property-descriptors: 1.0.2
has-proto: 1.0.3
has-symbols: 1.0.3
@@ -14959,8 +14980,8 @@ packages:
safe-array-concat: 1.1.2
dev: true
- /es-module-lexer@1.5.0:
- resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==}
+ /es-module-lexer@1.5.2:
+ resolution: {integrity: sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==}
dev: true
/es-object-atoms@1.0.0:
@@ -15015,11 +15036,13 @@ packages:
/es6-promise@4.2.8:
resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
+ dev: true
/es6-promisify@5.0.0:
resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==}
dependencies:
es6-promise: 4.2.8
+ dev: true
/es6-symbol@3.1.4:
resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
@@ -15119,7 +15142,7 @@ packages:
eslint: 8.57.0
dev: true
- /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jest@27.9.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.1)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@4.9.5):
+ /eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jest@27.9.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@4.9.5):
resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -15153,7 +15176,7 @@ packages:
eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.0)(jest@29.7.0)(typescript@4.9.5)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-react: 7.34.1(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.1(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
typescript: 4.9.5
dev: true
@@ -15175,12 +15198,12 @@ packages:
eslint-plugin-import: '*'
dependencies:
debug: 4.3.4(supports-color@5.5.0)
- enhanced-resolve: 5.16.0
+ enhanced-resolve: 5.16.1
eslint: 8.57.0
eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
fast-glob: 3.3.2
- get-tsconfig: 4.7.3
+ get-tsconfig: 4.7.5
is-core-module: 2.13.1
is-glob: 4.0.3
transitivePeerDependencies:
@@ -15424,7 +15447,7 @@ packages:
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@4.9.5)
'@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
eslint: 8.57.0
- jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
transitivePeerDependencies:
- supports-color
- typescript
@@ -15443,7 +15466,7 @@ packages:
escape-string-regexp: 4.0.0
eslint: 8.57.0
esquery: 1.5.0
- semver: 7.6.0
+ semver: 7.6.2
spdx-expression-parse: 3.0.1
transitivePeerDependencies:
- supports-color
@@ -15455,7 +15478,7 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
aria-query: 5.3.0
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
@@ -15488,7 +15511,7 @@ packages:
is-core-module: 2.13.1
minimatch: 3.1.2
resolve: 1.22.8
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.57.0)(prettier@2.8.8):
@@ -15538,8 +15561,8 @@ packages:
eslint: 8.57.0
dev: true
- /eslint-plugin-react-hooks@4.6.1(eslint@8.53.0):
- resolution: {integrity: sha512-Ck77j8hF7l9N4S/rzSLOWEKpn994YH6iwUK8fr9mXIaQvGpQYmOnQLbiue1u5kI5T1y+gdgqosnEAO9NCz0DBg==}
+ /eslint-plugin-react-hooks@4.6.2(eslint@8.53.0):
+ resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
@@ -15547,8 +15570,8 @@ packages:
eslint: 8.53.0
dev: true
- /eslint-plugin-react-hooks@4.6.1(eslint@8.57.0):
- resolution: {integrity: sha512-Ck77j8hF7l9N4S/rzSLOWEKpn994YH6iwUK8fr9mXIaQvGpQYmOnQLbiue1u5kI5T1y+gdgqosnEAO9NCz0DBg==}
+ /eslint-plugin-react-hooks@4.6.2(eslint@8.57.0):
+ resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
@@ -15556,16 +15579,16 @@ packages:
eslint: 8.57.0
dev: true
- /eslint-plugin-react-refresh@0.4.6(eslint@8.53.0):
- resolution: {integrity: sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==}
+ /eslint-plugin-react-refresh@0.4.7(eslint@8.53.0):
+ resolution: {integrity: sha512-yrj+KInFmwuQS2UQcg1SF83ha1tuHC1jMQbRNyuWtlEzzKRDgAl7L4Yp4NlDUZTZNlWvHEzOtJhMi40R7JxcSw==}
peerDependencies:
eslint: '>=7'
dependencies:
eslint: 8.53.0
dev: true
- /eslint-plugin-react-refresh@0.4.6(eslint@8.57.0):
- resolution: {integrity: sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==}
+ /eslint-plugin-react-refresh@0.4.7(eslint@8.57.0):
+ resolution: {integrity: sha512-yrj+KInFmwuQS2UQcg1SF83ha1tuHC1jMQbRNyuWtlEzzKRDgAl7L4Yp4NlDUZTZNlWvHEzOtJhMi40R7JxcSw==}
peerDependencies:
eslint: '>=7'
dependencies:
@@ -15700,10 +15723,10 @@ packages:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
progress: 2.0.3
regexpp: 3.2.0
- semver: 7.6.0
+ semver: 7.6.2
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
table: 6.8.2
@@ -15753,7 +15776,7 @@ packages:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
@@ -15800,7 +15823,7 @@ packages:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
@@ -15889,12 +15912,13 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /eth-block-tracker@6.1.0:
- resolution: {integrity: sha512-K9SY8+/xMBi4M5HHTDdxnpEqEEGjbNpzHFqvxyjMZej8InV/B+CkFRKM6W+uvrFJ7m8Zd1E0qUkseU3vdIDFYQ==}
+ /eth-block-tracker@7.1.0:
+ resolution: {integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==}
engines: {node: '>=14.0.0'}
dependencies:
- '@metamask/safe-event-emitter': 2.0.0
- '@metamask/utils': 3.6.0
+ '@metamask/eth-json-rpc-provider': 1.0.1
+ '@metamask/safe-event-emitter': 3.1.1
+ '@metamask/utils': 5.0.2
json-rpc-random-id: 1.0.1
pify: 3.0.0
transitivePeerDependencies:
@@ -15948,11 +15972,11 @@ packages:
- utf-8-validate
dev: true
- /eth-json-rpc-filters@5.1.0:
- resolution: {integrity: sha512-fos+9xmoa1A2Ytsc9eYof17r81BjdJOUcGcgZn4K/tKdCCTb+a8ytEtwlu1op5qsXFDlgGmstTELFrDEc89qEQ==}
+ /eth-json-rpc-filters@6.0.1:
+ resolution: {integrity: sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig==}
engines: {node: '>=14.0.0'}
dependencies:
- '@metamask/safe-event-emitter': 2.0.0
+ '@metamask/safe-event-emitter': 3.1.1
async-mutex: 0.2.6
eth-query: 2.1.2
json-rpc-engine: 6.1.0
@@ -15972,8 +15996,8 @@ packages:
xtend: 4.0.2
dev: false
- /eth-rpc-errors@4.0.2:
- resolution: {integrity: sha512-n+Re6Gu8XGyfFy1it0AwbD1x0MUzspQs0D5UiPs1fFPCr6WAwZM+vbIhXheBFrpgosqN9bs5PqlB4Q61U/QytQ==}
+ /eth-rpc-errors@4.0.3:
+ resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==}
dependencies:
fast-safe-stringify: 2.1.1
dev: false
@@ -16088,8 +16112,8 @@ packages:
- bufferutil
- utf-8-validate
- /ethers@6.12.0:
- resolution: {integrity: sha512-zL5NlOTjML239gIvtVJuaSk0N9GQLi1Hom3ZWUszE5lDTQE/IVB62mrPkQ2W1bGcZwVGSLaetQbWNQSvI4rGDQ==}
+ /ethers@6.12.1:
+ resolution: {integrity: sha512-j6wcVoZf06nqEcBbDWkKg8Fp895SS96dSnTCjiXT+8vt2o02raTn4Lo9ERUuIVU5bAjoPYeA+7ytQFexFmLuVw==}
engines: {node: '>=14.0.0'}
dependencies:
'@adraffy/ens-normalize': 1.10.1
@@ -16140,6 +16164,10 @@ packages:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
dev: false
+ /eventemitter3@5.0.1:
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+ dev: false
+
/events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
@@ -16201,6 +16229,12 @@ packages:
jest-util: 29.7.0
dev: true
+ /exponential-backoff@3.1.1:
+ resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/express-http-proxy@1.6.3:
resolution: {integrity: sha512-/l77JHcOUrDUX8V67E287VEUQT0lbm71gdGVoodnlWBziarYKgMcpqT7xvh/HM8Jv52phw8Bd8tY+a7QjOr7Yg==}
engines: {node: '>=6.0.0'}
@@ -16285,6 +16319,7 @@ packages:
/eyes@0.1.8:
resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==}
engines: {node: '> 0.1.90'}
+ dev: true
/fast-base64-decode@1.0.0:
resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==}
@@ -16314,10 +16349,6 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-json-patch@3.1.1:
- resolution: {integrity: sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==}
- dev: false
-
/fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
@@ -16329,12 +16360,12 @@ packages:
string-similarity: 4.0.4
dev: false
- /fast-json-stringify@5.15.0:
- resolution: {integrity: sha512-BUEAAyDKb64u+kmkINYfXUUiKjBKerSmVu/dzotfaWSHBxR44JFrOZgkhMO6VxDhDfiuAoi8mx4drd5nvNdA4Q==}
+ /fast-json-stringify@5.15.1:
+ resolution: {integrity: sha512-JopGtkvvguRqrS4gHXSSA2jf4pDgOZkeBAkLO1LbzOpiOMo7/kugoR+KiWifpLpluaVeYDkAuxCJOj4Gyc6L9A==}
dependencies:
'@fastify/merge-json-schemas': 0.1.1
- ajv: 8.12.0
- ajv-formats: 3.0.1(ajv@8.12.0)
+ ajv: 8.13.0
+ ajv-formats: 3.0.1(ajv@8.13.0)
fast-deep-equal: 3.1.3
fast-uri: 2.3.0
json-schema-ref-resolver: 1.0.1
@@ -16364,10 +16395,6 @@ packages:
/fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
- /fast-stable-stringify@1.0.0:
- resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==}
- dev: false
-
/fast-uri@2.3.0:
resolution: {integrity: sha512-eel5UKGn369gGEWOqBShmFJWfq/xSJvsgDzgLYC845GneayWvXBf0lJCBn5qTABfewy1ZDPoaR5OZCP+kssfuw==}
dev: false
@@ -16457,10 +16484,6 @@ packages:
token-types: 4.2.1
dev: true
- /file-uri-to-path@1.0.0:
- resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- dev: false
-
/filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
@@ -16564,14 +16587,14 @@ packages:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
dev: true
- /flux@4.0.4(react@18.3.0):
+ /flux@4.0.4(react@18.3.1):
resolution: {integrity: sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==}
peerDependencies:
react: ^15.0.2 || ^16.0.0 || ^17.0.0
dependencies:
fbemitter: 3.0.0
fbjs: 3.0.5
- react: 18.3.0
+ react: 18.3.1
transitivePeerDependencies:
- encoding
dev: false
@@ -16591,6 +16614,7 @@ packages:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
is-callable: 1.2.7
+ dev: true
/foreach@2.0.6:
resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==}
@@ -16629,7 +16653,7 @@ packages:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.6.0
+ semver: 7.6.2
tapable: 1.1.3
typescript: 4.9.5
webpack: 5.91.0
@@ -16670,7 +16694,7 @@ packages:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
dev: true
- /framer-motion@10.18.0(react-dom@18.3.0)(react@18.3.0):
+ /framer-motion@10.18.0(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w==}
peerDependencies:
react: ^18.0.0
@@ -16681,14 +16705,14 @@ packages:
react-dom:
optional: true
dependencies:
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
tslib: 2.6.2
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
dev: false
- /framer-motion@6.5.1(react-dom@18.3.0)(react@18.3.0):
+ /framer-motion@6.5.1(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==}
peerDependencies:
react: '>=16.8 || ^17.0.0 || ^18.0.0'
@@ -16698,8 +16722,8 @@ packages:
framesync: 6.0.1
hey-listen: 1.0.8
popmotion: 11.0.3
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
style-value-types: 5.0.0
tslib: 2.6.2
optionalDependencies:
@@ -16793,10 +16817,18 @@ packages:
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
- dev: true
- /fs-monkey@1.0.5:
- resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==}
+ /fs-minipass@3.0.3:
+ resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ minipass: 7.1.1
+ dev: false
+ optional: true
+
+ /fs-monkey@1.0.6:
+ resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
dev: true
/fs-readdir-recursive@1.1.0:
@@ -16841,13 +16873,13 @@ packages:
requiresBuild: true
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/runtime': 7.24.4
+ '@babel/core': 7.24.5
+ '@babel/generator': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
+ '@babel/runtime': 7.24.5
'@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@jridgewell/trace-mapping': 0.3.25
'@types/common-tags': 1.8.4
better-opn: 2.1.1
@@ -16857,7 +16889,7 @@ packages:
common-tags: 1.8.2
convert-hrtime: 3.0.0
create-gatsby: 3.13.1
- envinfo: 7.12.0
+ envinfo: 7.13.0
execa: 5.1.1
fs-exists-cached: 1.0.0
fs-extra: 11.2.0
@@ -16865,7 +16897,7 @@ packages:
gatsby-telemetry: 4.13.1
hosted-git-info: 3.0.8
is-valid-path: 0.1.1
- joi: 17.13.0
+ joi: 17.13.1
lodash: 4.17.21
node-fetch: 2.7.0
opentracing: 0.14.7
@@ -16874,7 +16906,7 @@ packages:
prompts: 2.4.2
redux: 4.2.1
resolve-cwd: 3.0.0
- semver: 7.6.0
+ semver: 7.6.2
signal-exit: 3.0.7
stack-trace: 0.0.10
strip-ansi: 6.0.1
@@ -16890,7 +16922,7 @@ packages:
resolution: {integrity: sha512-w7G6SsQr8T2q+AJ1MxvRNGocCt+wjc22MiRLj2Zi3Ijpjszbr818JxwI4+aPt8WOSHlKT5SYCHICnEvcYPm9gg==}
engines: {node: '>=18.0.0'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
ci-info: 2.0.0
configstore: 5.0.1
fastq: 1.17.1
@@ -16916,11 +16948,11 @@ packages:
/gatsby-legacy-polyfills@3.13.1:
resolution: {integrity: sha512-NjR3B/rq6dsJuaMmeHlGExdVXJfDqVWERXi9ROfIBt7O3Fwzy5WYgoPeVikVZE06DmeZWlBzuNcGSfc8lilB5g==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
core-js-compat: 3.31.0
dev: true
- /gatsby-link@5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.0)(react@18.3.0):
+ /gatsby-link@5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-naQxvgX/rd4Pj5ICL2DcqT30TAENk6wHttcLioxIqW9/UhwAXGkM9QsOJOyUmwbrp37UIKU3K92Ks/cMbRxwXA==}
engines: {node: '>=18.0.0'}
peerDependencies:
@@ -16928,19 +16960,19 @@ packages:
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.0)(react@18.3.0)
+ '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.1)(react@18.3.1)
'@types/reach__router': 1.3.15
gatsby-page-utils: 3.13.1
prop-types: 15.8.1
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: true
/gatsby-page-utils@3.13.1:
resolution: {integrity: sha512-+/V+ZKPn1Lv3KfeTBV/XUVljwTFQq5kg3T0esu9ygXEz3EVXjG5VjL/IX57awiDm9sLsEALqRuuYLoHpfNHg0A==}
engines: {node: '>=18.0.0'}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
bluebird: 3.7.2
chokidar: 3.6.0
fs-exists-cached: 1.0.0
@@ -16977,11 +17009,11 @@ packages:
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.24.4
- gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
+ '@babel/runtime': 7.24.5
+ gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
gatsby-core-utils: 4.13.1
gatsby-plugin-utils: 4.13.1(gatsby@5.13.4)(graphql@16.8.1)
- semver: 7.6.0
+ semver: 7.6.2
sharp: 0.32.6
transitivePeerDependencies:
- graphql
@@ -16993,13 +17025,13 @@ packages:
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
+ '@babel/runtime': 7.24.5
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
'@sindresorhus/slugify': 1.1.2
chokidar: 3.6.0
fs-exists-cached: 1.0.0
fs-extra: 11.2.0
- gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
+ gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
gatsby-core-utils: 4.13.1
gatsby-page-utils: 3.13.1
gatsby-plugin-utils: 4.13.1(gatsby@5.13.4)(graphql@16.8.1)
@@ -17012,7 +17044,7 @@ packages:
- supports-color
dev: true
- /gatsby-plugin-styled-components@6.13.1(babel-plugin-styled-components@2.1.4)(gatsby@5.13.4)(react-dom@18.3.0)(react@18.3.0)(styled-components@5.3.3):
+ /gatsby-plugin-styled-components@6.13.1(babel-plugin-styled-components@2.1.4)(gatsby@5.13.4)(react-dom@18.3.1)(react@18.3.1)(styled-components@5.3.3):
resolution: {integrity: sha512-5Y3rvqgOIXuYaMgrvMinPW1/1hht2M39gM6eZZOm08U1ybykHwIFYAj68eC2PauuwFj6Xg8T+X1zW5YHyaP21Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
@@ -17022,12 +17054,12 @@ packages:
react-dom: ^18.0.0 || ^0.0.0
styled-components: '>=2.0.0'
dependencies:
- '@babel/runtime': 7.24.4
- babel-plugin-styled-components: 2.1.4(@babel/core@7.24.4)(styled-components@5.3.3)
- gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- styled-components: 5.3.3(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.5)(styled-components@5.3.3)
+ gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-components: 5.3.3(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
dev: true
/gatsby-plugin-svgr@3.0.0-beta.0(@svgr/webpack@6.5.1)(gatsby@5.13.4):
@@ -17037,7 +17069,7 @@ packages:
gatsby: '>=3.0.0'
dependencies:
'@svgr/webpack': 6.5.1
- gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
+ gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
dev: true
/gatsby-plugin-typescript@5.13.1(gatsby@5.13.4):
@@ -17046,14 +17078,14 @@ packages:
peerDependencies:
gatsby: ^5.0.0-next
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.4)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/runtime': 7.24.4
- babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.4)(gatsby@5.13.4)
- gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
+ '@babel/core': 7.24.5
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.5)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
+ '@babel/runtime': 7.24.5
+ babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.5)(gatsby@5.13.4)
+ gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
transitivePeerDependencies:
- supports-color
dev: true
@@ -17065,20 +17097,20 @@ packages:
gatsby: ^5.0.0-next
graphql: ^16.0.0
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
fastq: 1.17.1
fs-extra: 11.2.0
- gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5)
+ gatsby: 5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)
gatsby-core-utils: 4.13.1
gatsby-sharp: 1.13.0
graphql: 16.8.1
- graphql-compose: 9.0.10(graphql@16.8.1)
+ graphql-compose: 9.0.11(graphql@16.8.1)
import-from: 4.0.0
- joi: 17.13.0
+ joi: 17.13.1
mime: 3.0.0
dev: true
- /gatsby-react-router-scroll@6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.0)(react@18.3.0):
+ /gatsby-react-router-scroll@6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-srBpg/ZHW4miwH/4OWOcspHqr8ZmKLE4DBNvckt0KO4giJerWiGoLj6qePwLFRWZPfV7txJr2kuUzACxarpL5g==}
engines: {node: '>=18.0.0'}
peerDependencies:
@@ -17086,14 +17118,14 @@ packages:
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@babel/runtime': 7.24.4
- '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.0)(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.1)(react@18.3.1)
prop-types: 15.8.1
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: true
- /gatsby-script@2.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.0)(react@18.3.0):
+ /gatsby-script@2.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-TGNQGerf1NMJrgJkWxWrW6FFMAuC0L76WlyZgGXmhckPW/x7V1SxZrm0a2Q99kRHyoC59RYl2gTQWHaIwV+ZjA==}
engines: {node: '>=18.0.0'}
peerDependencies:
@@ -17101,9 +17133,9 @@ packages:
react: ^18.0.0 || ^0.0.0
react-dom: ^18.0.0 || ^0.0.0
dependencies:
- '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.0)(react@18.3.0)
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.1)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: true
/gatsby-sharp@1.13.0:
@@ -17119,7 +17151,7 @@ packages:
requiresBuild: true
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
'@turist/fetch': 7.2.0(node-fetch@2.7.0)
'@turist/time': 0.0.2
boxen: 5.1.2
@@ -17138,15 +17170,15 @@ packages:
resolution: {integrity: sha512-CEm+5M2+3PzPcqTaJ0xjNuorQ3d1PfnKG1yqRRPfw8LFdPiycGhZAug/jqx0iTyVWXFHakEmddlykGFEbq54/Q==}
engines: {node: '>=18.0.0'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/runtime': 7.24.4
+ '@babel/core': 7.24.5
+ '@babel/runtime': 7.24.5
fs-extra: 11.2.0
signal-exit: 3.0.7
transitivePeerDependencies:
- supports-color
dev: true
- /gatsby@5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.0)(react@18.3.0)(typescript@4.9.5):
+ /gatsby@5.13.4(babel-eslint@10.1.0)(eslint-plugin-jest@27.9.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5):
resolution: {integrity: sha512-ZV5LL4ipWO2HZSWHWdU2qwS++9tr+fxxF+ScbSwzukrrCTHjTq8+DkpfOMiY498lmTUZ5LvRvT0WQmuVx/gXVQ==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -17156,28 +17188,28 @@ packages:
react-dom: ^18.0.0 || ^0.0.0
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
- '@babel/eslint-parser': 7.24.1(@babel/core@7.24.4)(eslint@7.32.0)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/parser': 7.24.4
- '@babel/runtime': 7.24.4
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
- '@babel/types': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/eslint-parser': 7.24.5(@babel/core@7.24.5)(eslint@7.32.0)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/runtime': 7.24.5
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
+ '@babel/types': 7.24.5
'@builder.io/partytown': 0.7.6
- '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.0)(react@18.3.0)
+ '@gatsbyjs/reach-router': 2.0.1(react-dom@18.3.1)(react@18.3.1)
'@gatsbyjs/webpack-hot-middleware': 2.25.3
'@graphql-codegen/add': 3.2.3(graphql@16.8.1)
'@graphql-codegen/core': 2.6.8(graphql@16.8.1)
'@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1)
'@graphql-codegen/typescript': 2.8.8(graphql@16.8.1)
'@graphql-codegen/typescript-operations': 2.5.13(graphql@16.8.1)
- '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.4)(graphql@16.8.1)
+ '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.5)(graphql@16.8.1)
'@graphql-tools/load': 7.8.14(graphql@16.8.1)
'@jridgewell/trace-mapping': 0.3.25
'@nodelib/fs.walk': 1.2.8
'@parcel/cache': 2.8.3(@parcel/core@2.8.3)
'@parcel/core': 2.8.3
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.1)(webpack@5.91.0)
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.14.2)(webpack@5.91.0)
'@sigmacomputing/babel-plugin-lodash': 3.3.5
'@types/http-proxy': 1.17.14
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@4.9.5)
@@ -17190,11 +17222,11 @@ packages:
autoprefixer: 10.4.19(postcss@8.4.38)
axios: 1.6.8(debug@4.3.4)
babel-jsx-utils: 1.1.0
- babel-loader: 8.3.0(@babel/core@7.24.4)(webpack@5.91.0)
+ babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0)
babel-plugin-add-module-exports: 1.0.4
babel-plugin-dynamic-import-node: 2.3.3
- babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.4)(gatsby@5.13.4)
- babel-preset-gatsby: 3.13.2(@babel/core@7.24.4)(core-js@3.37.0)
+ babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.5)(gatsby@5.13.4)
+ babel-preset-gatsby: 3.13.2(@babel/core@7.24.5)(core-js@3.37.1)
better-opn: 2.1.1
bluebird: 3.7.2
body-parser: 1.20.1
@@ -17205,7 +17237,7 @@ packages:
common-tags: 1.8.2
compression: 1.7.4
cookie: 0.5.0
- core-js: 3.37.0
+ core-js: 3.37.1
cors: 2.8.5
css-loader: 5.2.7(webpack@5.91.0)
css-minimizer-webpack-plugin: 2.0.0(webpack@5.91.0)
@@ -17213,18 +17245,18 @@ packages:
date-fns: 2.30.0
debug: 4.3.4(supports-color@5.5.0)
deepmerge: 4.3.1
- detect-port: 1.5.1
+ detect-port: 1.6.1
devcert: 1.2.2
dotenv: 8.6.0
- enhanced-resolve: 5.16.0
+ enhanced-resolve: 5.16.1
error-stack-parser: 2.1.4
eslint: 7.32.0
- eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jest@27.9.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.1)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@4.9.5)
+ eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0)(@typescript-eslint/parser@5.62.0)(babel-eslint@10.1.0)(eslint-plugin-flowtype@5.10.0)(eslint-plugin-import@2.29.1)(eslint-plugin-jest@27.9.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.1)(eslint@7.32.0)(typescript@4.9.5)
eslint-plugin-flowtype: 5.10.0(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-react: 7.34.1(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.1(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
eslint-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.91.0)
event-source-polyfill: 1.0.31
execa: 5.1.1
@@ -17240,28 +17272,28 @@ packages:
gatsby-core-utils: 4.13.1
gatsby-graphiql-explorer: 3.13.1
gatsby-legacy-polyfills: 3.13.1
- gatsby-link: 5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.0)(react@18.3.0)
+ gatsby-link: 5.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.1)(react@18.3.1)
gatsby-page-utils: 3.13.1
gatsby-parcel-config: 1.13.1(@parcel/core@2.8.3)
gatsby-plugin-page-creator: 5.13.1(gatsby@5.13.4)(graphql@16.8.1)
gatsby-plugin-typescript: 5.13.1(gatsby@5.13.4)
gatsby-plugin-utils: 4.13.1(gatsby@5.13.4)(graphql@16.8.1)
- gatsby-react-router-scroll: 6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.0)(react@18.3.0)
- gatsby-script: 2.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.0)(react@18.3.0)
+ gatsby-react-router-scroll: 6.13.1(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.1)(react@18.3.1)
+ gatsby-script: 2.13.0(@gatsbyjs/reach-router@2.0.1)(react-dom@18.3.1)(react@18.3.1)
gatsby-telemetry: 4.13.1
gatsby-worker: 2.13.1
glob: 7.2.3
globby: 11.1.0
got: 11.8.6
graphql: 16.8.1
- graphql-compose: 9.0.10(graphql@16.8.1)
+ graphql-compose: 9.0.11(graphql@16.8.1)
graphql-http: 1.22.1(graphql@16.8.1)
graphql-tag: 2.12.6(graphql@16.8.1)
hasha: 5.2.2
invariant: 2.2.4
is-relative: 1.0.0
is-relative-url: 3.0.0
- joi: 17.13.0
+ joi: 17.13.1
json-loader: 0.5.7
latest-version: 7.0.0
linkfs: 2.1.0
@@ -17292,15 +17324,15 @@ packages:
prop-types: 15.8.1
query-string: 6.14.1
raw-loader: 4.0.2(webpack@5.91.0)
- react: 18.3.0
+ react: 18.3.1
react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0)
- react-dom: 18.3.0(react@18.3.0)
- react-refresh: 0.14.1
- react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.3.0)(webpack@5.91.0)
+ react-dom: 18.3.1(react@18.3.1)
+ react-refresh: 0.14.2
+ react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.3.1)(webpack@5.91.0)
redux: 4.2.1
redux-thunk: 2.4.2(redux@4.2.1)
resolve-from: 5.0.0
- semver: 7.6.0
+ semver: 7.6.2
shallow-compare: 1.2.2
signal-exit: 3.0.7
slugify: 1.6.6
@@ -17352,6 +17384,39 @@ packages:
- webpack-plugin-serve
dev: true
+ /gauge@3.0.2:
+ resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
+ engines: {node: '>=10'}
+ requiresBuild: true
+ dependencies:
+ aproba: 2.0.0
+ color-support: 1.1.3
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ object-assign: 4.1.1
+ signal-exit: 3.0.7
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wide-align: 1.1.5
+ dev: false
+ optional: true
+
+ /gauge@5.0.2:
+ resolution: {integrity: sha512-pMaFftXPtiGIHCJHdcUUx9Rby/rFT/Kkt3fIIGCs+9PMDIljSyRiqraTlxNtBReJRDfUefpa263RQ3vnp5G/LQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ aproba: 2.0.0
+ color-support: 1.1.3
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ signal-exit: 4.1.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wide-align: 1.1.5
+ dev: false
+ optional: true
+
/generate-function@2.3.1:
resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==}
dependencies:
@@ -17383,6 +17448,7 @@ packages:
has-proto: 1.0.3
has-symbols: 1.0.3
hasown: 2.0.2
+ dev: true
/get-iterator@1.0.2:
resolution: {integrity: sha512-v+dm9bNVfOYsY1OrhaCrmyOcYoSeVvbt+hHZ0Au+T+p1y+0Uyj9aMaGIeUTT6xdpRbWzDeYKvfOslPhggQMcsg==}
@@ -17442,8 +17508,8 @@ packages:
get-intrinsic: 1.2.4
dev: true
- /get-tsconfig@4.7.3:
- resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==}
+ /get-tsconfig@4.7.5:
+ resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
dependencies:
resolve-pkg-maps: 1.0.0
dev: true
@@ -17487,16 +17553,16 @@ packages:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
dev: true
- /glob@10.3.12:
- resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
- engines: {node: '>=16 || 14 >=14.17'}
+ /glob@10.3.15:
+ resolution: {integrity: sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==}
+ engines: {node: '>=16 || 14 >=14.18'}
hasBin: true
dependencies:
foreground-child: 3.1.1
jackspeak: 2.3.6
minimatch: 9.0.4
- minipass: 7.0.4
- path-scurry: 1.10.2
+ minipass: 7.1.1
+ path-scurry: 1.11.1
/glob@5.0.15:
resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==}
@@ -17558,7 +17624,7 @@ packages:
fs.realpath: 1.0.0
minimatch: 8.0.4
minipass: 4.2.8
- path-scurry: 1.10.2
+ path-scurry: 1.11.1
dev: true
/global-modules@2.0.0:
@@ -17588,11 +17654,12 @@ packages:
type-fest: 0.20.2
dev: true
- /globalthis@1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ /globalthis@1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
dependencies:
define-properties: 1.2.1
+ gopd: 1.0.1
dev: true
/globby@10.0.2:
@@ -17666,7 +17733,7 @@ packages:
lodash.upperfirst: 4.3.1
ora: 4.0.2
pluralize: 8.0.0
- semver: 7.6.0
+ semver: 7.6.2
which: 2.0.2
yargs-parser: 21.1.1
transitivePeerDependencies:
@@ -17677,6 +17744,7 @@ packages:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
get-intrinsic: 1.2.4
+ dev: true
/got@11.8.6:
resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
@@ -17718,14 +17786,13 @@ packages:
/graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- dev: true
/graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
dev: true
- /graphql-compose@9.0.10(graphql@16.8.1):
- resolution: {integrity: sha512-UsVoxfi2+c8WbHl2pEB+teoRRZoY4mbWBoijeLDGpAZBSPChnqtSRjp+T9UcouLCwGr5ooNyOQLoI3OVzU1bPQ==}
+ /graphql-compose@9.0.11(graphql@16.8.1):
+ resolution: {integrity: sha512-p3+8p2lo7wel24IQwGIhwVGOnCJ3hfBno+x8CE7G4ZLaC4u5G2g6h1Mm8O5iJPTD0C+Q/WxxDqSL2qs8VOf5mg==}
peerDependencies:
graphql: ^14.2.0 || ^15.0.0 || ^16.0.0
dependencies:
@@ -17770,7 +17837,7 @@ packages:
graphql: '>=15'
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
- fast-json-stringify: 5.15.0
+ fast-json-stringify: 5.15.1
generate-function: 2.3.1
graphql: 16.8.1
lodash.memoize: 4.1.2
@@ -17804,43 +17871,23 @@ packages:
graphql: 16.8.1
dev: false
- /graphql-yoga@4.0.5(graphql@16.8.1):
- resolution: {integrity: sha512-vIbJU9QX5RP4PoxbMCHcfOlt/3EsC/0uLdAOlKaiUvlwJDTFCaIHo2X10vL4i/27Gw8g90ECIwm2YbmeLDwcqg==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- graphql: ^15.2.0 || ^16.0.0
- dependencies:
- '@envelop/core': 4.0.3
- '@graphql-tools/executor': 1.2.6(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
- '@graphql-yoga/logger': 1.0.0
- '@graphql-yoga/subscription': 4.0.0
- '@whatwg-node/fetch': 0.9.17
- '@whatwg-node/server': 0.9.33
- dset: 3.1.3
- graphql: 16.8.1
- lru-cache: 10.2.1
- tslib: 2.6.2
- dev: false
-
- /graphql-yoga@5.3.0(graphql@16.8.1):
- resolution: {integrity: sha512-6mXoGE5AMN6YNugJvjBFIQ0dFUiOMloN0dAzLL8GFt4iJ5WlWRgjdzGHod2zZz7yWQokEVD42DHgrc7NY3Dm0w==}
+ /graphql-yoga@5.3.1(graphql@16.8.1):
+ resolution: {integrity: sha512-n918QV6TF7xTjb9ASnozgsr4ydMc08c+x4eRAWKxxWVwSnzdP2xeN2zw1ljIzRD0ccSCNoBajGDKwcZkJDitPA==}
engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@envelop/core': 5.0.0
+ '@envelop/core': 5.0.1
'@graphql-tools/executor': 1.2.6(graphql@16.8.1)
'@graphql-tools/schema': 10.0.3(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.3(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.0(graphql@16.8.1)
'@graphql-yoga/logger': 2.0.0
'@graphql-yoga/subscription': 5.0.0
'@whatwg-node/fetch': 0.9.17
- '@whatwg-node/server': 0.9.33
+ '@whatwg-node/server': 0.9.34
dset: 3.1.3
graphql: 16.8.1
- lru-cache: 10.2.1
+ lru-cache: 10.2.2
tslib: 2.6.2
dev: false
@@ -17867,7 +17914,7 @@ packages:
crossws: 0.2.4
defu: 6.1.4
destr: 2.0.3
- iron-webcrypto: 1.1.1
+ iron-webcrypto: 1.2.1
ohash: 1.1.3
radix3: 1.1.2
ufo: 1.5.3
@@ -17890,14 +17937,14 @@ packages:
uglify-js: 3.17.4
dev: true
- /hardhat-gas-reporter@1.0.10(hardhat@2.22.3):
+ /hardhat-gas-reporter@1.0.10(hardhat@2.22.4):
resolution: {integrity: sha512-02N4+So/fZrzJ88ci54GqwVA3Zrf0C9duuTyGt0CFRIh/CdNwbnTgkXkRfojOMLBQ+6t+lBIkgbsOtqMvNwikA==}
peerDependencies:
hardhat: ^2.0.2
dependencies:
array-uniq: 1.0.3
eth-gas-reporter: 0.2.27
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
sha1: 1.1.1
transitivePeerDependencies:
- '@codechecks/client'
@@ -17906,8 +17953,8 @@ packages:
- utf-8-validate
dev: true
- /hardhat@2.22.3(ts-node@10.9.2)(typescript@4.9.5):
- resolution: {integrity: sha512-k8JV2ECWNchD6ahkg2BR5wKVxY0OiKot7fuxiIpRK0frRqyOljcR2vKwgWSLw6YIeDcNNA4xybj7Og7NSxr2hA==}
+ /hardhat@2.22.4(ts-node@10.9.2)(typescript@4.9.5):
+ resolution: {integrity: sha512-09qcXJFBHQUaraJkYNr7XlmwjOj27xBB0SL2rYS024hTj9tPMbp26AFjlf5quBMO9SR4AJFg+4qWahcYcvXBuQ==}
hasBin: true
peerDependencies:
ts-node: '*'
@@ -17920,7 +17967,7 @@ packages:
dependencies:
'@ethersproject/abi': 5.7.0
'@metamask/eth-sig-util': 4.0.1
- '@nomicfoundation/edr': 0.3.5
+ '@nomicfoundation/edr': 0.3.8
'@nomicfoundation/ethereumjs-common': 4.0.4
'@nomicfoundation/ethereumjs-tx': 5.0.4
'@nomicfoundation/ethereumjs-util': 9.0.4
@@ -17944,7 +17991,7 @@ packages:
fp-ts: 1.19.3
fs-extra: 7.0.1
glob: 7.2.0
- immutable: 4.3.5
+ immutable: 4.3.6
io-ts: 1.10.4
keccak: 3.0.4
lodash: 4.17.21
@@ -17957,7 +18004,7 @@ packages:
solc: 0.7.3(debug@4.3.4)
source-map-support: 0.5.21
stacktrace-parser: 0.1.10
- ts-node: 10.9.2(@types/node@18.19.31)(typescript@4.9.5)
+ ts-node: 10.9.2(@types/node@18.19.33)(typescript@4.9.5)
tsort: 0.0.1
typescript: 4.9.5
undici: 5.28.4
@@ -17991,20 +18038,30 @@ packages:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
dependencies:
es-define-property: 1.0.0
+ dev: true
/has-proto@1.0.3:
resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
+ dev: true
/has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
+ dev: true
/has-tostringtag@1.0.2:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
+ dev: true
+
+ /has-unicode@2.0.1:
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
+ requiresBuild: true
+ dev: false
+ optional: true
/has@1.0.4:
resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
@@ -18202,7 +18259,6 @@ packages:
/http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
- dev: true
/http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
@@ -18215,6 +18271,18 @@ packages:
toidentifier: 1.0.1
dev: true
+ /http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
+ requiresBuild: true
+ dependencies:
+ agent-base: 7.1.1
+ debug: 4.3.4(supports-color@5.5.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
/http-response-object@3.0.2:
resolution: {integrity: sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==}
dependencies:
@@ -18254,7 +18322,18 @@ packages:
debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- dev: true
+
+ /https-proxy-agent@7.0.4:
+ resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
+ engines: {node: '>= 14'}
+ requiresBuild: true
+ dependencies:
+ agent-base: 7.1.1
+ debug: 4.3.4(supports-color@5.5.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
/human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
@@ -18265,27 +18344,26 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- /humanize-ms@1.2.1:
- resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
- dependencies:
- ms: 2.1.3
- dev: false
-
/husky@8.0.3:
resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
engines: {node: '>=14'}
hasBin: true
dev: true
+ /hyperdyperid@1.2.0:
+ resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
+ engines: {node: '>=10.18'}
+ dev: true
+
/hyperlinker@1.0.0:
resolution: {integrity: sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==}
engines: {node: '>=4'}
dev: true
- /i18next@23.11.2:
- resolution: {integrity: sha512-qMBm7+qT8jdpmmDw/kQD16VpmkL9BdL+XNAK5MNbNFaf1iQQq35ZbPrSlqmnNPOSUY4m342+c0t0evinF5l7sA==}
+ /i18next@23.11.4:
+ resolution: {integrity: sha512-CCUjtd5TfaCl+mLUzAA0uPSN+AVn4fP/kWCYt/hocPUwusTpMVczdrRyOBUwk6N05iH40qiKx6q1DoNJtBIwdg==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dev: false
/iconv-lite@0.4.24:
@@ -18300,7 +18378,6 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- dev: true
/icss-utils@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
@@ -18354,8 +18431,8 @@ packages:
resolution: {integrity: sha512-7WYV7Q5BTs0nlQm7tl92rDYYoyELLKHoDMBKhrxEoiV4mrfVdRz8hzPiYOzH7yWjzoVEamxRuAqhxL2PLRwZYQ==}
dev: true
- /immutable@4.3.5:
- resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}
+ /immutable@4.3.6:
+ resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==}
dev: true
/import-fresh@3.3.0:
@@ -18381,12 +18458,10 @@ packages:
/imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- dev: true
/indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- dev: true
/inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
@@ -18486,6 +18561,16 @@ packages:
fp-ts: 1.19.3
dev: true
+ /ip-address@9.0.5:
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
+ requiresBuild: true
+ dependencies:
+ jsbn: 1.1.0
+ sprintf-js: 1.1.3
+ dev: false
+ optional: true
+
/ip-regex@4.3.0:
resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==}
engines: {node: '>=8'}
@@ -18600,8 +18685,8 @@ packages:
- encoding
dev: true
- /iron-webcrypto@1.1.1:
- resolution: {integrity: sha512-5xGwQUWHQSy039rFr+5q/zOmj7GP0Ypzvo34Ep+61bPIhaLduEDp/PvLGlU3awD2mzWUR0weN2vJ1mILydFPEg==}
+ /iron-webcrypto@1.2.1:
+ resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
dev: false
/is-absolute-url@3.0.3:
@@ -18622,6 +18707,7 @@ packages:
dependencies:
call-bind: 1.0.7
has-tostringtag: 1.0.2
+ dev: true
/is-array-buffer@3.0.4:
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
@@ -18677,6 +18763,7 @@ packages:
/is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
+ dev: true
/is-ci@2.0.0:
resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
@@ -18752,6 +18839,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.2
+ dev: true
/is-glob@2.0.1:
resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==}
@@ -18797,6 +18885,12 @@ packages:
ip-regex: 4.3.0
dev: true
+ /is-lambda@1.0.1:
+ resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/is-lower-case@2.0.2:
resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==}
dependencies:
@@ -18936,6 +19030,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
which-typed-array: 1.1.15
+ dev: true
/is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
@@ -19025,6 +19120,13 @@ packages:
/isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ /isexe@3.1.1:
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/iso-url@1.2.1:
resolution: {integrity: sha512-9JPDgCN4B7QPkLtYAAOrEuAWvP9rWvR5offAr0/SeF046wIkglqH3VXgYYP6NcsKslH80UIVgmPqNe3j7tG2ng==}
engines: {node: '>=12'}
@@ -19049,13 +19151,14 @@ packages:
ws: '*'
dependencies:
ws: 7.5.9
+ dev: true
- /isomorphic-ws@5.0.0(ws@8.16.0):
+ /isomorphic-ws@5.0.0(ws@8.17.0):
resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
peerDependencies:
ws: '*'
dependencies:
- ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.17.0
dev: false
/isows@1.0.3(ws@8.13.0):
@@ -19066,6 +19169,14 @@ packages:
ws: 8.13.0
dev: false
+ /isows@1.0.4(ws@8.13.0):
+ resolution: {integrity: sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ==}
+ peerDependencies:
+ ws: '*'
+ dependencies:
+ ws: 8.13.0
+ dev: false
+
/istanbul-lib-coverage@3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
@@ -19075,8 +19186,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/core': 7.24.5
+ '@babel/parser': 7.24.5
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -19088,11 +19199,11 @@ packages:
resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/core': 7.24.5
+ '@babel/parser': 7.24.5
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -19181,8 +19292,8 @@ packages:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- /jake@10.8.7:
- resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
+ /jake@10.9.1:
+ resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -19218,28 +19329,6 @@ packages:
- utf-8-validate
dev: true
- /jayson@4.1.0:
- resolution: {integrity: sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==}
- engines: {node: '>=8'}
- hasBin: true
- dependencies:
- '@types/connect': 3.4.38
- '@types/node': 12.20.55
- '@types/ws': 7.4.7
- JSONStream: 1.3.5
- commander: 2.20.3
- delay: 5.0.0
- es6-promisify: 5.0.0
- eyes: 0.1.8
- isomorphic-ws: 4.0.1(ws@7.5.9)
- json-stringify-safe: 5.0.1
- uuid: 8.3.2
- ws: 7.5.9
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- dev: false
-
/jest-changed-files@29.7.0:
resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -19257,7 +19346,7 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -19278,7 +19367,7 @@ packages:
- supports-color
dev: true
- /jest-cli@29.7.0(@types/node@20.12.7)(ts-node@10.9.2):
+ /jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2):
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -19292,10 +19381,10 @@ packages:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ jest-config: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -19306,7 +19395,7 @@ packages:
- ts-node
dev: true
- /jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2):
+ /jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -19318,11 +19407,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
- babel-jest: 29.7.0(@babel/core@7.24.4)
+ '@types/node': 20.12.12
+ babel-jest: 29.7.0(@babel/core@7.24.5)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -19341,7 +19430,7 @@ packages:
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.2(@types/node@20.12.7)(typescript@4.9.5)
+ ts-node: 10.9.2(@types/node@20.12.12)(typescript@4.9.5)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -19392,7 +19481,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
jest-mock: 29.7.0
jest-util: 29.7.0
dev: true
@@ -19413,7 +19502,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -19474,7 +19563,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
jest-util: 29.7.0
dev: true
@@ -19529,7 +19618,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -19560,9 +19649,9 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
chalk: 4.1.2
- cjs-module-lexer: 1.2.3
+ cjs-module-lexer: 1.3.1
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -19583,15 +19672,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.24.4
- '@babel/generator': 7.24.4
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/generator': 7.24.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
+ '@babel/types': 7.24.5
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -19602,7 +19691,7 @@ packages:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -19612,7 +19701,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -19637,7 +19726,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -19649,7 +19738,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -19658,7 +19747,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -19667,13 +19756,13 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2):
+ /jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2):
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -19686,7 +19775,7 @@ packages:
'@jest/core': 29.7.0(ts-node@10.9.2)
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -19698,8 +19787,8 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
- /joi@17.13.0:
- resolution: {integrity: sha512-9qcrTyoBmFZRNHeVP4edKqIUEgFzq7MHvTNSDuHSqkpOPtiBkgNgcmTSqmiw1kw9tdKaiddvIDv/eCJDxmqWCA==}
+ /joi@17.13.1:
+ resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
@@ -19736,6 +19825,12 @@ packages:
dependencies:
argparse: 2.0.1
+ /jsbn@1.1.0:
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/jsdoc-type-pratt-parser@4.0.0:
resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==}
engines: {node: '>=12.0.0'}
@@ -19777,7 +19872,7 @@ packages:
engines: {node: '>=10.0.0'}
dependencies:
'@metamask/safe-event-emitter': 2.0.0
- eth-rpc-errors: 4.0.2
+ eth-rpc-errors: 4.0.3
dev: false
/json-rpc-random-id@1.0.1:
@@ -19805,6 +19900,7 @@ packages:
/json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
+ dev: true
/json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
@@ -19841,6 +19937,7 @@ packages:
/jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
+ dev: true
/jsonschema@1.4.1:
resolution: {integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==}
@@ -19862,7 +19959,7 @@ packages:
requiresBuild: true
dependencies:
node-addon-api: 2.0.2
- node-gyp-build: 4.8.0
+ node-gyp-build: 4.8.1
readable-stream: 3.6.2
/keyv@4.5.4:
@@ -19983,7 +20080,7 @@ packages:
h3: 1.11.1
http-shutdown: 1.2.2
jiti: 1.21.0
- mlly: 1.6.1
+ mlly: 1.7.0
node-forge: 1.3.1
pathe: 1.1.2
std-env: 3.7.0
@@ -20042,7 +20139,7 @@ packages:
resolution: {integrity: sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==}
requiresBuild: true
dependencies:
- msgpackr: 1.10.1
+ msgpackr: 1.10.2
node-addon-api: 4.3.0
node-gyp-build-optional-packages: 5.0.3
ordered-binary: 1.5.1
@@ -20060,7 +20157,7 @@ packages:
resolution: {integrity: sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==}
requiresBuild: true
dependencies:
- msgpackr: 1.10.1
+ msgpackr: 1.10.2
node-addon-api: 4.3.0
node-gyp-build-optional-packages: 5.0.3
ordered-binary: 1.5.1
@@ -20140,10 +20237,6 @@ packages:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
dev: true
- /lodash.clone@4.5.0:
- resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==}
- dev: false
-
/lodash.clonedeep@4.5.0:
resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
dev: true
@@ -20330,8 +20423,8 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /lru-cache@10.2.1:
- resolution: {integrity: sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==}
+ /lru-cache@10.2.2:
+ resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
engines: {node: 14 || >=16.14}
/lru-cache@4.0.0:
@@ -20351,6 +20444,7 @@ packages:
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
+ dev: true
/lru-queue@0.1.0:
resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
@@ -20362,12 +20456,12 @@ packages:
resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==}
dev: true
- /lucide-react@0.292.0(react@18.3.0):
+ /lucide-react@0.292.0(react@18.3.1):
resolution: {integrity: sha512-rRgUkpEHWpa5VCT66YscInCQmQuPCB1RFRzkkxMxg4b+jaL0V12E3riWWR2Sh5OIiUhCwGW/ZExuEO4Az32E6Q==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0
dependencies:
- react: 18.3.0
+ react: 18.3.1
dev: false
/luxon@3.4.4:
@@ -20392,18 +20486,39 @@ packages:
engines: {node: '>=8'}
dependencies:
semver: 6.3.1
- dev: true
/make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
dependencies:
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+ /make-fetch-happen@13.0.1:
+ resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ '@npmcli/agent': 2.2.2
+ cacache: 18.0.3
+ http-cache-semantics: 4.1.1
+ is-lambda: 1.0.1
+ minipass: 7.1.1
+ minipass-fetch: 3.0.5
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ negotiator: 0.6.3
+ proc-log: 4.2.0
+ promise-retry: 2.0.1
+ ssri: 10.0.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
/makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
@@ -20501,13 +20616,16 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
dependencies:
- fs-monkey: 1.0.5
+ fs-monkey: 1.0.6
dev: true
- /memfs@4.8.2:
- resolution: {integrity: sha512-j4WKth315edViMBGkHW6NTF0QBjsTrcRDmYNcGsPq+ozMEyCCCIlX2d2mJ5wuh6iHvJ3FevUrr48v58YRqVdYg==}
+ /memfs@4.9.2:
+ resolution: {integrity: sha512-f16coDZlTG1jskq3mxarwB+fGRrd0uXWt+o1WIhRfOwbXQZqUDsTVxQBFK9JjRQHblg8eAG2JSbprDXKjc7ijQ==}
engines: {node: '>= 4.0.0'}
dependencies:
+ '@jsonjoy.com/json-pack': 1.0.4(tslib@2.6.2)
+ '@jsonjoy.com/util': 1.1.3(tslib@2.6.2)
+ sonic-forest: 1.0.3(tslib@2.6.2)
tslib: 2.6.2
dev: true
@@ -20551,7 +20669,7 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /meros@1.3.0(@types/node@20.12.7):
+ /meros@1.3.0(@types/node@20.12.12):
resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==}
engines: {node: '>=13'}
peerDependencies:
@@ -20560,7 +20678,7 @@ packages:
'@types/node':
optional: true
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
dev: false
/methods@1.1.2:
@@ -20883,12 +21001,60 @@ packages:
/minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ /minipass-collect@2.0.1:
+ resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ requiresBuild: true
+ dependencies:
+ minipass: 7.1.1
+ dev: false
+ optional: true
+
+ /minipass-fetch@3.0.5:
+ resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ minipass: 7.1.1
+ minipass-sized: 1.0.3
+ minizlib: 2.1.2
+ optionalDependencies:
+ encoding: 0.1.13
+ dev: false
+ optional: true
+
+ /minipass-flush@1.0.5:
+ resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+ engines: {node: '>= 8'}
+ requiresBuild: true
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+ optional: true
+
+ /minipass-pipeline@1.2.4:
+ resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
+ engines: {node: '>=8'}
+ requiresBuild: true
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+ optional: true
+
+ /minipass-sized@1.0.3:
+ resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
+ engines: {node: '>=8'}
+ requiresBuild: true
+ dependencies:
+ minipass: 3.3.6
+ dev: false
+ optional: true
+
/minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
- dev: true
/minipass@4.2.8:
resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
@@ -20898,10 +21064,9 @@ packages:
/minipass@5.0.0:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- dev: true
- /minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
+ /minipass@7.1.1:
+ resolution: {integrity: sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==}
engines: {node: '>=16 || 14 >=14.17'}
/minizlib@2.1.2:
@@ -20910,7 +21075,6 @@ packages:
dependencies:
minipass: 3.3.6
yallist: 4.0.0
- dev: true
/mitt@1.2.0:
resolution: {integrity: sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==}
@@ -20931,7 +21095,6 @@ packages:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- dev: true
/mkdirp@3.0.1:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
@@ -20939,12 +21102,12 @@ packages:
hasBin: true
dev: false
- /mlly@1.6.1:
- resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==}
+ /mlly@1.7.0:
+ resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
dependencies:
acorn: 8.11.3
pathe: 1.1.2
- pkg-types: 1.1.0
+ pkg-types: 1.1.1
ufo: 1.5.3
dev: false
@@ -21031,6 +21194,7 @@ packages:
/ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ dev: true
/msgpackr-extract@3.0.2:
resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==}
@@ -21048,8 +21212,8 @@ packages:
dev: true
optional: true
- /msgpackr@1.10.1:
- resolution: {integrity: sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ==}
+ /msgpackr@1.10.2:
+ resolution: {integrity: sha512-L60rsPynBvNE+8BWipKKZ9jHcSGbtyJYIwjRq0VrIvQ08cRjntGXJYW/tmciZ2IHWIY8WEW32Qa2xbh5+SKBZA==}
optionalDependencies:
msgpackr-extract: 3.0.2
dev: true
@@ -21106,6 +21270,12 @@ packages:
object-assign: 4.1.1
thenify-all: 1.6.0
+ /nan@2.18.0:
+ resolution: {integrity: sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -21158,7 +21328,6 @@ packages:
/negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- dev: true
/neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -21178,7 +21347,7 @@ packages:
resolution: {integrity: sha512-CPMcGa+y33xuL1E0TcNIu4YyaZCxnnvkVaEXrsosR3FxN+fV8xvb7Mzpb7IgKler10qeMkE6+Dp8qJhpzdq35g==}
engines: {node: '>=10'}
dependencies:
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/node-addon-api@2.0.2:
@@ -21234,9 +21403,30 @@ packages:
dev: true
optional: true
- /node-gyp-build@4.8.0:
- resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==}
+ /node-gyp-build@4.8.1:
+ resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==}
+ hasBin: true
+
+ /node-gyp@10.0.1:
+ resolution: {integrity: sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
+ requiresBuild: true
+ dependencies:
+ env-paths: 2.2.0
+ exponential-backoff: 3.1.1
+ glob: 10.3.15
+ graceful-fs: 4.2.11
+ make-fetch-happen: 13.0.1
+ nopt: 7.2.1
+ proc-log: 3.0.0
+ semver: 7.6.2
+ tar: 6.2.1
+ which: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
/node-html-parser@5.4.2:
resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==}
@@ -21248,6 +21438,24 @@ packages:
/node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
+ /node-libcurl@4.0.0:
+ resolution: {integrity: sha512-v+u+OgSq6ldvf8MrdjieAy/mv8WeTN94nrTomh62zhItF2HH0Ckin/QEqs8+35DWyYrE5nBM2480UtWVXktzbQ==}
+ engines: {node: '>=16.14'}
+ requiresBuild: true
+ dependencies:
+ '@mapbox/node-pre-gyp': 1.0.11
+ env-paths: 2.2.0
+ nan: 2.18.0
+ node-gyp: 10.0.1
+ npmlog: 7.0.1
+ rimraf: 5.0.5
+ tslib: 2.6.2
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: false
+ optional: true
+
/node-object-hash@2.3.10:
resolution: {integrity: sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==}
engines: {node: '>=0.10.0'}
@@ -21265,9 +21473,29 @@ packages:
resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==}
hasBin: true
dependencies:
- abbrev: 1.0.9
+ abbrev: 1.1.1
dev: true
+ /nopt@5.0.0:
+ resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
+ engines: {node: '>=6'}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ abbrev: 1.1.1
+ dev: false
+ optional: true
+
+ /nopt@7.2.1:
+ resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ abbrev: 2.0.0
+ dev: false
+ optional: true
+
/normalize-path@2.1.1:
resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
engines: {node: '>=0.10.0'}
@@ -21306,6 +21534,29 @@ packages:
dependencies:
path-key: 4.0.0
+ /npmlog@5.0.1:
+ resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
+ requiresBuild: true
+ dependencies:
+ are-we-there-yet: 2.0.0
+ console-control-strings: 1.1.0
+ gauge: 3.0.2
+ set-blocking: 2.0.0
+ dev: false
+ optional: true
+
+ /npmlog@7.0.1:
+ resolution: {integrity: sha512-uJ0YFk/mCQpLBt+bxN88AKd+gyqZvZDbtiNxk6Waqcj2aPRyfVx8ITawkyQynxUagInjdYT1+qj4NfA5KJJUxg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ are-we-there-yet: 4.0.2
+ console-control-strings: 1.1.0
+ gauge: 5.0.2
+ set-blocking: 2.0.0
+ dev: false
+ optional: true
+
/nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
@@ -21348,6 +21599,7 @@ packages:
/object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ dev: true
/object-is@1.1.6:
resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
@@ -21517,16 +21769,16 @@ packages:
word-wrap: 1.2.5
dev: true
- /optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ /optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
dev: true
/ora@4.0.2:
@@ -21647,7 +21899,6 @@ packages:
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
- dev: true
/p-try@1.0.0:
resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
@@ -21665,7 +21916,7 @@ packages:
got: 12.6.1
registry-auth-token: 5.0.2
registry-url: 6.0.1
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/pako@1.0.11:
@@ -21813,12 +22064,12 @@ packages:
dependencies:
path-root-regex: 0.1.2
- /path-scurry@1.10.2:
- resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
- engines: {node: '>=16 || 14 >=14.17'}
+ /path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
dependencies:
- lru-cache: 10.2.1
- minipass: 7.0.4
+ lru-cache: 10.2.2
+ minipass: 7.1.1
/path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -21860,8 +22111,8 @@ packages:
resolution: {integrity: sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==}
dev: true
- /picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ /picocolors@1.0.1:
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
/picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -21924,11 +22175,11 @@ packages:
find-up: 4.1.0
dev: true
- /pkg-types@1.1.0:
- resolution: {integrity: sha512-/RpmvKdxKf8uILTtoOhAgf30wYbP2Qw+L9p3Rvshx1JZVX+XQNZQFjlbmGHEGIm4CkVPlSn+NXmIM8+9oWQaSA==}
+ /pkg-types@1.1.1:
+ resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
dependencies:
confbox: 0.1.7
- mlly: 1.6.1
+ mlly: 1.7.0
pathe: 1.1.2
dev: false
@@ -21969,6 +22220,7 @@ packages:
/possible-typed-array-names@1.0.0:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
+ dev: true
/postcss-calc@8.2.4(postcss@8.4.38):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
@@ -22082,7 +22334,7 @@ packages:
dependencies:
lilconfig: 3.1.1
postcss: 8.4.38
- yaml: 2.4.1
+ yaml: 2.4.2
/postcss-loader@5.3.0(postcss@8.4.38)(webpack@5.91.0):
resolution: {integrity: sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==}
@@ -22094,7 +22346,7 @@ packages:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.4.38
- semver: 7.6.0
+ semver: 7.6.2
webpack: 5.91.0
dev: true
@@ -22375,11 +22627,11 @@ packages:
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.0
+ picocolors: 1.0.1
source-map-js: 1.2.0
- /preact@10.20.2:
- resolution: {integrity: sha512-S1d1ernz3KQ+Y2awUxKakpfOg2CEmJmwOP+6igPx6dgr6pgDvenqYviyokWso2rhHvGtTlWWnJDa7RaPbQerTg==}
+ /preact@10.22.0:
+ resolution: {integrity: sha512-RRurnSjJPj4rp5K6XoP45Ui33ncb7e4H7WiOHVpjbkvqvA3U+N8Z6Qbo0AE6leGYBV66n8EhEaFixvIu3SkxFw==}
dev: false
/prebuild-install@7.1.2:
@@ -22439,7 +22691,7 @@ packages:
dependencies:
'@solidity-parser/parser': 0.17.0
prettier: 2.8.8
- semver: 7.6.0
+ semver: 7.6.2
solidity-comments-extractor: 0.0.8
dev: true
@@ -22451,7 +22703,7 @@ packages:
dependencies:
'@solidity-parser/parser': 0.17.0
prettier: 3.2.5
- semver: 7.6.0
+ semver: 7.6.2
solidity-comments-extractor: 0.0.8
dev: true
@@ -22495,9 +22747,23 @@ packages:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.3.0
+ react-is: 18.3.1
dev: true
+ /proc-log@3.0.0:
+ resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /proc-log@4.2.0:
+ resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
dev: true
@@ -22516,6 +22782,16 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
+ /promise-retry@2.0.1:
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
+ requiresBuild: true
+ dependencies:
+ err-code: 2.0.3
+ retry: 0.12.0
+ dev: false
+ optional: true
+
/promise@7.3.1:
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
dependencies:
@@ -22574,7 +22850,7 @@ packages:
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
'@types/long': 4.0.2
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
long: 4.0.0
dev: true
@@ -22681,6 +22957,7 @@ packages:
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.6
+ dev: true
/query-string@6.14.1:
resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
@@ -22798,14 +23075,14 @@ packages:
pure-color: 1.3.0
dev: false
- /react-copy-to-clipboard@5.1.0(react@18.3.0):
+ /react-copy-to-clipboard@5.1.0(react@18.3.1):
resolution: {integrity: sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==}
peerDependencies:
react: ^15.3.0 || 16 || 17 || 18
dependencies:
copy-to-clipboard: 3.3.3
prop-types: 15.8.1
- react: 18.3.0
+ react: 18.3.1
dev: false
/react-dev-utils@12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0):
@@ -22850,14 +23127,14 @@ packages:
- vue-template-compiler
dev: true
- /react-dom@18.3.0(react@18.3.0):
- resolution: {integrity: sha512-zaKdLBftQJnvb7FtDIpZtsAIb2MZU087RM8bRDZU8LVCCFYjPTsDZJNFUWPcVz3HFSN1n/caxi0ca4B/aaVQGQ==}
+ /react-dom@18.3.1(react@18.3.1):
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
- react: ^18.3.0
+ react: ^18.3.1
dependencies:
loose-envify: 1.4.0
- react: 18.3.0
- scheduler: 0.23.1
+ react: 18.3.1
+ scheduler: 0.23.2
/react-error-overlay@6.0.11:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
@@ -22867,7 +23144,7 @@ packages:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
dev: false
- /react-i18next@13.5.0(i18next@23.11.2)(react-dom@18.3.0)(react@18.3.0):
+ /react-i18next@13.5.0(i18next@23.11.4)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==}
peerDependencies:
i18next: '>= 23.2.3'
@@ -22880,11 +23157,11 @@ packages:
react-native:
optional: true
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
html-parse-stringify: 3.0.1
- i18next: 23.11.2
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ i18next: 23.11.4
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
/react-is@16.13.1:
@@ -22894,21 +23171,21 @@ packages:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
dev: true
- /react-is@18.3.0:
- resolution: {integrity: sha512-wRiUsea88TjKDc4FBEn+sLvIDesp6brMbGWnJGjew2waAc9evdhja/2LvePc898HJbHw0L+MTWy7NhpnELAvLQ==}
+ /react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
- /react-json-view@1.21.3(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0):
+ /react-json-view@1.21.3(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
peerDependencies:
react: ^17.0.0 || ^16.3.0 || ^15.5.4
react-dom: ^17.0.0 || ^16.3.0 || ^15.5.4
dependencies:
- flux: 4.0.4(react@18.3.0)
- react: 18.3.0
+ flux: 4.0.4(react@18.3.1)
+ react: 18.3.1
react-base16-styling: 0.6.0
- react-dom: 18.3.0(react@18.3.0)
+ react-dom: 18.3.1(react@18.3.1)
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.5.3(@types/react@18.2.79)(react@18.3.0)
+ react-textarea-autosize: 8.5.3(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- encoding
@@ -22918,7 +23195,7 @@ packages:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-markdown@8.0.7(@types/react@18.2.79)(react@18.3.0):
+ /react-markdown@8.0.7(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==}
peerDependencies:
'@types/react': '>=16'
@@ -22926,14 +23203,14 @@ packages:
dependencies:
'@types/hast': 2.3.10
'@types/prop-types': 15.7.12
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
'@types/unist': 2.0.10
comma-separated-tokens: 2.0.3
hast-util-whitespace: 2.0.1
prop-types: 15.8.1
property-information: 6.5.0
- react: 18.3.0
- react-is: 18.3.0
+ react: 18.3.1
+ react-is: 18.3.1
remark-parse: 10.0.2
remark-rehype: 10.1.0
space-separated-tokens: 2.0.2
@@ -22951,7 +23228,7 @@ packages:
p-defer: 3.0.0
dev: true
- /react-player@2.16.0(react@18.3.0):
+ /react-player@2.16.0(react@18.3.1):
resolution: {integrity: sha512-mAIPHfioD7yxO0GNYVFD1303QFtI3lyyQZLY229UEAp/a10cSW+hPcakg0Keq8uWJxT2OiT/4Gt+Lc9bD6bJmQ==}
peerDependencies:
react: '>=16.6.0'
@@ -22960,16 +23237,16 @@ packages:
load-script: 1.0.0
memoize-one: 5.2.1
prop-types: 15.8.1
- react: 18.3.0
+ react: 18.3.1
react-fast-compare: 3.2.2
dev: false
- /react-refresh@0.14.1:
- resolution: {integrity: sha512-iZiRCtNGY3QYP3pYOSSBOvQmBpQTcJccr/VcK2blpJrpPTUDjeN51mxm5nsrkCzBwsbGUj+TN9q2oPz5E13FLg==}
+ /react-refresh@0.14.2:
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
dev: true
- /react-remove-scroll-bar@2.3.6(@types/react@18.2.79)(react@18.3.0):
+ /react-remove-scroll-bar@2.3.6(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
engines: {node: '>=10'}
peerDependencies:
@@ -22979,13 +23256,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
- react: 18.3.0
- react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.3.0)
+ '@types/react': 18.3.2
+ react: 18.3.1
+ react-style-singleton: 2.2.1(@types/react@18.3.2)(react@18.3.1)
tslib: 2.6.2
dev: false
- /react-remove-scroll@2.5.5(@types/react@18.2.79)(react@18.3.0):
+ /react-remove-scroll@2.5.5(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -22995,39 +23272,39 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
- react: 18.3.0
- react-remove-scroll-bar: 2.3.6(@types/react@18.2.79)(react@18.3.0)
- react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.3.0)
+ '@types/react': 18.3.2
+ react: 18.3.1
+ react-remove-scroll-bar: 2.3.6(@types/react@18.3.2)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.2)(react@18.3.1)
tslib: 2.6.2
- use-callback-ref: 1.3.2(@types/react@18.2.79)(react@18.3.0)
- use-sidecar: 1.1.2(@types/react@18.2.79)(react@18.3.0)
+ use-callback-ref: 1.3.2(@types/react@18.3.2)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.2)(react@18.3.1)
dev: false
- /react-router-dom@6.23.0(react-dom@18.3.0)(react@18.3.0):
- resolution: {integrity: sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ==}
+ /react-router-dom@6.23.1(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
- '@remix-run/router': 1.16.0
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- react-router: 6.23.0(react@18.3.0)
+ '@remix-run/router': 1.16.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-router: 6.23.1(react@18.3.1)
dev: false
- /react-router@6.23.0(react@18.3.0):
- resolution: {integrity: sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA==}
+ /react-router@6.23.1(react@18.3.1):
+ resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
dependencies:
- '@remix-run/router': 1.16.0
- react: 18.3.0
+ '@remix-run/router': 1.16.1
+ react: 18.3.1
dev: false
- /react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825(react@18.3.0)(webpack@5.91.0):
+ /react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825(react@18.3.1)(webpack@5.91.0):
resolution: {integrity: sha512-JyCjbp6ZvkH/T0EuVPdceYlC8u5WqWDSJr2KxDvc81H2eJ+7zYUN++IcEycnR2F+HmER8QVgxfotnIx352zi+w==}
engines: {node: '>=0.10.0'}
peerDependencies:
@@ -23037,11 +23314,11 @@ packages:
acorn: 6.4.2
loose-envify: 1.4.0
neo-async: 2.6.2
- react: 18.3.0
+ react: 18.3.1
webpack: 5.91.0
dev: true
- /react-style-singleton@2.2.1(@types/react@18.2.79)(react@18.3.0):
+ /react-style-singleton@2.2.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -23051,50 +23328,50 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
get-nonce: 1.0.1
invariant: 2.2.4
- react: 18.3.0
+ react: 18.3.1
tslib: 2.6.2
dev: false
- /react-textarea-autosize@8.5.3(@types/react@18.2.79)(react@18.3.0):
+ /react-textarea-autosize@8.5.3(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
engines: {node: '>=10'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.24.4
- react: 18.3.0
- use-composed-ref: 1.3.0(react@18.3.0)
- use-latest: 1.2.1(@types/react@18.2.79)(react@18.3.0)
+ '@babel/runtime': 7.24.5
+ react: 18.3.1
+ use-composed-ref: 1.3.0(react@18.3.1)
+ use-latest: 1.2.1(@types/react@18.3.2)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
dev: false
- /react-transition-state@1.1.5(react-dom@18.3.0)(react@18.3.0):
+ /react-transition-state@1.1.5(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-ITY2mZqc2dWG2eitJkYNdcSFW8aKeOlkL2A/vowRrLL8GH3J6Re/SpD/BLvQzrVOTqjsP0b5S9N10vgNNzwMUQ==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /react-use-measure@2.1.1(react-dom@18.3.0)(react@18.3.0):
+ /react-use-measure@2.1.1(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-nocZhN26cproIiIduswYpV5y5lQpSQS1y/4KuvUCjSKmw7ZWIS/+g3aFnX3WdBkyuGUtTLif3UTqnLLhbDoQig==}
peerDependencies:
react: '>=16.13'
react-dom: '>=16.13'
dependencies:
debounce: 1.2.1
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /react@18.3.0:
- resolution: {integrity: sha512-RPutkJftSAldDibyrjuku7q11d3oy6wKOyPe5K1HA/HwwrXcEqBdHsLypkC2FFYjP7bPUa6gbzSBhw4sY2JcDg==}
+ /react@18.3.1:
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
@@ -23220,7 +23497,7 @@ packages:
/redux@4.2.1:
resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dev: true
/reflect.getprototypeof@1.0.6:
@@ -23232,7 +23509,7 @@ packages:
es-abstract: 1.23.3
es-errors: 1.3.0
get-intrinsic: 1.2.4
- globalthis: 1.0.3
+ globalthis: 1.0.4
which-builtin-type: 1.1.3
dev: true
@@ -23257,7 +23534,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dev: true
/regexp.prototype.flags@1.5.2:
@@ -23308,7 +23585,7 @@ packages:
jsesc: 0.5.0
dev: true
- /rehackt@0.1.0(@types/react@18.2.79)(react@18.3.0):
+ /rehackt@0.1.0(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==}
requiresBuild: true
peerDependencies:
@@ -23320,8 +23597,8 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.79
- react: 18.3.0
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
optional: true
@@ -23336,7 +23613,7 @@ packages:
/relay-runtime@12.0.0:
resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
fbjs: 3.0.5
invariant: 2.2.4
transitivePeerDependencies:
@@ -23506,7 +23783,6 @@ packages:
/retry@0.12.0:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
engines: {node: '>= 4'}
- dev: true
/retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
@@ -23532,14 +23808,23 @@ packages:
hasBin: true
dependencies:
glob: 7.2.3
- dev: true
/rimraf@5.0.5:
resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==}
engines: {node: '>=14'}
hasBin: true
+ requiresBuild: true
+ dependencies:
+ glob: 10.3.15
+ dev: false
+ optional: true
+
+ /rimraf@5.0.7:
+ resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==}
+ engines: {node: '>=14.18'}
+ hasBin: true
dependencies:
- glob: 10.3.12
+ glob: 10.3.15
dev: false
/ripemd160@2.0.2:
@@ -23563,18 +23848,6 @@ packages:
optionalDependencies:
fsevents: 2.3.3
- /rpc-websockets@7.10.0:
- resolution: {integrity: sha512-cemZ6RiDtYZpPiBzYijdOrkQQzmBCmug0E9SdRH2gIUNT15ql4mwCYWIp0VnSZq6Qrw/JkGUygp4PrK1y9KfwQ==}
- dependencies:
- '@babel/runtime': 7.24.4
- eventemitter3: 4.0.7
- uuid: 8.3.2
- ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- optionalDependencies:
- bufferutil: 4.0.8
- utf-8-validate: 5.0.10
- dev: false
-
/run-async@2.4.1:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
engines: {node: '>=0.12.0'}
@@ -23590,6 +23863,7 @@ packages:
engines: {npm: '>=2.0.0'}
dependencies:
tslib: 1.14.1
+ dev: true
/sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
@@ -23630,7 +23904,6 @@ packages:
/safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- dev: true
/sc-istanbul@0.4.6:
resolution: {integrity: sha512-qJFF/8tW/zJsbyfh/iT/ZM5QNHE3CXxtLJbZsL+CzdJLBsPD7SedJZoUA4d8iAcN2IoMp/Dx80shOOd2x96X/g==}
@@ -23652,8 +23925,8 @@ packages:
wordwrap: 1.0.0
dev: true
- /scheduler@0.23.1:
- resolution: {integrity: sha512-5GKS5JGfiah1O38Vfa9srZE4s3wdHbwjlCrvIookrg2FO9aIwKLOJXuJQFlEfNcVSOXuaL2hzDeY20uVXcUtrw==}
+ /scheduler@0.23.2:
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
dependencies:
loose-envify: 1.4.0
@@ -23689,9 +23962,9 @@ packages:
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.12.0
- ajv-formats: 2.1.1(ajv@8.12.0)
- ajv-keywords: 5.1.0(ajv@8.12.0)
+ ajv: 8.13.0
+ ajv-formats: 2.1.1(ajv@8.13.0)
+ ajv-keywords: 5.1.0(ajv@8.13.0)
dev: true
/scrypt-js@3.0.1:
@@ -23704,7 +23977,7 @@ packages:
dependencies:
elliptic: 6.5.5
node-addon-api: 2.0.2
- node-gyp-build: 4.8.0
+ node-gyp-build: 4.8.1
dev: true
/semver@5.7.2:
@@ -23716,12 +23989,10 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- /semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ /semver@7.6.2:
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
engines: {node: '>=10'}
hasBin: true
- dependencies:
- lru-cache: 6.0.0
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
@@ -23794,10 +24065,10 @@ packages:
- supports-color
dev: true
- /ses@1.4.1:
- resolution: {integrity: sha512-supQWVgHzf+JNHCwQh4Vx/IKL6hBuHo8HnXMTy3zypqZyT9VSzfRVH7MR+EIcXm6oeG5UpAfPlwG0HfQqM3/pQ==}
+ /ses@1.5.0:
+ resolution: {integrity: sha512-mtbONkuHpOZbJn0ueOMpBzIdNual1Ou+Tg1LbStRNsWnRljzg9ZLnoF0PyuzPPQG7kiwv2V2tN3GSJMXHPrQWg==}
dependencies:
- '@endo/env-options': 1.1.3
+ '@endo/env-options': 1.1.4
dev: true
/set-blocking@2.0.0:
@@ -23813,6 +24084,7 @@ packages:
get-intrinsic: 1.2.4
gopd: 1.0.1
has-property-descriptors: 1.0.2
+ dev: true
/set-function-name@2.0.2:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
@@ -23868,9 +24140,9 @@ packages:
detect-libc: 2.0.3
node-addon-api: 6.1.0
prebuild-install: 7.1.2
- semver: 7.6.0
+ semver: 7.6.2
simple-get: 4.0.1
- tar-fs: 3.0.5
+ tar-fs: 3.0.6
tunnel-agent: 0.6.0
dev: true
@@ -23912,10 +24184,10 @@ packages:
es-errors: 1.3.0
get-intrinsic: 1.2.4
object-inspect: 1.13.1
+ dev: true
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- dev: true
/signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
@@ -23969,6 +24241,13 @@ packages:
engines: {node: '>=8.0.0'}
dev: true
+ /smart-buffer@4.2.0:
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+ requiresBuild: true
+ dev: false
+ optional: true
+
/snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
dependencies:
@@ -23990,7 +24269,7 @@ packages:
resolution: {integrity: sha512-Qk3Xj8ekbnzKu3faejo4wk2MzXA029XppiXtTF/PkbTg+fcwaTw1PlDrTrrrU4mKoYC4dvlApOnSeyLCKwek2w==}
engines: {node: '>=10.0.0'}
dependencies:
- '@socket.io/component-emitter': 3.1.1
+ '@socket.io/component-emitter': 3.1.2
debug: 4.3.4(supports-color@5.5.0)
engine.io-client: 6.5.3
socket.io-parser: 4.2.4
@@ -24004,7 +24283,7 @@ packages:
resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==}
engines: {node: '>=10.0.0'}
dependencies:
- '@socket.io/component-emitter': 3.1.1
+ '@socket.io/component-emitter': 3.1.2
debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
@@ -24027,6 +24306,29 @@ packages:
- utf-8-validate
dev: true
+ /socks-proxy-agent@8.0.3:
+ resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==}
+ engines: {node: '>= 14'}
+ requiresBuild: true
+ dependencies:
+ agent-base: 7.1.1
+ debug: 4.3.4(supports-color@5.5.0)
+ socks: 2.8.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+ optional: true
+
+ /socks@2.8.3:
+ resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+ requiresBuild: true
+ dependencies:
+ ip-address: 9.0.5
+ smart-buffer: 4.2.0
+ dev: false
+ optional: true
+
/solc@0.7.3(debug@4.3.4):
resolution: {integrity: sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA==}
engines: {node: '>=8.0.0'}
@@ -24075,7 +24377,7 @@ packages:
latest-version: 7.0.0
lodash: 4.17.21
pluralize: 8.0.0
- semver: 7.6.0
+ semver: 7.6.2
strip-ansi: 6.0.1
table: 6.8.2
text-table: 0.2.0
@@ -24095,7 +24397,7 @@ packages:
resolution: {integrity: sha512-htM7Vn6LhHreR+EglVMd2s+sZhcXAirB1Zlyrv5zBuTxieCvjfnRpd7iZk75m/u6NOlEyQ94C6TWbBn2cY7w8g==}
dev: true
- /solidity-coverage@0.8.12(hardhat@2.22.3):
+ /solidity-coverage@0.8.12(hardhat@2.22.4):
resolution: {integrity: sha512-8cOB1PtjnjFRqOgwFiD8DaUsYJtVJ6+YdXQtSZDrLGf8cdhhh8xzTtGzVTGeBf15kTv0v7lYPJlV/az7zLEPJw==}
hasBin: true
peerDependencies:
@@ -24110,7 +24412,7 @@ packages:
ghost-testrpc: 0.0.2
global-modules: 2.0.0
globby: 10.0.2
- hardhat: 2.22.3(ts-node@10.9.2)(typescript@4.9.5)
+ hardhat: 2.22.4(ts-node@10.9.2)(typescript@4.9.5)
jsonschema: 1.4.1
lodash: 4.17.21
mocha: 10.4.0
@@ -24118,7 +24420,7 @@ packages:
pify: 4.0.1
recursive-readdir: 2.2.3
sc-istanbul: 0.4.6
- semver: 7.6.0
+ semver: 7.6.2
shelljs: 0.8.5
web3-utils: 1.7.0
dev: true
@@ -24129,6 +24431,16 @@ packages:
atomic-sleep: 1.0.0
dev: false
+ /sonic-forest@1.0.3(tslib@2.6.2):
+ resolution: {integrity: sha512-dtwajos6IWMEWXdEbW1IkEkyL2gztCAgDplRIX+OT5aRKnEd5e7r7YCxRgXZdhRP1FBdOBf8axeTPhzDv8T4wQ==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ dependencies:
+ tree-dump: 1.0.1(tslib@2.6.2)
+ tslib: 2.6.2
+ dev: true
+
/sort-object-keys@1.1.3:
resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==}
dev: true
@@ -24143,7 +24455,7 @@ packages:
git-hooks-list: 3.1.0
globby: 13.2.2
is-plain-obj: 4.1.0
- semver: 7.6.0
+ semver: 7.6.2
sort-object-keys: 1.1.3
dev: true
@@ -24239,6 +24551,21 @@ packages:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: true
+ /sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /ssri@10.0.6:
+ resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ minipass: 7.1.1
+ dev: false
+ optional: true
+
/stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
@@ -24287,6 +24614,7 @@ packages:
dependencies:
inherits: 2.0.4
readable-stream: 3.6.2
+ dev: true
/stream-combiner2@1.1.1:
resolution: {integrity: sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==}
@@ -24563,7 +24891,7 @@ packages:
tslib: 2.6.2
dev: false
- /styled-components@5.3.11(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0):
+ /styled-components@5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==}
engines: {node: '>=10'}
peerDependencies:
@@ -24572,23 +24900,23 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.24.3
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.24.4)(styled-components@5.3.11)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.5)(styled-components@5.3.11)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- react-is: 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 18.3.1
shallowequal: 1.1.0
supports-color: 5.5.0
transitivePeerDependencies:
- '@babel/core'
dev: false
- /styled-components@5.3.3(@babel/core@7.24.4)(react-dom@18.3.0)(react-is@18.3.0)(react@18.3.0):
+ /styled-components@5.3.3(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw==}
engines: {node: '>=10'}
peerDependencies:
@@ -24597,16 +24925,16 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.24.3
- '@babel/traverse': 7.24.1(supports-color@5.5.0)
+ '@babel/traverse': 7.24.5(supports-color@5.5.0)
'@emotion/is-prop-valid': 0.8.8
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.24.4)(styled-components@5.3.3)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.5)(styled-components@5.3.3)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
- react: 18.3.0
- react-dom: 18.3.0(react@18.3.0)
- react-is: 18.3.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 18.3.1
shallowequal: 1.1.0
supports-color: 5.5.0
transitivePeerDependencies:
@@ -24640,7 +24968,7 @@ packages:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.12
+ glob: 10.3.15
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -24650,10 +24978,6 @@ packages:
resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==}
dev: true
- /superstruct@0.14.2:
- resolution: {integrity: sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==}
- dev: false
-
/superstruct@1.0.4:
resolution: {integrity: sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==}
engines: {node: '>=14.0.0'}
@@ -24710,7 +25034,7 @@ packages:
css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
- picocolors: 1.0.0
+ picocolors: 1.0.1
stable: 0.1.8
dev: true
@@ -24730,14 +25054,14 @@ packages:
webpack: 5.91.0(@swc/core@1.3.78)
dev: true
- /swr@2.2.5(react@18.3.0):
+ /swr@2.2.5(react@18.3.1):
resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==}
peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0
dependencies:
client-only: 0.0.1
- react: 18.3.0
- use-sync-external-store: 1.2.1(react@18.3.0)
+ react: 18.3.1
+ use-sync-external-store: 1.2.2(react@18.3.1)
dev: false
/symbol-observable@4.0.0:
@@ -24802,7 +25126,7 @@ packages:
resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
engines: {node: '>=10.0.0'}
dependencies:
- ajv: 8.12.0
+ ajv: 8.13.0
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -24812,7 +25136,7 @@ packages:
/tailwind-merge@2.3.0:
resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==}
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dev: false
/tailwindcss-animate@1.0.7(tailwindcss@3.4.3):
@@ -24841,7 +25165,7 @@ packages:
micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.0
+ picocolors: 1.0.1
postcss: 8.4.38
postcss-import: 15.1.0(postcss@8.4.38)
postcss-js: 4.0.1(postcss@8.4.38)
@@ -24881,8 +25205,8 @@ packages:
tar-stream: 2.2.0
dev: true
- /tar-fs@3.0.5:
- resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
+ /tar-fs@3.0.6:
+ resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==}
dependencies:
pump: 3.0.0
tar-stream: 3.1.7
@@ -24933,7 +25257,6 @@ packages:
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
- dev: true
/terser-webpack-plugin@5.3.10(@swc/core@1.3.78)(webpack@5.91.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
@@ -24956,7 +25279,7 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.30.4
+ terser: 5.31.0
webpack: 5.91.0(@swc/core@1.3.78)
dev: true
@@ -24980,12 +25303,12 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.30.4
+ terser: 5.31.0
webpack: 5.91.0
dev: true
- /terser@5.30.4:
- resolution: {integrity: sha512-xRdd0v64a8mFK9bnsKVdoNP9GQIKUAaJPTaqEQDL4w/J8WaW4sWXXoMZ+6SimPkfT5bElreXf8m9HnmPc3E1BQ==}
+ /terser@5.31.0:
+ resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -25004,10 +25327,6 @@ packages:
minimatch: 3.1.2
dev: true
- /text-encoding-utf-8@1.0.2:
- resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==}
- dev: false
-
/text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
@@ -25040,6 +25359,15 @@ packages:
dependencies:
any-promise: 1.3.0
+ /thingies@1.21.0(tslib@2.6.2):
+ resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
+ engines: {node: '>=10.18'}
+ peerDependencies:
+ tslib: ^2
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/thread-stream@0.15.2:
resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==}
dependencies:
@@ -25061,6 +25389,7 @@ packages:
/through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ dev: true
/timeout-abort-controller@2.0.0:
resolution: {integrity: sha512-2FAPXfzTPYEgw27bQGTHc0SzrbmnU2eso4qo172zMLZzaGqeu09PFa5B2FCUHM1tflgRqPgn5KQgp6+Vex4uNA==}
@@ -25157,6 +25486,15 @@ packages:
/tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ /tree-dump@1.0.1(tslib@2.6.2):
+ resolution: {integrity: sha512-WCkcRBVPSlHHq1dc/px9iOfqklvzCbdRwvlNfxGZsrHqf6aZttfPrd7DJTt6oR10dwUfpFFQeVTkPbBIZxX/YA==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
dev: false
@@ -25208,7 +25546,7 @@ packages:
dev: false
optional: true
- /ts-jest@29.1.2(@babel/core@7.24.4)(babel-jest@29.7.0)(jest@29.7.0)(typescript@4.9.5):
+ /ts-jest@29.1.2(@babel/core@7.24.5)(babel-jest@29.7.0)(jest@29.7.0)(typescript@4.9.5):
resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==}
engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
@@ -25229,21 +25567,21 @@ packages:
esbuild:
optional: true
dependencies:
- '@babel/core': 7.24.4
- babel-jest: 29.7.0(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ babel-jest: 29.7.0(@babel/core@7.24.5)
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.6.0
+ semver: 7.6.2
typescript: 4.9.5
yargs-parser: 21.1.1
dev: true
- /ts-jest@29.1.2(@babel/core@7.24.4)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.4.5):
+ /ts-jest@29.1.2(@babel/core@7.24.5)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.4.5):
resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==}
engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
@@ -25264,21 +25602,21 @@ packages:
esbuild:
optional: true
dependencies:
- '@babel/core': 7.24.4
- babel-jest: 29.7.0(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ babel-jest: 29.7.0(@babel/core@7.24.5)
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2)
+ jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2)
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.6.0
+ semver: 7.6.2
typescript: 5.4.5
yargs-parser: 21.1.1
dev: true
- /ts-node@10.9.2(@types/node@18.19.31)(typescript@4.9.5):
+ /ts-node@10.9.2(@types/node@18.19.33)(typescript@4.9.5):
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -25297,7 +25635,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 18.19.31
+ '@types/node': 18.19.33
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3
@@ -25309,7 +25647,7 @@ packages:
yn: 3.1.1
dev: true
- /ts-node@10.9.2(@types/node@20.12.7)(typescript@4.9.5):
+ /ts-node@10.9.2(@types/node@20.12.12)(typescript@4.9.5):
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -25328,7 +25666,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3
@@ -25340,7 +25678,7 @@ packages:
yn: 3.1.1
dev: true
- /ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5):
+ /ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5):
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -25359,7 +25697,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3
@@ -25683,8 +26021,8 @@ packages:
'@fastify/busboy': 2.1.1
dev: true
- /undici@6.14.1:
- resolution: {integrity: sha512-mAel3i4BsYhkeVPXeIPXVGPJKeBzqCieZYoFsbWfUzd68JmHByhc1Plit5WlylxXFaGpgkZB8mExlxnt+Q1p7A==}
+ /undici@6.16.1:
+ resolution: {integrity: sha512-NeNiTT7ixpeiL1qOIU/xTVpHpVP0svmI6PwoCKaMGaI5AsHOaRdwqU/f7Fi9eyU4u03nd5U/BC8wmRMnS9nqoA==}
engines: {node: '>=18.17'}
dev: true
@@ -25736,6 +26074,24 @@ packages:
vfile: 5.3.7
dev: false
+ /unique-filename@3.0.0:
+ resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ unique-slug: 4.0.0
+ dev: false
+ optional: true
+
+ /unique-slug@4.0.0:
+ resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ requiresBuild: true
+ dependencies:
+ imurmurhash: 0.1.4
+ dev: false
+ optional: true
+
/unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
@@ -25851,7 +26207,7 @@ packages:
h3: 1.11.1
idb-keyval: 6.2.1
listhen: 1.7.2
- lru-cache: 10.2.1
+ lru-cache: 10.2.2
mri: 1.2.0
node-fetch-native: 1.6.4
ofetch: 1.3.4
@@ -25869,15 +26225,15 @@ packages:
pathe: 1.1.2
dev: false
- /update-browserslist-db@1.0.13(browserslist@4.23.0):
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ /update-browserslist-db@1.0.16(browserslist@4.23.0):
+ resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
browserslist: 4.23.0
escalade: 3.1.2
- picocolors: 1.0.0
+ picocolors: 1.0.1
/upper-case-first@2.0.2:
resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
@@ -25930,7 +26286,7 @@ packages:
resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
dev: true
- /urql@3.0.4(graphql@16.8.1)(react@18.3.0):
+ /urql@3.0.4(graphql@16.8.1)(react@18.3.1):
resolution: {integrity: sha512-okmQKQ9pF4t8O8iCC5gH9acqfFji5lkhW3nLBjx8WKDd2zZG7PXoUpUK19VQEMK87L6VFBOO/XZ52MMKFEI0AA==}
peerDependencies:
graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
@@ -25938,11 +26294,11 @@ packages:
dependencies:
'@urql/core': 3.2.2(graphql@16.8.1)
graphql: 16.8.1
- react: 18.3.0
+ react: 18.3.1
wonka: 6.3.4
dev: false
- /use-callback-ref@1.3.2(@types/react@18.2.79)(react@18.3.0):
+ /use-callback-ref@1.3.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
engines: {node: '>=10'}
peerDependencies:
@@ -25952,20 +26308,20 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
- react: 18.3.0
+ '@types/react': 18.3.2
+ react: 18.3.1
tslib: 2.6.2
dev: false
- /use-composed-ref@1.3.0(react@18.3.0):
+ /use-composed-ref@1.3.0(react@18.3.1):
resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- react: 18.3.0
+ react: 18.3.1
dev: false
- /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.79)(react@18.3.0):
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -25974,11 +26330,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
- react: 18.3.0
+ '@types/react': 18.3.2
+ react: 18.3.1
dev: false
- /use-latest@1.2.1(@types/react@18.2.79)(react@18.3.0):
+ /use-latest@1.2.1(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -25987,12 +26343,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
- react: 18.3.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.79)(react@18.3.0)
+ '@types/react': 18.3.2
+ react: 18.3.1
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.2)(react@18.3.1)
dev: false
- /use-sidecar@1.1.2(@types/react@18.2.79)(react@18.3.0):
+ /use-sidecar@1.1.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -26002,44 +26358,36 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
detect-node-es: 1.1.0
- react: 18.3.0
+ react: 18.3.1
tslib: 2.6.2
dev: false
- /use-sync-external-store@1.2.0(react@18.3.0):
+ /use-sync-external-store@1.2.0(react@18.3.1):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- react: 18.3.0
+ react: 18.3.1
dev: false
- /use-sync-external-store@1.2.1(react@18.3.0):
- resolution: {integrity: sha512-6MCBDr76UJmRpbF8pzP27uIoTocf3tITaMJ52mccgAhMJycuh5A/RL6mDZCTwTisj0Qfeq69FtjMCUX27U78oA==}
+ /use-sync-external-store@1.2.2(react@18.3.1):
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- react: 18.3.0
+ react: 18.3.1
dev: false
- /usehooks-ts@2.16.0(react@18.3.0):
+ /usehooks-ts@2.16.0(react@18.3.1):
resolution: {integrity: sha512-bez95WqYujxp6hFdM/CpRDiVPirZPxlMzOH2QB8yopoKQMXpscyZoxOjpEdaxvV+CAWUDSM62cWnqHE0E/MZ7w==}
engines: {node: '>=16.15.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18
dependencies:
lodash.debounce: 4.0.8
- react: 18.3.0
- dev: false
-
- /utf-8-validate@5.0.10:
- resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
- engines: {node: '>=6.14.2'}
- requiresBuild: true
- dependencies:
- node-gyp-build: 4.8.0
+ react: 18.3.1
dev: false
/utf8@3.0.0:
@@ -26063,6 +26411,7 @@ packages:
is-generator-function: 1.0.10
is-typed-array: 1.1.13
which-typed-array: 1.1.15
+ dev: true
/utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
@@ -26081,6 +26430,7 @@ packages:
/uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
+ dev: true
/uuid@9.0.1:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
@@ -26117,14 +26467,12 @@ packages:
resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==}
dev: true
- /validate-npm-package-name@5.0.0:
- resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
+ /validate-npm-package-name@5.0.1:
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dependencies:
- builtins: 5.1.0
dev: true
- /valtio@1.11.2(@types/react@18.2.79)(react@18.3.0):
+ /valtio@1.11.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==}
engines: {node: '>=12.20.0'}
peerDependencies:
@@ -26136,10 +26484,10 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.2
proxy-compare: 2.5.1
- react: 18.3.0
- use-sync-external-store: 1.2.0(react@18.3.0)
+ react: 18.3.1
+ use-sync-external-store: 1.2.0(react@18.3.1)
dev: false
/value-or-promise@1.0.12:
@@ -26224,8 +26572,31 @@ packages:
- zod
dev: false
- /viem@2.9.26(typescript@5.4.5):
- resolution: {integrity: sha512-WWYsZfxDsvVsbQF9v3i0M7A2TYTtQl+pwiF5UP8/5dr15XEMGB0MJDhH3esU7jJnBd/JMjkJH/DQRAKuqYS23Q==}
+ /viem@2.10.8(typescript@5.2.2):
+ resolution: {integrity: sha512-ttCXlDmjjcZ8M/eJezXFzDtHj+RFOjEQ3elmXnCC7suXo/y8CuIM1LrIoyUFk7LKIE5E+bzmWUErS4u/MQBtpQ==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@adraffy/ens-normalize': 1.10.0
+ '@noble/curves': 1.2.0
+ '@noble/hashes': 1.3.2
+ '@scure/bip32': 1.3.2
+ '@scure/bip39': 1.2.1
+ abitype: 1.0.0(typescript@5.2.2)
+ isows: 1.0.4(ws@8.13.0)
+ typescript: 5.2.2
+ ws: 8.13.0
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+ dev: false
+
+ /viem@2.10.8(typescript@5.4.5):
+ resolution: {integrity: sha512-ttCXlDmjjcZ8M/eJezXFzDtHj+RFOjEQ3elmXnCC7suXo/y8CuIM1LrIoyUFk7LKIE5E+bzmWUErS4u/MQBtpQ==}
peerDependencies:
typescript: '>=5.0.4'
peerDependenciesMeta:
@@ -26238,7 +26609,7 @@ packages:
'@scure/bip32': 1.3.2
'@scure/bip39': 1.2.1
abitype: 1.0.0(typescript@5.4.5)
- isows: 1.0.3(ws@8.13.0)
+ isows: 1.0.4(ws@8.13.0)
typescript: 5.4.5
ws: 8.13.0
transitivePeerDependencies:
@@ -26252,7 +26623,7 @@ packages:
peerDependencies:
vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
dependencies:
- vite: 4.5.3(@types/node@20.12.7)
+ vite: 4.5.3(@types/node@20.12.12)
dev: true
/vite-plugin-svgr@4.2.0(typescript@5.2.2)(vite@4.5.3):
@@ -26263,7 +26634,7 @@ packages:
'@rollup/pluginutils': 5.1.0
'@svgr/core': 8.1.0(typescript@5.2.2)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0)
- vite: 4.5.3(@types/node@20.12.7)
+ vite: 4.5.3(@types/node@20.12.12)
transitivePeerDependencies:
- rollup
- supports-color
@@ -26281,13 +26652,13 @@ packages:
debug: 4.3.4(supports-color@5.5.0)
globrex: 0.1.2
tsconfck: 3.0.3(typescript@5.2.2)
- vite: 4.5.3(@types/node@20.12.7)
+ vite: 4.5.3(@types/node@20.12.12)
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /vite@4.5.3(@types/node@20.12.7):
+ /vite@4.5.3(@types/node@20.12.12):
resolution: {integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -26315,7 +26686,7 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.12
esbuild: 0.18.20
postcss: 8.4.38
rollup: 3.29.4
@@ -26331,8 +26702,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /vue@3.4.25(typescript@5.2.2):
- resolution: {integrity: sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==}
+ /vue@3.4.27(typescript@5.2.2):
+ resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==}
requiresBuild: true
peerDependencies:
typescript: '*'
@@ -26340,11 +26711,11 @@ packages:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.25
- '@vue/compiler-sfc': 3.4.25
- '@vue/runtime-dom': 3.4.25
- '@vue/server-renderer': 3.4.25(vue@3.4.25)
- '@vue/shared': 3.4.25
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-sfc': 3.4.27
+ '@vue/runtime-dom': 3.4.27
+ '@vue/server-renderer': 3.4.27(vue@3.4.27)
+ '@vue/shared': 3.4.27
typescript: 5.2.2
dev: false
@@ -26353,7 +26724,7 @@ packages:
hasBin: true
dev: true
- /wagmi@1.4.13(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4):
+ /wagmi@1.4.13(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4):
resolution: {integrity: sha512-AScVYFjqNt1wMgL99Bob7MLdhoTZ3XKiOZL5HVBdy4W1sh7QodA3gQ8IsmTuUrQ7oQaTxjiXEhwg7sWNrPBvJA==}
peerDependencies:
react: '>=17.0.0'
@@ -26364,13 +26735,13 @@ packages:
optional: true
dependencies:
'@tanstack/query-sync-storage-persister': 4.36.1
- '@tanstack/react-query': 4.36.1(react-dom@18.3.0)(react@18.3.0)
+ '@tanstack/react-query': 4.36.1(react-dom@18.3.1)(react@18.3.1)
'@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1)
- '@wagmi/core': 1.4.13(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.21.4)
+ '@wagmi/core': 1.4.13(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.21.4)
abitype: 0.8.7(typescript@5.2.2)
- react: 18.3.0
+ react: 18.3.1
typescript: 5.2.2
- use-sync-external-store: 1.2.1(react@18.3.0)
+ use-sync-external-store: 1.2.2(react@18.3.1)
viem: 1.21.4(typescript@5.2.2)
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -26398,7 +26769,7 @@ packages:
- zod
dev: false
- /wagmi@1.4.6(@types/react@18.2.79)(react-dom@18.3.0)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9):
+ /wagmi@1.4.6(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9):
resolution: {integrity: sha512-A5Kryru0QT8E+dpkw83uDbfuGgyR1GdGzay2TALI7sf2kqVair8N0DuCj7ohrCStLRY1oAibXWGolRrmce4psg==}
peerDependencies:
react: '>=17.0.0'
@@ -26409,13 +26780,13 @@ packages:
optional: true
dependencies:
'@tanstack/query-sync-storage-persister': 4.36.1
- '@tanstack/react-query': 4.36.1(react-dom@18.3.0)(react@18.3.0)
+ '@tanstack/react-query': 4.36.1(react-dom@18.3.1)(react@18.3.1)
'@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1)
- '@wagmi/core': 1.4.6(@types/react@18.2.79)(react@18.3.0)(typescript@5.2.2)(viem@1.18.9)
+ '@wagmi/core': 1.4.6(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9)
abitype: 0.8.7(typescript@5.2.2)
- react: 18.3.0
+ react: 18.3.1
typescript: 5.2.2
- use-sync-external-store: 1.2.1(react@18.3.0)
+ use-sync-external-store: 1.2.2(react@18.3.1)
viem: 1.18.9(typescript@5.2.2)
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -26523,7 +26894,7 @@ packages:
optional: true
dependencies:
colorette: 2.0.20
- memfs: 4.8.2
+ memfs: 4.9.2
mime-types: 2.1.35
on-finished: 2.4.1
range-parser: 1.2.1
@@ -26579,8 +26950,8 @@ packages:
acorn-import-assertions: 1.9.0(acorn@8.11.3)
browserslist: 4.23.0
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.5.0
+ enhanced-resolve: 5.16.1
+ es-module-lexer: 1.5.2
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -26619,8 +26990,8 @@ packages:
acorn-import-assertions: 1.9.0(acorn@8.11.3)
browserslist: 4.23.0
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.5.0
+ enhanced-resolve: 5.16.1
+ es-module-lexer: 1.5.2
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -26696,6 +27067,7 @@ packages:
for-each: 0.3.3
gopd: 1.0.1
has-tostringtag: 1.0.2
+ dev: true
/which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
@@ -26711,6 +27083,24 @@ packages:
dependencies:
isexe: 2.0.0
+ /which@4.0.0:
+ resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
+ engines: {node: ^16.13.0 || >=18.0.0}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ isexe: 3.1.1
+ dev: false
+ optional: true
+
+ /wide-align@1.1.5:
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
+ requiresBuild: true
+ dependencies:
+ string-width: 4.2.3
+ dev: false
+ optional: true
+
/widest-line@3.1.0:
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
engines: {node: '>=8'}
@@ -26841,8 +27231,8 @@ packages:
optional: true
dev: false
- /ws@8.16.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ /ws@8.17.0:
+ resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -26852,9 +27242,6 @@ packages:
optional: true
utf-8-validate:
optional: true
- dependencies:
- bufferutil: 4.0.8
- utf-8-validate: 5.0.10
dev: false
/ws@8.5.0:
@@ -26915,15 +27302,15 @@ packages:
dependencies:
javascript-stringify: 2.1.0
loader-utils: 2.0.4
- yaml: 2.4.1
+ yaml: 2.4.2
dev: true
/yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- /yaml@2.4.1:
- resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==}
+ /yaml@2.4.2:
+ resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
engines: {node: '>= 14'}
hasBin: true
@@ -27039,7 +27426,7 @@ packages:
requiresBuild: true
dev: false
- /zustand@4.5.2(@types/react@18.2.79)(react@18.3.0):
+ /zustand@4.5.2(@types/react@18.3.2)(react@18.3.1):
resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==}
engines: {node: '>=12.7.0'}
peerDependencies:
@@ -27054,17 +27441,17 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.79
- react: 18.3.0
- use-sync-external-store: 1.2.0(react@18.3.0)
+ '@types/react': 18.3.2
+ react: 18.3.1
+ use-sync-external-store: 1.2.0(react@18.3.1)
dev: false
/zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
dev: false
- github.com/uNetworking/uWebSockets.js/d39d4181daf5b670d44cbc1b18f8c28c85fd4142:
- resolution: {tarball: https://codeload.github.com/uNetworking/uWebSockets.js/tar.gz/d39d4181daf5b670d44cbc1b18f8c28c85fd4142}
+ github.com/uNetworking/uWebSockets.js/1977b5039938ad863d42fc4958d48c17e5a1fa06:
+ resolution: {tarball: https://codeload.github.com/uNetworking/uWebSockets.js/tar.gz/1977b5039938ad863d42fc4958d48c17e5a1fa06}
name: uWebSockets.js
- version: 20.30.0
+ version: 20.43.0
dev: false
diff --git a/sdk/package.json b/sdk/package.json
index cc4cd13e..75c52cc0 100644
--- a/sdk/package.json
+++ b/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@verax-attestation-registry/verax-sdk",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Verax Attestation Registry SDK to interact with the subgraph and the contracts",
"keywords": [
"linea-attestation-registry",